|
@@ -1,5 +1,5 @@
|
|
<script setup name="ActivateMembership">
|
|
<script setup name="ActivateMembership">
|
|
-import { ref, onMounted, reactive } from "vue";
|
|
|
|
|
|
+import { ref, onMounted} from "vue";
|
|
import { Close } from "@element-plus/icons-vue";
|
|
import { Close } from "@element-plus/icons-vue";
|
|
import SvgIcon from "~/components/SvgIcon/index.vue";
|
|
import SvgIcon from "~/components/SvgIcon/index.vue";
|
|
import * as vipApi from "~/api/vip";
|
|
import * as vipApi from "~/api/vip";
|
|
@@ -16,10 +16,14 @@ const product = async () => {
|
|
};
|
|
};
|
|
onMounted(product);
|
|
onMounted(product);
|
|
|
|
|
|
|
|
+//列表交换
|
|
|
|
+const conten = ref ()
|
|
|
|
+conten.value = 0
|
|
//详情
|
|
//详情
|
|
const id = ref("");
|
|
const id = ref("");
|
|
const info = ref([{}]);
|
|
const info = ref([{}]);
|
|
-const infa = async (id) => {
|
|
|
|
|
|
+const infa = async (id,idx) => {
|
|
|
|
+ conten.value = idx
|
|
id.value = id;
|
|
id.value = id;
|
|
try {
|
|
try {
|
|
const { data } = await vipApi.info({
|
|
const { data } = await vipApi.info({
|
|
@@ -33,7 +37,7 @@ const index = ref("wechat");
|
|
const pay = (idx) => {
|
|
const pay = (idx) => {
|
|
index.value = idx;
|
|
index.value = idx;
|
|
};
|
|
};
|
|
-const visiblePay = ref(true);
|
|
|
|
|
|
+const visiblePay = ref(false);
|
|
//支付
|
|
//支付
|
|
const topay = async () => {
|
|
const topay = async () => {
|
|
visiblePay.value = true;
|
|
visiblePay.value = true;
|
|
@@ -48,7 +52,7 @@ const topay = async () => {
|
|
|
|
|
|
defineOptions({ name: "ActivateMembership" });
|
|
defineOptions({ name: "ActivateMembership" });
|
|
const prop = defineProps({
|
|
const prop = defineProps({
|
|
- visibleDialog: {
|
|
|
|
|
|
+ visiblePay: {
|
|
default: () => {
|
|
default: () => {
|
|
return false;
|
|
return false;
|
|
},
|
|
},
|
|
@@ -62,7 +66,7 @@ const prop = defineProps({
|
|
<div class="activate-membership-container">
|
|
<div class="activate-membership-container">
|
|
<el-dialog
|
|
<el-dialog
|
|
class="dialog-primary"
|
|
class="dialog-primary"
|
|
- v-model="prop.visibleDialog"
|
|
|
|
|
|
+ v-model="prop.visiblePay"
|
|
:show-close="false"
|
|
:show-close="false"
|
|
width="634px"
|
|
width="634px"
|
|
>
|
|
>
|
|
@@ -108,8 +112,9 @@ const prop = defineProps({
|
|
<div
|
|
<div
|
|
v-for="(item, idx) in vipList"
|
|
v-for="(item, idx) in vipList"
|
|
:key="idx"
|
|
:key="idx"
|
|
- class="item active flex-col flex-aic flex-jc-sb"
|
|
|
|
- @click="infa(item.coupon_id)"
|
|
|
|
|
|
+ class="item flex-col flex-aic flex-jc-sb"
|
|
|
|
+ :class="conten==idx?'active':''"
|
|
|
|
+ @click="infa(item.coupon_id,idx)"
|
|
>
|
|
>
|
|
<div class="item__title">{{ item.name }}</div>
|
|
<div class="item__title">{{ item.name }}</div>
|
|
<div class="item__money">
|
|
<div class="item__money">
|
|
@@ -147,7 +152,7 @@ const prop = defineProps({
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
<!-- Pay dialog -->
|
|
<!-- Pay dialog -->
|
|
- <el-dialog v-model="visiblePay" title="支付宝支付" width="20%">
|
|
|
|
|
|
+ <el-dialog v-model="visiblePay" :title="index=='alipay'?'支付宝支付':'微信支付'" width="20%">
|
|
<div class="paybox flex-col flex-aic">
|
|
<div class="paybox flex-col flex-aic">
|
|
<div class="paybox__title">
|
|
<div class="paybox__title">
|
|
支付金额 <span>¥</span><span>{{ info.price }}</span>
|
|
支付金额 <span>¥</span><span>{{ info.price }}</span>
|
|
@@ -159,7 +164,8 @@ const prop = defineProps({
|
|
<div class="paybox__foot flex-row flex-aic">
|
|
<div class="paybox__foot flex-row flex-aic">
|
|
<SvgIcon name="scan" :size="30" color="rgba(152, 152, 152, 1)" />
|
|
<SvgIcon name="scan" :size="30" color="rgba(152, 152, 152, 1)" />
|
|
<div class="flex-col">
|
|
<div class="flex-col">
|
|
- <span>打开手机支付宝</span>
|
|
|
|
|
|
+ <span v-if="index=='wechat'">打开手机微信</span>
|
|
|
|
+ <span v-if="index=='alipay'">打开手机支付宝</span>
|
|
<span>扫一扫二维码</span>
|
|
<span>扫一扫二维码</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -301,11 +307,12 @@ const prop = defineProps({
|
|
flex: 1;
|
|
flex: 1;
|
|
padding: 18px;
|
|
padding: 18px;
|
|
border-radius: 10px;
|
|
border-radius: 10px;
|
|
-
|
|
|
|
|
|
+ border: 2px solid #f6f6f6;
|
|
background: #f6f6f6;
|
|
background: #f6f6f6;
|
|
|
|
|
|
&.active {
|
|
&.active {
|
|
border: 2px solid #57c3c2;
|
|
border: 2px solid #57c3c2;
|
|
|
|
+ box-sizing: border-box;
|
|
}
|
|
}
|
|
|
|
|
|
&__title {
|
|
&__title {
|