Commit 67339ada authored by 潘永坪's avatar 潘永坪

bug处理

parent 32c54ace
...@@ -334,7 +334,7 @@ ...@@ -334,7 +334,7 @@
<text v-if="mainRefundBtn" @click="mainRefund(orderInfo.id)">申请退票</text> <text v-if="mainRefundBtn" @click="mainRefund(orderInfo.id)">申请退票</text>
<!-- 以子订单为准 --> <!-- 以子订单为准 -->
<text v-if="subRefundBtn" @click="showSubRefund()">申请退票</text> <text v-if="subRefundBtn" @click="showSubRefund()">申请退票</text>
<text>再次预订</text> <text @click="orderAgain()">再次预订</text>
</view> </view>
<!-- 是否重新排号 --> <!-- 是否重新排号 -->
<u-modal <u-modal
...@@ -406,7 +406,7 @@ export default { ...@@ -406,7 +406,7 @@ export default {
countFlag:null,//倒计时时间函数 countFlag:null,//倒计时时间函数
numberFlag:null,////获取排号信息时间函数2 numberFlag:null,////获取排号信息时间函数2
Brightness:'',//屏幕亮度 Brightness:'',//屏幕亮度
openid:'oroHZ5FaUQ_SOOC_uQQP92fJpBRE',// uni.getStorageSync('openid')||'',//openid openid:uni.getStorageSync('openid')||'',//openid
companyId:'',//公司Id companyId:'',//公司Id
orderId:'',//订单Id orderId:'',//订单Id
orderInfo:'',//订单信息 orderInfo:'',//订单信息
...@@ -423,7 +423,7 @@ export default { ...@@ -423,7 +423,7 @@ export default {
} }
}, },
onLoad(option) { onLoad(option) {
this.orderId='z001720159120330b8139324c6c8c2e8'// option.orderId this.orderId= option.orderId
}, },
onShow() { onShow() {
this.getDetail() this.getDetail()
...@@ -968,8 +968,15 @@ export default { ...@@ -968,8 +968,15 @@ export default {
uni.navigateTo({ uni.navigateTo({
url: '/pages/my/order/afterSale/applyAfterSale/applyAfterSale?orderId='+this.refundOrderId url: '/pages/my/order/afterSale/applyAfterSale/applyAfterSale?orderId='+this.refundOrderId
}) })
},
//---再次预订
orderAgain(){
let query = '?merchantId='+this.orderInfo.merchantId+'&productId=' +this.orderInfo.id +'&orderSource=3'
uni.navigateTo({
url: '/pages/scenic/scenicJointOrder/scenicJointOrder' + query
})
} }
}, }
} }
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment