Przeglądaj źródła

opt:修改订单详情页面早餐数量显示

LiChengjin 2 miesięcy temu
rodzic
commit
d3b284764b
1 zmienionych plików z 5 dodań i 2 usunięć
  1. 5 2
      subpkg/orderDetail/orderDetail.vue

+ 5 - 2
subpkg/orderDetail/orderDetail.vue

@@ -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() {