|
@@ -78,10 +78,10 @@
|
|
|
<checkbox-group @change='ChangeIsDefault'>
|
|
|
<checkbox :class="inAnimation ? 'trembling' : ''" @animationend='inAnimation = false'
|
|
|
:checked="protocol ? true : false" />{{ $t(`已同意`) }} <text class="main-color"
|
|
|
- @click="privacy(4)">{{ $t(`《注册协议》`) }}</text>
|
|
|
+ @click="privacy('2.html','注册协议')">{{ $t(`《注册协议》`) }}</text>
|
|
|
<text class="main-color"
|
|
|
- @click="privacy(4)">{{ $t(`《商城须知》`) }}</text>
|
|
|
- <text class="main-color" @click="privacy(3)">{{ $t(`《隐私政策》`) }}</text>
|
|
|
+ @click="privacy('3.html','商城须知')">{{ $t(`《商城须知》`) }}</text>
|
|
|
+ <text class="main-color" @click="privacy('1.html','隐私政策')">{{ $t(`《隐私政策》`) }}</text>
|
|
|
</checkbox-group>
|
|
|
</view>
|
|
|
<view class="logon" @click="loginMobile" v-if="current !== 0">{{ $t(`同意协议注册`) }}</view>
|
|
@@ -211,9 +211,9 @@ export default {
|
|
|
ChangeIsDefault(e) {
|
|
|
this.$set(this, 'protocol', !this.protocol);
|
|
|
},
|
|
|
- privacy(type) {
|
|
|
+ privacy(type,title) {
|
|
|
uni.navigateTo({
|
|
|
- url: "/pages/users/privacy/index?type=" + type
|
|
|
+ url: "/pages/users/privacy/index?type=" + type+"&title=" + title
|
|
|
})
|
|
|
},
|
|
|
// IOS 版本号判断
|