123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <!-- svip页面 -->
- <template>
- <view class="ezy-svip-page">
- <view class="icon-title-navBar-box">
- <!-- 返回按钮 ↓ -->
- <view class="nav-bar-icon" @click="goBack"></view>
- <view class="nav-bar-title">开通svip</view>
- </view>
- <!-- :class="'svip-login'+Id" 改到下方 -->
- <icon :class="'svip-login'+cardId"></icon>
- <view class="svip-list-box">
- <view v-for="(item, index) in svipArr" :key="index" class="list-item-box">
- <icon class="list-icon" :style="{backgroundImage: 'url(' + item.iconPath + ')'}"></icon>
- <view>
- <view class="list-title">{{item.title}}</view>
- <view class="list-content" v-html="item.content"></view>
- </view>
- </view>
- </view>
- <view class="open-svip-box">
- <view class="svip-price-box">
- <view>原价:<text class="original-price">¥598</text></view>
- <view class="discount-price">活动价:¥198</view>
- </view>
- <radio-group @change="radioChange" class="pay-type-box">
- <view class="type-radio-title">支付方式</view>
- <view class="type-radio-content">
- <view class="type-radio-box">
- <icon class="wx-radio"></icon>
- <text>微信</text>
- <radio value="weixin" :checked="payType==='weixin'" activeBackgroundColor="transparent"
- :class="{'radio-checked': payType==='weixin'}" />
- </view>
- <view class="type-radio-box">
- <icon class="zfb-radio"></icon>
- <text>支付宝</text>
- <radio value="zhifubao" :checked="payType==='zhifubao'" activeBackgroundColor="transparent"
- :class="{'radio-checked': payType==='zhifubao'}" style="margin-right: 0;" />
- </view>
- </view>
- </radio-group>
- <view class="open-svip-btn" @click="creatOrder">立即开通</view>
- </view>
- <CustomTabBar></CustomTabBar>
- <!-- 蛋破壳 -->
- <pay-success ref="daoPokeRef"></pay-success>
- <pay-successAll ref="daoPokeAllRef"></pay-successAll>
- </view>
- </template>
- <script setup>
- import {
- ref
- } from "vue";
- import {
- orderAdd
- } from "@/api/order.js"
- import CustomTabBar from '@/components/custom-tabbar/custom-tabbar.vue';
- import cacheManager from "@/utils/cacheManager.js";
- import paySuccess from './paySuccess.vue';
- import paySuccessAll from './paySuccessAll.vue';
- import {
- onLoad,
- onReady
- } from '@dcloudio/uni-app';
- import {
- toast,
- getUserIdentity
- } from "@/utils/common";
- let payType = ref('weixin')
- let cardId = ref('')
- let formPage = ref('')
- const daoPokeRef = ref(null);
- const daoPokeAllRef = ref(null);
- const isVip = getUserIdentity();
- const svipArr = [{
- iconPath: 'static/images/pay/svip-list-icon1.png',
- title: '学习资源,随心畅学',
- content: `解锁L1~L6全等级数学思维优质学习资源,<br/>满足多样学习需求`
- },
- {
- iconPath: 'static/images/pay/svip-list-icon2.png',
- title: '名师打造,优质路径',
- content: '资深名师精心规划学习路径,引领高效提升方向'
- },
- {
- iconPath: 'static/images/pay/svip-list-icon3.png',
- title: '进度分析,个性贴心',
- content: '优先参与丰富真题测试,精准洞察学习状况'
- },
- {
- iconPath: 'static/images/pay/svip-list-icon4.png',
- title: '真题测试,优先体验',
- content: '成为会员,即刻畅享专属权益,开启无忧学习之旅'
- }
- ];
- onLoad((options) => {
- cardId.value = options.cardId
- formPage.value = options.formPage
- })
- function radioChange(data) {
- payType.value = data.detail.value;
- }
- function creatOrder(data) {
- let req = {
- cardId: cardId.value
- }
- orderAdd(req).then(res => {
- cacheManager.updateVipStatus('auth', cardId.value)
- cacheManager.updateObject('auth', {
- growthType: 1
- })
- if (isVip != 'VIP') {
- daoPokeRef.value.handleShow();
- } else {
- daoPokeAllRef.value.handleShow();
- }
- setTimeout(() => {
- daoPokeRef.value.handleClose();
- daoPokeAllRef.value.handleClose();
- if(formPage.value =='my'){
- uni.redirectTo({
- url: '/pages/my/index'
- })
- }else{
- uni.redirectTo({
- url: '/pages/study/index'
- })
- }
- }, 3000)
- })
- }
- function goBack(data) {
- uni.redirectTo({
- url: '/pages/study/index'
- })
- }
- </script>
- <style>
- </style>
|