Prechádzať zdrojové kódy

bugfix:修复早餐数量显示错误的问题

LiChengjin 1 mesiac pred
rodič
commit
a1297701eb
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      subpkg/extend/extend.vue

+ 1 - 1
subpkg/extend/extend.vue

@@ -138,7 +138,7 @@
 			...mapState('m_user', ['userInfo']),
 			...mapState('m_business', ['currentHotel']),
 			breakfastNumText() {
-				return this.checkinInfo.breakfastNum ? `含${this.checkinInfo.breakfastNum}早` : '不含早'
+				return this.order.breakfastNum ? `含${this.order.breakfastNum}早` : '不含早'
 			}
 		},
 		methods: {