From cf39738f5ebdaf51d9725ee9c21b5d3561737828 Mon Sep 17 00:00:00 2001 From: peng <peng.com> Date: 星期五, 29 八月 2025 02:04:46 +0800 Subject: [PATCH] 提交新域名 --- pages/mine/help/tips.vue | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/pages/mine/help/tips.vue b/pages/mine/help/tips.vue index 7f9c911..369e170 100644 --- a/pages/mine/help/tips.vue +++ b/pages/mine/help/tips.vue @@ -1,7 +1,7 @@ <template> <div class="wrapper"> <u-parse :show-with-animation="true" :lazy-load="true" :selectable="true" :html="res.content" v-if="res"></u-parse> - <button class="submit" @click="agreed()">鍚屾剰鍗忚</button> + <button class="submit" @click="agreed()" v-if="privacyAgreement">鍚屾剰鍗忚</button> </div> </template> <script> @@ -13,6 +13,7 @@ data() { return { res: "", + privacyAgreement:false, way: { USER_AGREEMENT: { title: "鏈嶅姟鍗忚", @@ -39,6 +40,9 @@ }, mounted() {}, onLoad(option) { + if(option.type === 'STORE_REGISTER'){ + this.privacyAgreement = true; + } console.log(this.way) uni.setNavigationBarTitle({ title: this.way[option.type].title, -- Gitblit v1.8.0