diff --git a/pages.json b/pages.json index 78ab7fb9a6419c35fd79d16cc516246da4864a8d..b69eeeac563395420fab9436d9583ee8713f9957 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 b6fcafd6a3676aca069a7e770f6391b7a6088374..0000000000000000000000000000000000000000 --- 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 d0272954b7f3975171d898c9c50e502c6e167013..2b6eb5561eb2552dec6771c4ed1204dae3ad75f6 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() } } }