Quellcode durchsuchen

bugfix:修复不含早情况下早餐数量显示错误的问题

LiChengjin vor 2 Monaten
Ursprung
Commit
df31839564
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      subpkg/orderDetail/orderDetail.vue

+ 1 - 1
subpkg/orderDetail/orderDetail.vue

@@ -128,7 +128,7 @@
 					.paymentTime).format('YYYY-MM-DD HH:mm:ss')
 				this.orderInfo.status = this.status[this.orderInfo.status]
 				this.orderInfo.paymentStatus = this.paymentStatus[this.orderInfo.paymentStatus]
-				if (this.orderInfo.breakfastNum === 0) {
+				if (this.orderInfo.breakfastNum === null) {
 					this.orderInfo.breakfastNum = '不含早'
 				} else {
 					this.orderInfo.breakfastNum = `含${this.orderInfo.breakfastNum}早`