Compare commits

...

3 Commits

Author SHA1 Message Date
woody e6b34e64db Merge branch 'dev' of 47.94.45.65:angelo/web-zk-h5 into test 2025-09-29 14:14:00 +08:00
woody 6de0c3ea57 feat(specialArea): 添加五折专区 2025-09-29 14:13:02 +08:00
woody 44f10ffcb1 fix(pay): 五折专区展示会员信息 2025-09-29 14:12:48 +08:00
1 changed files with 8 additions and 2 deletions

View File

@ -547,8 +547,12 @@
</div> </div>
</div> </div>
</div> </div>
<div v-show="specialArea == REISSUE_AREA.id"> <div
<div class="tit4">{{ '重消会员信息' }}</div> v-show="
specialArea == REISSUE_AREA.id || specialArea == HALF_PRICE_AREA.id
"
>
<div class="tit4">{{ '会员信息' }}</div>
<div class="quan"> <div class="quan">
<div class="kuang_i"> <div class="kuang_i">
<div>{{ '会员编号' }}</div> <div>{{ '会员编号' }}</div>
@ -710,6 +714,7 @@ import {
UPGRADE_AREA, UPGRADE_AREA,
REPURCHASE_AREA, REPURCHASE_AREA,
REISSUE_AREA, REISSUE_AREA,
HALF_PRICE_AREA,
} from '@/util/specialAreaMap' } from '@/util/specialAreaMap'
let payStatus let payStatus
let registerFlag = null let registerFlag = null
@ -765,6 +770,7 @@ export default {
UPGRADE_AREA, UPGRADE_AREA,
REPURCHASE_AREA, REPURCHASE_AREA,
REISSUE_AREA, REISSUE_AREA,
HALF_PRICE_AREA,
quickAmounts: [399, 1995, 3990, 10000, 30000, 50000], // quickAmounts: [399, 1995, 3990, 10000, 30000, 50000], //
isQuickSelected: false, // isQuickSelected: false, //
} }