This commit is contained in:
shidongli 2023-09-27 16:38:01 +08:00
parent 9bd174617d
commit 5da1b3f906

View File

@ -119,7 +119,7 @@
<image src="../../static/huijiantou.png" mode=""></image> <image src="../../static/huijiantou.png" mode=""></image>
</view> </view>
</view> </view>
<view class="myorder titles"> <view class="myorder titles" @tap="expertOrder">
<view class="title"> <view class="title">
专家咨询订单 专家咨询订单
</view> </view>
@ -307,6 +307,7 @@
}, },
// //
goorder(index, item) { goorder(index, item) {
console.log(index, item)
const value = uni.getStorageSync('openid'); const value = uni.getStorageSync('openid');
const value2 = uni.getStorageSync('patientId'); const value2 = uni.getStorageSync('patientId');
if (value && value2) { if (value && value2) {
@ -378,6 +379,12 @@
this.gologin(); this.gologin();
} }
}, },
//
expertOrder(){
uni.navigateTo({
url:"/pagesB/ExpertlookOrder/ExpertlookOrder"
})
}
} }
} }
</script> </script>