From 05a2bca100f0d66683ea274ed1dc1bdb4e22ec3a Mon Sep 17 00:00:00 2001 From: linju <8432241+linjuDcloud@user.noreply.gitee.com> Date: Wed, 7 Apr 2021 21:27:16 +0800 Subject: [PATCH] 213 --- pages.json | 32 ++--- .../uni-login-page/pages/index/index--.nvue | 128 ------------------ .../uni-login-page/pages/index/index.vue | 24 ++-- .../uni-quick-login/uni-quick-login.vue | 5 +- 4 files changed, 32 insertions(+), 157 deletions(-) delete mode 100644 uni_modules/uni-login-page/pages/index/index--.nvue diff --git a/pages.json b/pages.json index 78ab7fb..b69eeea 100644 --- a/pages.json +++ b/pages.json @@ -20,28 +20,26 @@ }, { "path": "uni_modules/uni-login-page/pages/index/index", "style": { - "navigationBarTitleText": "", - "navigationBarBackgroundColor": "#FFFFFF", "navigationStyle": "custom", - // "backgroundColor": "transparent", + "backgroundColor": "transparent", "app-plus": { "animationType": "fade-in", - "background": "transparent", - "popGesture": "none", - "titleNView":false - // "navigationBarTitleText": "", - // "navigationBarBackgroundColor": "#FFFFFF", - // "app-plus": { - // "titleNView": { - // "buttons": [{ - // "text": "帮助", - // "type": "none", - // "fontSize": "16px", - // "width": "60px" - // }] - // } + "background": "transparent", + "popGesture": "none" } } + // "navigationBarTitleText": "", + // "navigationBarBackgroundColor": "#FFFFFF", + // "app-plus": { + // "titleNView": { + // "buttons": [{ + // "text": "帮助", + // "type": "none", + // "fontSize": "16px", + // "width": "60px" + // }] + // } + }, { "path": "pages/search/search", "style": { diff --git a/uni_modules/uni-login-page/pages/index/index--.nvue b/uni_modules/uni-login-page/pages/index/index--.nvue deleted file mode 100644 index b6fcafd..0000000 --- a/uni_modules/uni-login-page/pages/index/index--.nvue +++ /dev/null @@ -1,128 +0,0 @@ - - - - - \ No newline at end of file diff --git a/uni_modules/uni-login-page/pages/index/index.vue b/uni_modules/uni-login-page/pages/index/index.vue index d027295..2b6eb55 100644 --- a/uni_modules/uni-login-page/pages/index/index.vue +++ b/uni_modules/uni-login-page/pages/index/index.vue @@ -1,7 +1,7 @@ @@ -42,7 +42,7 @@ export default { data() { return { - isShow:true, + isShow:false, link: [{ text: '用户协议', to: '/baidu.com' @@ -54,6 +54,11 @@ currenPhoneArea: '+86', phoneNumber: '' } + }, + onReady() { + setTimeout(()=>{ + this.isShow = true + },1500); }, computed: { canGetShortMsg() { @@ -81,12 +86,18 @@ }, openLoginList() { this.$refs.loginActionSheet.open(); + }, + back(){ + uni.navigateBack() } } }