完善小程序

This commit is contained in:
wwz
2025-03-18 18:29:34 +08:00
parent fc957feb72
commit 9da31e2faa
19 changed files with 594 additions and 352 deletions

View File

@@ -53,16 +53,11 @@
freeCheck: {
type: Boolean,
default: false
},
orderVIP: {
type: Object,
default: {
}
}
});
});
const orderVIP = ref(uni.cache.get('orderVIP'))
const emits = defineEmits(['customevent', 'groupChange']);
@@ -111,7 +106,7 @@
},
])
const radiovalue = ref(1) // 支付方式
const radiovalue = ref(2) // 支付方式
const ispws = ref(false) // 输入支付密码
@@ -134,7 +129,7 @@
// 去充值
const goRecharge = () => {
uni.pro.navigateTo('user/member/index', {
shopId: props.orderVIP.shopId
shopId: orderVIP.value.shopId
})
}
</script>