This commit is contained in:
zoujiandong 2024-04-24 14:47:51 +08:00
parent 65237dd417
commit 8d97e64205
4 changed files with 25 additions and 12 deletions

View File

@ -565,9 +565,10 @@ copy(event){
goPay:throttle(function(){ goPay:throttle(function(){
let {order_service_id,order_service_no,order_service_type}=this.data.order; let {order_service_id,order_service_no,order_service_type}=this.data.order;
let order_type=order_service_type==1?4:5; let order_type=order_service_type==1?5:4;
let inquiry_mode=order_service_type==1?9:8;
app.method.navigateTo({ app.method.navigateTo({
url: '/patient/pages/payOrder/payOrder?inquiry_no='+ order_service_no +"&order_service_id="+order_service_no+"&order_type="+order_type+"&fromType="+encodeURIComponent('healthyService/pages/healthyOrder/healthyOrder') url: '/patient/pages/payOrder/payOrder?inquiry_no='+ order_service_no +"&order_service_id="+order_service_no+"&order_type="+order_type+"&fromType="+encodeURIComponent('healthyService/pages/healthyOrder/healthyOrder')+"&inquiry_mode="+inquiry_mode
}) })
}), }),
handelDelProduct(){ handelDelProduct(){

View File

@ -548,11 +548,11 @@ Page({
}).catch((error)=>{ }).catch((error)=>{
this.setData({ // this.setData({
showdialog:true, // showdialog:true,
messageTitle:error.message, // messageTitle:error.message,
cancelBtn:true // cancelBtn:true
}) // })
}) })
}, },
inputChange(e) { inputChange(e) {

View File

@ -206,11 +206,15 @@ Page({
}, },
handleThrottle:throttle(function() { handleThrottle:throttle(function() {
console.log(this.data.isLock)
if(!this.data.isLock){ if(!this.data.isLock){
console.log(11111)
this.goPayPlatform();
console.log(222222)
this.setData({ this.setData({
isLock:true isLock:true
}); });
this.goPayPlatform();
} }
}), }),
@ -414,10 +418,15 @@ Page({
wx.redirectTo({ wx.redirectTo({
url: '/patient/pages/medinceOrderDetail/medinceOrderDetail?order_product_id='+data.order_id+ "&fromType=" +encodeURIComponent("patient/pages/medinceOrder/medinceOrder"), url: '/patient/pages/medinceOrderDetail/medinceOrderDetail?order_product_id='+data.order_id+ "&fromType=" +encodeURIComponent("patient/pages/medinceOrder/medinceOrder"),
}) })
}else{ }else if(order_type==3){
wx.redirectTo({ wx.redirectTo({
url: '/sugarCheck/pages/checkOrderDetail/checkOrderDetail?order_detection_id='+data.order_no+ "&fromType=" +encodeURIComponent("sugarCheck/checkOrder/checkOrder"), url: '/sugarCheck/pages/checkOrderDetail/checkOrderDetail?order_detection_id='+data.order_no+ "&fromType=" +encodeURIComponent("sugarCheck/checkOrder/checkOrder"),
}) })
}else if(order_type==4 || order_type==5){
wx.redirectTo({
url:'/healthyService/pages/healthyOrderDetail/healthyOrderDetail?order_service_id='+data.order_no+ "&fromType=" +encodeURIComponent("healthyService/pages/healthyOrder/healthyOrder"),
})
} }
}) })
@ -441,7 +450,7 @@ Page({
success(res) { success(res) {
let item = res.subscriptionsSetting.itemSettings; let item = res.subscriptionsSetting.itemSettings;
//console.log(res.subscriptionsSetting) //console.log(res.subscriptionsSetting)
if (order_type == 1) { //问诊异常提醒 长期订阅 if (order_type == 1 || order_type == 4 || order_type == 5) { //问诊异常提醒 长期订阅
let tmplIds_longtime = ['UOMww1S30Oq7rErJrqO8wN6lNEVKRo2fgcXnb0tBwHI', '9v6dZhjg09CttLd3W9nEUV_-eshNc4BYYNy59jglvZE']; //问诊提醒长期订阅 let tmplIds_longtime = ['UOMww1S30Oq7rErJrqO8wN6lNEVKRo2fgcXnb0tBwHI', '9v6dZhjg09CttLd3W9nEUV_-eshNc4BYYNy59jglvZE']; //问诊提醒长期订阅
if (!item || !item['UOMww1S30Oq7rErJrqO8wN6lNEVKRo2fgcXnb0tBwHI'] ||(item['UOMww1S30Oq7rErJrqO8wN6lNEVKRo2fgcXnb0tBwHI'] != "accept") && (item['9v6dZhjg09CttLd3W9nEUV_-eshNc4BYYNy59jglvZE'] != "accept") || !item['9v6dZhjg09CttLd3W9nEUV_-eshNc4BYYNy59jglvZE']) { if (!item || !item['UOMww1S30Oq7rErJrqO8wN6lNEVKRo2fgcXnb0tBwHI'] ||(item['UOMww1S30Oq7rErJrqO8wN6lNEVKRo2fgcXnb0tBwHI'] != "accept") && (item['9v6dZhjg09CttLd3W9nEUV_-eshNc4BYYNy59jglvZE'] != "accept") || !item['9v6dZhjg09CttLd3W9nEUV_-eshNc4BYYNy59jglvZE']) {
THIS.subscription(tmplIds_longtime,callback) THIS.subscription(tmplIds_longtime,callback)
@ -689,7 +698,7 @@ Page({
}) })
} }
console.log(options.inquiry_mode) console.log(options.inquiry_mode,options.order_type)
}, },
/** /**
* 生命周期函数--监听页面初次渲染完成 * 生命周期函数--监听页面初次渲染完成
@ -712,7 +721,9 @@ Page({
* 生命周期函数--监听页面隐藏 * 生命周期函数--监听页面隐藏
*/ */
onHide() { onHide() {
this.setData({
isLock:false
});
}, },
/** /**

View File

@ -27,6 +27,7 @@
<view class="name" wx:elif="{{order_type==4 && inquiry_mode==9 }}">随访包服务</view> <view class="name" wx:elif="{{order_type==4 && inquiry_mode==9 }}">随访包服务</view>
<view class="name" wx:elif="{{order_type==5 && inquiry_mode==8 }}">健康包服务</view> <view class="name" wx:elif="{{order_type==5 && inquiry_mode==8 }}">健康包服务</view>
<view class="desc">¥{{amount_total}}</view> <view class="desc">¥{{amount_total}}</view>
</view> </view>
<view class="row" wx:if="{{logistics_fee>0}}"> <view class="row" wx:if="{{logistics_fee>0}}">
<view class="name">邮费</view> <view class="name">邮费</view>