修改服务协议名称
This commit is contained in:
parent
425533485c
commit
8b5cd8f0cc
|
@ -5,7 +5,7 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="description">
|
<view class="description">
|
||||||
<text class="text">我已阅读并同意</text>
|
<text class="text">我已阅读并同意</text>
|
||||||
<text class="link" @click="utils.toPage('/pages/detail/detail?type=register')">《注册协议》</text>
|
<text class="link" @click="utils.toPage('/pages/detail/detail?type=service')">《服务协议》</text>
|
||||||
<text class="link" @click="utils.toPage('/pages/detail/detail?type=privacy')">《隐私政策》</text>
|
<text class="link" @click="utils.toPage('/pages/detail/detail?type=privacy')">《隐私政策》</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
@ -117,7 +117,7 @@ export default {
|
||||||
return resolve({
|
return resolve({
|
||||||
about: response.data.about,
|
about: response.data.about,
|
||||||
privacy: response.data.xieyi,
|
privacy: response.data.xieyi,
|
||||||
register: response.data.zhuce,
|
service: response.data.zhuce,
|
||||||
serviceMobile: response.data.mobile,
|
serviceMobile: response.data.mobile,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,7 @@ export default {
|
||||||
this.$utilst.toPage("", {}, "back");
|
this.$utilst.toPage("", {}, "back");
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (e.type == "about" || e.type == "privacy" || e.type == "register") {
|
if (e.type == "about" || e.type == "privacy" || e.type == "service") {
|
||||||
await this.$store.dispatch("system/platformData");
|
await this.$store.dispatch("system/platformData");
|
||||||
if (e.type == "about") {
|
if (e.type == "about") {
|
||||||
this.pageTitle = "关于我们";
|
this.pageTitle = "关于我们";
|
||||||
|
@ -50,8 +50,8 @@ export default {
|
||||||
this.pageTitle = "隐私政策";
|
this.pageTitle = "隐私政策";
|
||||||
this.info.content = this.platformData.privacy;
|
this.info.content = this.platformData.privacy;
|
||||||
} else {
|
} else {
|
||||||
this.pageTitle = "注册协议";
|
this.pageTitle = "服务协议";
|
||||||
this.info.content = this.platformData.register;
|
this.info.content = this.platformData.service;
|
||||||
}
|
}
|
||||||
this.info.content = this.info.content.replace(/\<img/gi, '<img style="max-width:100%;height:auto"');
|
this.info.content = this.info.content.replace(/\<img/gi, '<img style="max-width:100%;height:auto"');
|
||||||
uni.setNavigationBarTitle({
|
uni.setNavigationBarTitle({
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
<text class="iconfont icon-jinru"></text>
|
<text class="iconfont icon-jinru"></text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="widget-item" @click="toPage('/pages/detail/detail?type=register')">
|
<view class="widget-item" @click="toPage('/pages/detail/detail?type=service')">
|
||||||
<text class="title">注册协议</text>
|
<text class="title">服务协议</text>
|
||||||
<view class="item-content">
|
<view class="item-content">
|
||||||
<text class="iconfont icon-jinru"></text>
|
<text class="iconfont icon-jinru"></text>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
@ -8,7 +8,7 @@ export default {
|
||||||
loaded: false,
|
loaded: false,
|
||||||
about: "",
|
about: "",
|
||||||
privacy: "",
|
privacy: "",
|
||||||
register: "",
|
service: "",
|
||||||
serviceMobile: "",
|
serviceMobile: "",
|
||||||
},
|
},
|
||||||
refreshOrder: true,
|
refreshOrder: true,
|
||||||
|
|
Loading…
Reference in New Issue