提交 014fc92869d1616222323eec24774c424d36ab46

作者 wangws
1 个父辈 7fd7a31e

用户协议

... ... @@ -294,6 +294,17 @@
294 294
295 295 }
296 296 ]
  297 + },
  298 + {
  299 + "root": "pages/common",
  300 + "pages": [{
  301 + "path": "webview/webview",
  302 + "style": {
  303 + "navigationBarTitleText": "",
  304 + "enablePullDownRefresh": false
  305 + }
  306 + }
  307 + ]
297 308 }
298 309 ],
299 310
... ...
... ... @@ -26,8 +26,8 @@
26 26 </view>
27 27 <view class="text">
28 28 <text>您已阅读理解并同意</text>
29   - <text class="span" @click="linkService">《优学乐业服务协议》、</text>
30   - <text class="span" @click="linkPolicy">《优学乐业隐私政策》</text>
  29 + <text class="span" @click="linkService">《校职通服务协议》、</text>
  30 + <text class="span" @click="linkPolicy">《校职通隐私政策》</text>
31 31 </view>
32 32 </view>
33 33
... ... @@ -46,8 +46,8 @@
46 46 return {
47 47 isDisable: true,
48 48 checked: [],
49   - service: "https://yxlypublic.oss-cn-beijing.aliyuncs.com/WeChat/agreement/%E3%80%8A%E4%BC%98%E5%AD%A6%E4%B9%90%E4%B8%9A%E7%94%A8%E6%88%B7%E6%9C%8D%E5%8A%A1%E5%8D%8F%E8%AE%AE%E3%80%8B.htm",
50   - policy: "https://yxlypublic.oss-cn-beijing.aliyuncs.com/WeChat/agreement/%E3%80%8A%E4%BC%98%E5%AD%A6%E4%B9%90%E4%B8%9A%E9%9A%90%E7%A7%81%E5%8D%8F%E8%AE%AE%E3%80%8B.htm",
  49 + service: "https://hropublic.oss-cn-beijing.aliyuncs.com/agreement/%E6%A0%A1%E8%81%8C%E9%80%9A%E6%9C%8D%E5%8A%A1%E5%8D%8F%E8%AE%AE.html",
  50 + policy: "https://hropublic.oss-cn-beijing.aliyuncs.com/agreement/%E6%A0%A1%E8%81%8C%E9%80%9A%E9%9A%90%E7%A7%81%E5%8D%8F%E8%AE%AE.html",
51 51 form: {
52 52 mobile: '',
53 53 password: '',
... ...
... ... @@ -2,10 +2,10 @@
2 2 <view class="account_safe">
3 3 <view class="cell top">
4 4 <u-cell-group>
5   - <u-cell title="用户政策" :isLink="true" url="/pages/main/my/userPolicy/userPolicy" arrow-direction="right"
  5 + <u-cell title="用户政策" :isLink="true" :url="service" arrow-direction="right"
6 6 :rightIconStyle="{fontSize:'26rpx'}" :title-style="{color:'#909097', fontSize:'28rpx'}">
7 7 </u-cell>
8   - <u-cell title="隐私协议" :isLink="true" url="/pages/main/my/agreement/agreement"
  8 + <u-cell title="隐私协议" :isLink="true" :url="policy"
9 9 arrow-direction="right" :rightIconStyle="{fontSize:'26rpx'}"
10 10 :title-style="{color:'#909097', fontSize:'28rpx'}">
11 11 </u-cell>
... ... @@ -27,8 +27,14 @@
27 27 export default {
28 28 data() {
29 29 return {
30   -
  30 + service: "https://hropublic.oss-cn-beijing.aliyuncs.com/agreement/%E6%A0%A1%E8%81%8C%E9%80%9A%E6%9C%8D%E5%8A%A1%E5%8D%8F%E8%AE%AE.html",
  31 + policy: "https://hropublic.oss-cn-beijing.aliyuncs.com/agreement/%E6%A0%A1%E8%81%8C%E9%80%9A%E9%9A%90%E7%A7%81%E5%8D%8F%E8%AE%AE.html",
31 32 }
  33 + },
  34 +
  35 + onLoad() {
  36 + this.service = `/pages/common/webview/webview?navtitle=服务协议&url=${this.service}`
  37 + this.policy = `/pages/common/webview/webview?navtitle=隐私政策&url=${this.policy}`
32 38 },
33 39
34 40 computed: {
... ...
注册登录 后发表评论