|
@@ -66,6 +66,7 @@
|
|
|
<van-button
|
|
|
class="btn"
|
|
|
type="warning"
|
|
|
+ :disabled="booLock"
|
|
|
@click="addOrder">去结算
|
|
|
</van-button>
|
|
|
</div>
|
|
@@ -159,7 +160,8 @@ export default {
|
|
|
couponPopup: false, // 优惠券选择弹窗
|
|
|
couponList: [], // 优惠券列表
|
|
|
curCoupon: {},
|
|
|
- fetchCouponListStatus: false // 获取优惠券列表状态
|
|
|
+ fetchCouponListStatus: false, // 获取优惠券列表状态
|
|
|
+ booLock: false
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -303,7 +305,9 @@ export default {
|
|
|
order_pay_type: this.order_pay_type // 支付方式(1微信2支付宝3现场支付)
|
|
|
}
|
|
|
try {
|
|
|
+ this.booLock = true
|
|
|
const { status, msg, data } = await apiAddOrder(postData)
|
|
|
+ this.booLock = false
|
|
|
if (status) {
|
|
|
this.selectFoods = []
|
|
|
this.placeNum = ''
|
|
@@ -316,7 +320,9 @@ export default {
|
|
|
} else {
|
|
|
Toast(msg)
|
|
|
}
|
|
|
- } catch (err) {}
|
|
|
+ } catch (err) {
|
|
|
+ this.booLock = false
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|