增加添加券兑换码页面

This commit is contained in:
2025-11-21 10:48:16 +08:00
parent ce3674be35
commit 0ad4b5daa7
12 changed files with 970 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
<template>
<view>
<chooseCoupon v-model="chooseCouponData.couponId" :show="chooseCouponData.show"></chooseCoupon>
</view>
</template>
<script setup>
import { reactive } from "vue";
import chooseCoupon from "./choose-coupon.vue";
const chooseCouponData=reactive({
couponId:'',
show:true
})
const modelValue = defineModel({
type: Array,
default: () => [],
});
</script>
<style lang="scss" scoped>
</style>