This commit is contained in:
2024-03-14 16:17:30 +08:00
parent bfaf415300
commit 26b5e94d99

View File

@ -28,10 +28,10 @@
<view class="item" @tap='emitdata(item)'> <view class="item" @tap='emitdata(item)'>
<image src="../../static/docHead.png" mode=""></image> <image src="../../static/docHead.png" mode=""></image>
<view class="name"> <view class="name">
{{list.personName}} {{list.personName?list.personName:''}}
</view> </view>
<view class="address"> <view class="address">
{{list.personPhone}} {{list.personPhone?list.personPhone:''}}
</view> </view>
<view class="zixunbtn" v-if="list.userNo==userNo"> <view class="zixunbtn" v-if="list.userNo==userNo">
已选择 已选择
@ -69,7 +69,7 @@
realname: { realname: {
handler(newval, oldval) { handler(newval, oldval) {
console.log(newval, oldval) console.log(newval, oldval)
this.pageNum=1; this.pageNum = 1;
this.getDoctorListinfo(); this.getDoctorListinfo();
} }
} }