修复:开发测试问题修改

This commit is contained in:
2025-11-28 10:48:41 +08:00
parent 435a23f995
commit 85ca0c7a28
19 changed files with 144 additions and 146 deletions

View File

@@ -62,7 +62,7 @@
<!-- 积分输入 -->
<view v-if="allowPointPay && userInfo?.jf > 0" class="points-input-section">
<text class="points-label">
{{ $t('order.maxPoints', { max: pointsUsableMax }) }}
{{ $t('order.maxPoints').replace('max', pointsUsableMax) }}
</text>
<view class="points-input-box">
<input
@@ -136,16 +136,16 @@ const userStore = useUserStore()
interface Props {
goodsList: IGoods[],
userInfo: object,
allowPointPay: boolean,
orderType: string,
backStep: number // 购买完成后返回几层页面
allowPointPay?: boolean,
orderType?: string,
backStep?: number // 购买完成后返回几层页面
}
const props = withDefaults(defineProps<Props>(), {
goodsList: () => [],
userInfo: () => ({}),
allowPointPay: () => false,
orderType: () => '',
backStep: () => 1
allowPointPay: true,
orderType: 'order',
backStep: 1
})
// 订单备注