|
@@ -118,9 +118,10 @@
|
|
|
|
|
|
|
|
<!-- 用户充值协议 -->
|
|
<!-- 用户充值协议 -->
|
|
|
<view class="recharge-agreement">
|
|
<view class="recharge-agreement">
|
|
|
- <view class="radio-group">
|
|
|
|
|
- <radio @click="toggleSelection" class="v-text" :checked="isSelected" >我已阅读并同意</radio>
|
|
|
|
|
- <text @click="gotoTermOfService(8)" class="h-btn">《储值协议》</text>
|
|
|
|
|
|
|
+ <view class="radio-group flex-row justify-center">
|
|
|
|
|
+ <radio @click="toggleSelection" style="transform:scale(0.8)" color="#FFE05C" class="v-text" :checked="isSelected" >
|
|
|
|
|
+ 我已阅读并同意<text @click.stop="gotoTermOfService(8)" class="h-btn">《储值协议》</text>
|
|
|
|
|
+ </radio>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
@@ -303,11 +304,8 @@
|
|
|
},
|
|
},
|
|
|
// 查看储值协议
|
|
// 查看储值协议
|
|
|
gotoTermOfService(type){
|
|
gotoTermOfService(type){
|
|
|
- uni.$u.route({
|
|
|
|
|
- url: '/pages/me/term-of-service-detatil',
|
|
|
|
|
- params: {
|
|
|
|
|
- data: type
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ uni.navigateTo({
|
|
|
|
|
+ url: '/myPages/TermsOfService/index?name='+'储值协议'+'&type=' + 8,
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
|
|
|
|