diff --git a/components/birthday-modal.vue b/components/birthday-modal.vue index 0d8d86b..c46ada8 100644 --- a/components/birthday-modal.vue +++ b/components/birthday-modal.vue @@ -55,7 +55,7 @@ - + {{ item.couponInfo.title }} x{{ item.num }} @@ -507,6 +507,7 @@ function close() { outline: none; margin: 0; cursor: pointer; + white-space: nowrap; &:active { background: #f07080; // 点击深色反馈 } diff --git a/pages/user/member/billDetails.vue b/pages/user/member/billDetails.vue index 236656c..83f44b5 100644 --- a/pages/user/member/billDetails.vue +++ b/pages/user/member/billDetails.vue @@ -60,6 +60,9 @@ 消费返现 + + 消费返现扣减 + 霸王餐充值 diff --git a/userPackage/order/detail.vue b/userPackage/order/detail.vue index 74555ed..a73ae05 100644 --- a/userPackage/order/detail.vue +++ b/userPackage/order/detail.vue @@ -716,9 +716,10 @@ const index = item.packageInfo.tieredDiscount.findIndex(v => v.peopleNum==nowStep.value.peopleNum) if (index != -1) { const percent= (index + 1) / item.packageInfo.tieredDiscount.length * 100 - return percent>=100?100:0; + return percent>=100?100:percent; + }else{ + return 0 } - return 0 }) const nowPrice = computed(() => { if (!item.packageInfo) {