From 90c70ceb6401e7fe516fff23b205e937323e8b2f Mon Sep 17 00:00:00 2001 From: "3321822538@qq.com" <3321822538@qq.com> Date: Sat, 14 Sep 2024 18:00:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=BA=E6=9C=AC=E5=AE=8C-=E5=BC=80=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- page_components/fuwu/index.vue | 9 ++- page_fenbao/statulist/about/index.vue | 112 +++++++++++++++----------- pages/shouye/index.vue | 2 +- 3 files changed, 75 insertions(+), 48 deletions(-) diff --git a/page_components/fuwu/index.vue b/page_components/fuwu/index.vue index 77e3cf9..69038fa 100644 --- a/page_components/fuwu/index.vue +++ b/page_components/fuwu/index.vue @@ -113,7 +113,7 @@ 我已同意 - 《用户服务协议》 + 《用户服务协议》 立即支付 @@ -332,6 +332,13 @@ } }) }, + + // 用户服务协议 + btnyinsi(){ + uni.navigateTo({ + url: '/page_fenbao/statulist/about/index?tit=' + '用户服务协议' + }) + }, gettrue() { this.$u.get("/app/device/isBind?deviceNo=" + this.id).then((res) => { diff --git a/page_fenbao/statulist/about/index.vue b/page_fenbao/statulist/about/index.vue index 01ff185..d6f8c5d 100644 --- a/page_fenbao/statulist/about/index.vue +++ b/page_fenbao/statulist/about/index.vue @@ -1,19 +1,15 @@ @@ -21,48 +17,66 @@ export default { data() { return { - obj:{} + obj: {}, + tit: '' } }, // 分享到好友(会话) - onShareAppMessage: function () { - return { - title: '创想物联', - path: '/pages/shouye/index' - } - }, - - // 分享到朋友圈 - onShareTimeline: function () { - return { - title: '创想物联', - query: '', - path: '/pages/shouye/index' - } - }, - onLoad() { - this.getabout() + onShareAppMessage: function() { + return { + title: '创想物联', + path: '/pages/shouye/index' + } + }, + + // 分享到朋友圈 + onShareTimeline: function() { + return { + title: '创想物联', + query: '', + path: '/pages/shouye/index' + } + }, + onLoad(option) { + this.tit = option.tit + if (option.tit == '关于我们') { + this.getabout() + }else{ + this.getabouts() + } }, methods: { - getabout(){ - let type = 'about' - this.$u.get(`/app/article/licence/${type}`).then((res) => { - if (res.code == 200) { - this.obj= res.data - } - }) - } + + getabout() { + let type = 'about' + this.$u.get(`/app/article/licence/${type}`).then((res) => { + if (res.code == 200) { + this.obj = res.data + } + }) + }, + // 用户隐私协议 + getabouts() { + let type = 'privacy' + this.$u.get(`/app/article/licence/${type}`).then((res) => { + if (res.code == 200) { + this.obj = res.data + } + }) + } } }