|
@@ -128,8 +128,11 @@
|
|
|
.paymentTime).format('YYYY-MM-DD HH:mm:ss')
|
|
|
this.orderInfo.status = this.status[this.orderInfo.status]
|
|
|
this.orderInfo.paymentStatus = this.paymentStatus[this.orderInfo.paymentStatus]
|
|
|
- this.orderInfo.breakfastNum = this.orderInfo.breakfastNum === undefined ? 0 : this.orderInfo
|
|
|
- .breakfastNum
|
|
|
+ if (this.orderInfo.breakfastNum === 0) {
|
|
|
+ this.orderInfo.breakfastNum = '不含早'
|
|
|
+ } else {
|
|
|
+ this.orderInfo.breakfastNum = `含${this.orderInfo.breakfastNum}早`
|
|
|
+ }
|
|
|
this.orderInfo.paymentMethod = this.paymentMethod[this.orderInfo.platform]
|
|
|
},
|
|
|
async deleteOrder() {
|