修改协议跳转和按钮
This commit is contained in:
parent
c96dab6919
commit
d7000680e6
|
@ -5,8 +5,8 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="description">
|
<view class="description">
|
||||||
<text class="text">我已阅读并同意</text>
|
<text class="text">我已阅读并同意</text>
|
||||||
<text class="link">《服务协议》</text>
|
<text class="link" @click="utils.toPage('/pages/detail/detail?type=register')">《注册协议》</text>
|
||||||
<text class="link">《隐私政策》</text>
|
<text class="link" @click="utils.toPage('/pages/detail/detail?type=privacy')">《隐私政策》</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
@ -17,6 +17,7 @@ export default {
|
||||||
name: "component-auth-agreement",
|
name: "component-auth-agreement",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
utils: this.$utils,
|
||||||
state: false,
|
state: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
|
@ -74,7 +74,7 @@ export default {
|
||||||
this.pageTitle = "关于我们";
|
this.pageTitle = "关于我们";
|
||||||
this.info.content = this.platformData.about;
|
this.info.content = this.platformData.about;
|
||||||
} else if (e.type == "privacy") {
|
} else if (e.type == "privacy") {
|
||||||
this.pageTitle = "隐私协议";
|
this.pageTitle = "隐私政策";
|
||||||
this.info.content = this.platformData.privacy;
|
this.info.content = this.platformData.privacy;
|
||||||
} else {
|
} else {
|
||||||
this.pageTitle = "注册协议";
|
this.pageTitle = "注册协议";
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="widget-item" @click="toPage('/pages/detail/detail?type=privacy')">
|
<view class="widget-item" @click="toPage('/pages/detail/detail?type=privacy')">
|
||||||
<text class="title limit-line clamp-1">隐私协议</text>
|
<text class="title limit-line clamp-1">隐私政策</text>
|
||||||
<view class="item-content">
|
<view class="item-content">
|
||||||
<text class="iconfont icon-jinru"></text>
|
<text class="iconfont icon-jinru"></text>
|
||||||
</view>
|
</view>
|
||||||
|
|
Loading…
Reference in New Issue