From ebc94282cc92d054ad53af179cd781cd0931422a Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Mon, 9 May 2022 16:26:42 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=A0=87=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mods/AppAuth/agreement.vue | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/mods/AppAuth/agreement.vue b/src/mods/AppAuth/agreement.vue index 6e3b4db..982e1f2 100644 --- a/src/mods/AppAuth/agreement.vue +++ b/src/mods/AppAuth/agreement.vue @@ -253,9 +253,19 @@ export default { name: "agreement", appName: "用户服务及隐私协议", data() { - return {} + return { + } }, - + onShow() { + this.setNavbar() + }, + methods: { + setNavbar() { + uni.setNavigationBarTitle({ + title: '用户服务及隐私协议' + }); + } + } }