|
@@ -175,9 +175,9 @@ export default {
|
|
|
},
|
|
|
computed: {
|
|
|
showConvertPromoGIftQty(){
|
|
|
- const a = this.detail.totalPutQty + this.detail.totalWaitPutQty + this.detail.totalCancelQty
|
|
|
- + this.detail.totalConvertPromoGiftsQty
|
|
|
- const b = this.detail.totalQty
|
|
|
+ const a = this.detail ? (this.detail.totalPutQty + this.detail.totalWaitPutQty + this.detail.totalCancelQty
|
|
|
+ + this.detail.totalConvertPromoGiftsQty) : 0
|
|
|
+ const b = this.detail ? this.detail.totalQty : 0
|
|
|
return this.detail && a && a == b
|
|
|
},
|
|
|
columns () {
|