|
|
@@ -64,14 +64,14 @@ export default {
|
|
|
|
|
|
|
|
|
// 支付成功了
|
|
|
- if (this.orderDetail.status >= 1) {
|
|
|
+ if (this.orderDetail.status > 1) {
|
|
|
/* openGoodsDetailPopup() */
|
|
|
this.$emit('order-success', this.orderDetail)
|
|
|
this.$refs.orderDetail.setOpen(true)
|
|
|
}
|
|
|
|
|
|
// 支付失败了
|
|
|
- if (this.orderDetail.status == 0) {
|
|
|
+ if (this.orderDetail.status <= 1) {
|
|
|
this.$refs.balanceTip.setOpen(true)
|
|
|
}
|
|
|
}
|