feat: 更新内容
parent
7c4cedaeff
commit
ee5042a830
|
|
@ -31,7 +31,7 @@
|
|||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { computed, ref, watch } from 'vue'
|
||||
import { computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
modelValue: {
|
||||
|
|
|
|||
|
|
@ -1,17 +1,22 @@
|
|||
<template>
|
||||
<view class="bg-white px-[30rpx] pb-safe pt-[14rpx] grid grid-cols-2 gap-[24rpx]">
|
||||
<view class="h-[88rpx]">
|
||||
<image
|
||||
src="https://api-static-zhiy.oss-cn-shanghai.aliyuncs.com/images/ad-banner/dh.png"
|
||||
mode="scaleToFill"
|
||||
class="h-[88rpx]"
|
||||
@click="handlePhone"
|
||||
/>
|
||||
</view>
|
||||
|
||||
<view class="h-[88rpx]">
|
||||
<image
|
||||
src="https://api-static-zhiy.oss-cn-shanghai.aliyuncs.com/images/ad-banner/wx.png"
|
||||
mode="scaleToFill"
|
||||
class="h-[88rpx]"
|
||||
@click="handleFriend"
|
||||
/>
|
||||
</view>
|
||||
|
||||
<MessageBox v-model:show="show" title="好友添加">
|
||||
<template>
|
||||
|
|
|
|||
|
|
@ -9,11 +9,13 @@
|
|||
<template>
|
||||
<view class="flex flex-col h-screen">
|
||||
<Tabs v-model:modelValue="currentIndex" :tabs="tabs"></Tabs>
|
||||
<swiper :current="currentIndex" class="flex-1" @change="handleSwiperChange">
|
||||
<view class="flex-1">
|
||||
<swiper :current="currentIndex" @change="handleSwiperChange">
|
||||
<swiper-item v-for="(item, index) in tabs" :key="index">
|
||||
<image :src="item.image" mode="scaleToFill" class="w-full h-full" />
|
||||
</swiper-item>
|
||||
</swiper>
|
||||
</view>
|
||||
<ShareButtonGroup
|
||||
phone-number="18516500555"
|
||||
friend-image="https://api-static-zhiy.oss-cn-shanghai.aliyuncs.com/images/ad-banner/tianjiawx-liuxue.jpg"
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
@query="queryList"
|
||||
:auto-show-system-loading="true"
|
||||
:safe-area-inset-bottom="true"
|
||||
:pagingStyle="{ backgroundColor: 'white' }"
|
||||
>
|
||||
<template #top>
|
||||
<drop-menu ref="dropMenuRef">
|
||||
|
|
@ -53,7 +54,6 @@
|
|||
</view>
|
||||
</drop-menu-item>
|
||||
</drop-menu>
|
||||
|
||||
<view class="px-32rpx">
|
||||
<view class="flex items-center justify-between input-wrapper-class">
|
||||
<input
|
||||
|
|
@ -68,7 +68,7 @@
|
|||
</view>
|
||||
<view class="bg-[#F8F8F8] h-[16rpx] mt-[40rpx]"></view>
|
||||
</template>
|
||||
<view class="px-[32rpx] pt-[32rpx]">
|
||||
<view class="px-[32rpx] pt-[32rpx] bg-white">
|
||||
<view
|
||||
class="bg-[#F7F7F7] flex items-center justify-between text-[20rpx] text-[#333] px-[28rpx] py-[16rpx] sticky top-0"
|
||||
>
|
||||
|
|
@ -86,7 +86,7 @@
|
|||
class="item-wrapper"
|
||||
:id="`zp-id-${item.zp_index}`"
|
||||
:key="item.zp_index"
|
||||
v-for="(item, index) in lineList"
|
||||
v-for="item in lineList"
|
||||
>
|
||||
<view class="flex items-center justify-between text-[20rpx] text-[#333] py-[16rpx]">
|
||||
<view class="flex-1 flex items-center">
|
||||
|
|
@ -154,10 +154,6 @@ const handleConfirm = () => {
|
|||
paging.value.reload()
|
||||
}
|
||||
|
||||
const navigatorBack = () => {
|
||||
uni.navigateBack()
|
||||
}
|
||||
|
||||
const handleNatureChangeCode = (val) => {
|
||||
natureKeyInfo.value = val
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue