|
|
@@ -11,14 +11,15 @@
|
|
|
<i class="iconfont icondaizhifu"></i>
|
|
|
</div>
|
|
|
</block>
|
|
|
- <view class="wait">待确认</view>
|
|
|
+ <view class="wait">待付款</view>
|
|
|
<!-- 待支付 -->
|
|
|
<block>
|
|
|
<div class="price">
|
|
|
<span>¥</span>
|
|
|
<span class="app-size-36 app-bold">{{ actPrice || ''}}</span>
|
|
|
</div>
|
|
|
- <div class="order-num app-color-3">订单号: {{ orderSn || ''}}</div>
|
|
|
+ <div class="order-num app-color-3 order-show">订单号: {{ orderSn || ''}}</div>
|
|
|
+ <div class="order-num app-color-3 order-show">120秒后订单失效</div>
|
|
|
</block>
|
|
|
<block>
|
|
|
<div class="call-one-btn">
|
|
|
@@ -81,7 +82,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
onLoad (options) {
|
|
|
- this.getWeChat(options.id)
|
|
|
+ this.getWeChat(options.ids,options.id)
|
|
|
},
|
|
|
computed: {
|
|
|
...mapGetters(["getLoginInfo", 'getDictionariesInfo']),
|
|
|
@@ -89,9 +90,8 @@ export default {
|
|
|
mounted () {
|
|
|
},
|
|
|
methods: {
|
|
|
- getWeChat (id) {
|
|
|
- // console.log(this.options.id)
|
|
|
- purchaseClearCreateOrder({ id }).then(res => {
|
|
|
+ getWeChat (ids,id) {
|
|
|
+ purchaseClearCreateOrder({ purchaseIds:ids,ghsId:id }).then(res => {
|
|
|
this.orderSn = res.data.orderSn
|
|
|
this.actPrice = res.data.actPrice
|
|
|
}).catch(err => { console.log(err) })
|
|
|
@@ -161,6 +161,9 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .order-show{
|
|
|
+ margin-top:20rpx;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
// 待支付 - 公共
|