|
@@ -16,7 +16,7 @@
|
|
<u-checkbox-group @change="checkboxChange">
|
|
<u-checkbox-group @change="checkboxChange">
|
|
<u-checkbox v-model="agree" shape="circle"></u-checkbox>
|
|
<u-checkbox v-model="agree" shape="circle"></u-checkbox>
|
|
</u-checkbox-group>
|
|
</u-checkbox-group>
|
|
- <view class="text">已阅读并同意<span class="read" @click="open(0)">《会员服务协议》</span></view>
|
|
|
|
|
|
+ <view class="text">已阅读并同意<span class="read" @click="open">《会员服务协议》</span></view>
|
|
</view>
|
|
</view>
|
|
<view class="button hflex acenter jcenter" @click="openMember">
|
|
<view class="button hflex acenter jcenter" @click="openMember">
|
|
<view>确定协议并开通</view>
|
|
<view>确定协议并开通</view>
|
|
@@ -28,13 +28,13 @@
|
|
<view class="price">¥{{price}}</view>
|
|
<view class="price">¥{{price}}</view>
|
|
<!-- <view class="text1">支付方式</view> -->
|
|
<!-- <view class="text1">支付方式</view> -->
|
|
<view class="vflex">
|
|
<view class="vflex">
|
|
- <u-checkbox-group @change="checkboxChange1" placement="column" value="checkValue">
|
|
|
|
|
|
+ <u-radio-group @change="checkboxChange1" placement="column" value="checkValue">
|
|
<view class="box1 hflex acenter jbetween">
|
|
<view class="box1 hflex acenter jbetween">
|
|
<view class="hflex acenter">
|
|
<view class="hflex acenter">
|
|
<image src="/static/images/shop/wx_pay.png" style="width: 48rpx;height: 48rpx;"></image>
|
|
<image src="/static/images/shop/wx_pay.png" style="width: 48rpx;height: 48rpx;"></image>
|
|
<view class="box_right">微信支付</view>
|
|
<view class="box_right">微信支付</view>
|
|
</view>
|
|
</view>
|
|
- <u-checkbox :checked="true" name="0" shape="circle"></u-checkbox>
|
|
|
|
|
|
+ <u-radio :checked="true" name="0" shape="circle"></u-radio>
|
|
</view>
|
|
</view>
|
|
<view class="box1 hflex acenter jbetween">
|
|
<view class="box1 hflex acenter jbetween">
|
|
<view class="hflex acenter">
|
|
<view class="hflex acenter">
|
|
@@ -43,10 +43,10 @@
|
|
</view>
|
|
</view>
|
|
<view class="hflex acenter">
|
|
<view class="hflex acenter">
|
|
<view class="info">{{info}}</view>
|
|
<view class="info">{{info}}</view>
|
|
- <u-checkbox name="1" shape="circle"></u-checkbox>
|
|
|
|
|
|
+ <u-radio name="1" shape="circle"></u-radio>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- </u-checkbox-group>
|
|
|
|
|
|
+ </u-radio-group>
|
|
</view>
|
|
</view>
|
|
<view class="btn" @click="pay">立即支付</view>
|
|
<view class="btn" @click="pay">立即支付</view>
|
|
</view>
|
|
</view>
|
|
@@ -60,17 +60,11 @@
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- text: `
|
|
|
|
- <p>权益说明:</p>
|
|
|
|
- <p>1.纯净去广告,优质外刊原著精读,导师领读;</p>
|
|
|
|
- <p>2.纯净去广告,优质外刊原著精读,导师领读;</p>
|
|
|
|
- <p>3.纯净去广告,优质外刊原著精读,导师领读;</p>
|
|
|
|
- <p>4.纯净去广告,优质外刊原著精读,导师领读,纯净去广告,优质外刊原著精读,导师领读;</p>
|
|
|
|
- `,
|
|
|
|
|
|
+ text: '',
|
|
agree: false,
|
|
agree: false,
|
|
- agree1: ['0'],
|
|
|
|
|
|
+ agree1: '',
|
|
pay_show: false,
|
|
pay_show: false,
|
|
- price: 588,
|
|
|
|
|
|
+ price: 0,
|
|
is_member: 1,
|
|
is_member: 1,
|
|
member_date: '2022-12-01',
|
|
member_date: '2022-12-01',
|
|
amount: '',
|
|
amount: '',
|
|
@@ -82,13 +76,27 @@
|
|
{
|
|
{
|
|
name: 'yue'
|
|
name: 'yue'
|
|
}
|
|
}
|
|
- ]
|
|
|
|
|
|
+ ],
|
|
|
|
+ data: ''
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad() {
|
|
onLoad() {
|
|
that = this
|
|
that = this
|
|
|
|
+ that.getData()
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ getData() {
|
|
|
|
+ $api.req({
|
|
|
|
+ url: '/data/api.auth.Center/getvipinfo',
|
|
|
|
+ method: 'POST',
|
|
|
|
+ }, function(res) {
|
|
|
|
+ if(res.code == 1) {
|
|
|
|
+ that.price = res.data.price
|
|
|
|
+ that.text = res.data.user_vip_des
|
|
|
|
+ that.data = res.data.user_vip_agreement
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
// 阅读并同意
|
|
// 阅读并同意
|
|
checkboxChange(n) {
|
|
checkboxChange(n) {
|
|
this.agree = !this.agree
|
|
this.agree = !this.agree
|
|
@@ -96,7 +104,6 @@
|
|
// 选择支付方式
|
|
// 选择支付方式
|
|
checkboxChange1(n) {
|
|
checkboxChange1(n) {
|
|
this.agree1 = n
|
|
this.agree1 = n
|
|
- console.log(this.agree1);
|
|
|
|
},
|
|
},
|
|
// 确定协议并开通
|
|
// 确定协议并开通
|
|
openMember() {
|
|
openMember() {
|
|
@@ -107,6 +114,10 @@
|
|
}
|
|
}
|
|
|
|
|
|
},
|
|
},
|
|
|
|
+ open() {
|
|
|
|
+ uni.setStorageSync('agreement',that.data)
|
|
|
|
+ $api.jump('/pages/user/agreement?title=会员服务协议')
|
|
|
|
+ },
|
|
// 关闭弹窗
|
|
// 关闭弹窗
|
|
close() {
|
|
close() {
|
|
that.pay_show = false
|
|
that.pay_show = false
|