|
@@ -1,5 +1,6 @@
|
|
|
<template>
|
|
|
<view>
|
|
|
+ <!--#ifdef MP-WEIXIN -->
|
|
|
<m-nav-bar title="开通会员" :transparent="true" />
|
|
|
<div v-if="!isIos" class="buyvip-box">
|
|
|
<img class="top-img" :src="topImg" alt="头部背景" />
|
|
@@ -42,7 +43,11 @@
|
|
|
</div>
|
|
|
<div style="height: 60px"></div>
|
|
|
</div>
|
|
|
- <view class="" style="width: 100%; text-align: center;display:flex;flex-wrap:wrap" v-if="isIos">
|
|
|
+ <view
|
|
|
+ class=""
|
|
|
+ style="width: 100%; text-align: center; display: flex; flex-wrap: wrap"
|
|
|
+ v-if="isIos"
|
|
|
+ >
|
|
|
<input
|
|
|
class="active-input"
|
|
|
v-model="activeCode"
|
|
@@ -50,21 +55,126 @@
|
|
|
placeholder="请输入激活码"
|
|
|
/>
|
|
|
<button class="active-sure">确定</button>
|
|
|
- <view class="" style="color:#b6b6b6;text-align:center;width:100%;margin-top:15rpx;">如有疑问,请联系客服</view>
|
|
|
+ <view
|
|
|
+ class=""
|
|
|
+ style="
|
|
|
+ color: #b6b6b6;
|
|
|
+ text-align: center;
|
|
|
+ width: 100%;
|
|
|
+ margin-top: 15rpx;
|
|
|
+ "
|
|
|
+ >如有疑问,请联系客服</view
|
|
|
+ >
|
|
|
</view>
|
|
|
+ <!-- #endif -->
|
|
|
+
|
|
|
+ <!-- #ifdef MP-TOUTIAO -->
|
|
|
+ <userHead></userHead>
|
|
|
+ <view class="content">
|
|
|
+ <view class="vip">
|
|
|
+ <view
|
|
|
+ class="vip-item"
|
|
|
+ style="background: #e1e9f5; border: 2rpx solid #498ef5"
|
|
|
+ @click="
|
|
|
+ () => {
|
|
|
+ vipCodeVisible = true;
|
|
|
+ }
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <view class="vip-item-icon"> <image :src="jihuoma"></image> </view>
|
|
|
+ <text style="font-size: 26rpx; color: #498ef5; margin-left: 18rpx"
|
|
|
+ >激活码激活</text
|
|
|
+ >
|
|
|
+ </view>
|
|
|
+ <view
|
|
|
+ v-if="ios_vip_open || !isIos"
|
|
|
+ class="vip-item"
|
|
|
+ style="background: #feeaee; border: 2px solid #fe2c55"
|
|
|
+ >
|
|
|
+ <view>
|
|
|
+ <view @click="buy" style="display: flex; align-items: center">
|
|
|
+ <view class="vip-item-icon"> <image :src="douyin"></image> </view>
|
|
|
+
|
|
|
+ <text style="font-size: 26rpx; color: #fe2c55; margin-left: 18rpx"
|
|
|
+ >抖音充值激活\n
|
|
|
+ <text
|
|
|
+ ><text style="font-size: 36rpx">{{ price }}元</text>
|
|
|
+ <text
|
|
|
+ style="margin-left: 12rpx; text-decoration: line-through"
|
|
|
+ >{{ orginPrice }}元</text
|
|
|
+ ></text
|
|
|
+ >
|
|
|
+ </text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <van-overlay :show="vipCodeVisible">
|
|
|
+ <view class="popUps">
|
|
|
+ <view class="content">
|
|
|
+ <view
|
|
|
+ @click="
|
|
|
+ () => {
|
|
|
+ vipCodeVisible = false;
|
|
|
+ }
|
|
|
+ "
|
|
|
+ class="close"
|
|
|
+ >
|
|
|
+ <van-icon name="cross" size="24px" />
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view
|
|
|
+ style="
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 30rpx;
|
|
|
+ margin-top: 20rpx;
|
|
|
+ "
|
|
|
+ >提示</view
|
|
|
+ >
|
|
|
+ <view
|
|
|
+ style="
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
+ color: #5c6066;
|
|
|
+ font-size: 26rpx;
|
|
|
+ margin-top: 40rpx;
|
|
|
+ "
|
|
|
+ >您还未开通系统,请输入激活码开通!</view
|
|
|
+ >
|
|
|
+ <input
|
|
|
+ v-model="vipCode"
|
|
|
+ placeholder-style="font-size:13px"
|
|
|
+ class="content-input"
|
|
|
+ placeholder="请输入激活码"
|
|
|
+ />
|
|
|
+ <view @click="sendVipCode" class="content-open"> 立即开通 </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </van-overlay>
|
|
|
+ <!-- #endif -->
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import topImg from "./top-background.png";
|
|
|
import api from "@/api/index";
|
|
|
+import userHead from "./component/userHead.vue";
|
|
|
+import douyin from "@/assets/img/douyin.png";
|
|
|
+import jihuoma from "@/assets/img/jihuoma.png";
|
|
|
export default {
|
|
|
-
|
|
|
data() {
|
|
|
return {
|
|
|
isIos: false,
|
|
|
+ douyin,
|
|
|
+ jihuoma,
|
|
|
activeCode: "",
|
|
|
ios_vip_open: 0,
|
|
|
+ price: 0,
|
|
|
+ orginPrice: 0,
|
|
|
+ vipCodeVisible: false,
|
|
|
+ vipCode: "",
|
|
|
goodsList: [
|
|
|
{
|
|
|
searchValue: null,
|
|
@@ -130,6 +240,8 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
buy(e) {
|
|
|
+ let that = this;
|
|
|
+ //#ifdef MP-WEIXIN
|
|
|
api.buy
|
|
|
.studentXcxWxPrepareOrder({
|
|
|
dictCode: this.goodsList[this.goodsIndex].dictCode,
|
|
@@ -137,8 +249,36 @@ export default {
|
|
|
.then((res) => {
|
|
|
uni.requestPayment({
|
|
|
...res.data,
|
|
|
+ success(res) {
|
|
|
+ that.$store.dispatch("GetInfo");
|
|
|
+ },
|
|
|
});
|
|
|
});
|
|
|
+ //#endif
|
|
|
+ //#ifdef MP-TOUTIAO
|
|
|
+ api.buy.studentTtPrepareOrder().then((res) => {
|
|
|
+ uni.pay({
|
|
|
+ orderInfo: res.data,
|
|
|
+ service: 5,
|
|
|
+ success(res) {},
|
|
|
+ });
|
|
|
+ that.$store.dispatch("GetInfo");
|
|
|
+ });
|
|
|
+
|
|
|
+ //#endif
|
|
|
+ },
|
|
|
+ sendVipCode() {
|
|
|
+ api.code
|
|
|
+ .studentVipCode({
|
|
|
+ vipCode: this.vipCode,
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ uni.showToast({
|
|
|
+ title: res.msg,
|
|
|
+ icon: "none",
|
|
|
+ });
|
|
|
+ this.$store.dispatch("GetInfo");
|
|
|
+ });
|
|
|
},
|
|
|
},
|
|
|
mounted() {
|
|
@@ -148,10 +288,23 @@ export default {
|
|
|
this.ios_vip_open = Number(res.data);
|
|
|
});
|
|
|
this.isIos = systemInfo.platform == "ios";
|
|
|
- // this.isIos = true;
|
|
|
+ //#ifdef MP-WEIXIN
|
|
|
api.buy.systemDictDataType("vip_type_price").then((res) => {
|
|
|
this.goodsList = res.data;
|
|
|
});
|
|
|
+ //#endif
|
|
|
+ //#ifdef MP-TOUTIAO
|
|
|
+ this.goodsIndex = 0;
|
|
|
+ api.buy.systemConfigConfigKey("vip_price").then((res) => {
|
|
|
+ this.price = res.data;
|
|
|
+ });
|
|
|
+ api.buy.systemConfigConfigKey("vip_price_original").then((res) => {
|
|
|
+ this.orginPrice = res.data;
|
|
|
+ });
|
|
|
+ //#endif
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ userHead,
|
|
|
},
|
|
|
};
|
|
|
// import { getVipPrice, prepareOrder } from "@/api";
|
|
@@ -173,7 +326,7 @@ export default {
|
|
|
height: 70rpx;
|
|
|
line-height: 70rpx;
|
|
|
}
|
|
|
-.active-sure{
|
|
|
+.active-sure {
|
|
|
margin: 0 auto;
|
|
|
width: 200rpx;
|
|
|
height: 70rpx;
|
|
@@ -327,7 +480,78 @@ export default {
|
|
|
|
|
|
&:active {
|
|
|
background-color: red;
|
|
|
-
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.popUps {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-content: center;
|
|
|
+ align-items: center;
|
|
|
+ width: 100%;
|
|
|
+ height: 100vh;
|
|
|
+
|
|
|
+ .content {
|
|
|
+ width: 590rpx;
|
|
|
+ height: 480rpx;
|
|
|
+ background: #fff;
|
|
|
+ border-radius: 20rpx;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-content: flex-start;
|
|
|
+ align-items: flex-start;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ position: relative;
|
|
|
+ .close {
|
|
|
+ position: absolute;
|
|
|
+ right: 30rpx;
|
|
|
+ }
|
|
|
+ .content-input {
|
|
|
+ width: 500rpx;
|
|
|
+ height: 60rpx;
|
|
|
+ background: rgba(242, 243, 245, 0.39);
|
|
|
+ border: 2rpx solid #e8e8e8;
|
|
|
+ opacity: 1;
|
|
|
+ border-radius: 30rpx;
|
|
|
+ padding-left: 15rpx;
|
|
|
+ margin-top: 40rpx;
|
|
|
+ }
|
|
|
+ .content-open {
|
|
|
+ width: 200rpx;
|
|
|
+ height: 60rpx;
|
|
|
+ font-size: 26rpx;
|
|
|
+ background: #498ef5;
|
|
|
+ border-radius: 30rpx;
|
|
|
+ margin-top: 40rpx;
|
|
|
+ color: #fff;
|
|
|
+ line-height: 60rpx;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.content {
|
|
|
+ padding-top: 20rpx;
|
|
|
+ padding-left: 30rpx;
|
|
|
+ padding-right: 30rpx;
|
|
|
+ .vip {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ .vip-item {
|
|
|
+ width: 334rpx;
|
|
|
+ height: 200rpx;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-content: center;
|
|
|
+ align-items: center;
|
|
|
+ border-radius: 20rpx;
|
|
|
+ .vip-item-icon {
|
|
|
+ width: 42rpx;
|
|
|
+ height: 48rpx;
|
|
|
+ > image {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|