From 50a64ce5bbb53618bd5da75e70a768fed6f5abb0 Mon Sep 17 00:00:00 2001 From: sundongyu <2811054731@qq.com> Date: Wed, 26 Jun 2024 14:46:13 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20=E5=AE=8C=E6=88=90=E4=BA=86?= =?UTF-8?q?=E7=BD=91=E5=8A=9E=E8=BF=9B=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 - App.vue | 24 +- pages.json | 16 +- pages/index/components/businessCenter.vue | 282 ++++++++++++++++++++++ pages/my/components/install/index.vue | 129 +++++++++- pages/my/index.vue | 34 ++- pages/schedule/index.vue | 120 ++++++++- 7 files changed, 573 insertions(+), 34 deletions(-) create mode 100644 pages/index/components/businessCenter.vue diff --git a/.gitignore b/.gitignore index a38d869..d6978a1 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,4 @@ node_modules/ uni_modules unpackage -.node_modules/ -.eslintcache diff --git a/App.vue b/App.vue index 8c2b732..f10b684 100644 --- a/App.vue +++ b/App.vue @@ -1,17 +1,17 @@ diff --git a/pages.json b/pages.json index 047a1ef..5f567da 100644 --- a/pages.json +++ b/pages.json @@ -7,11 +7,19 @@ } }, { - "path": "pages/schedule/index", + "path": "pages/index/components/businessCenter", "style": { "navigationStyle": "custom" } }, + { + "path": "pages/schedule/index", + "style": { + "navigationBarBackgroundColor": "#2c66a9", + "navigationBarTitleText": "网办进度", + "navigationBarTextStyle": "white" + } + }, { "path": "pages/serve/index", "style": { @@ -25,6 +33,12 @@ "navigationBarTitleText": "我的", "navigationBarTextStyle": "white" } + }, + { + "path": "pages/my/components/install/index", + "style": { + "navigationStyle": "custom" + } } ], "globalStyle": { diff --git a/pages/index/components/businessCenter.vue b/pages/index/components/businessCenter.vue new file mode 100644 index 0000000..cd643ff --- /dev/null +++ b/pages/index/components/businessCenter.vue @@ -0,0 +1,282 @@ + + + + + diff --git a/pages/my/components/install/index.vue b/pages/my/components/install/index.vue index 02409e3..08e0356 100644 --- a/pages/my/components/install/index.vue +++ b/pages/my/components/install/index.vue @@ -1,8 +1,131 @@ - - \ No newline at end of file + diff --git a/pages/my/index.vue b/pages/my/index.vue index 6f7719c..0d62bc6 100644 --- a/pages/my/index.vue +++ b/pages/my/index.vue @@ -6,17 +6,19 @@ 注册时间 - 图标 + + + 设置 - + {{ item.text }} - + @@ -33,53 +35,59 @@ const serve = ref([ }, { text: '我的证件', - icon: 'wallet-filled', + icon: 'location-filled', user: '', id: 1 }, { text: '证件号码', - icon: 'wallet-filled', + icon: 'spinner-cycle', id: 2 }, { text: '有效期限', - icon: 'wallet-filled', + icon: 'star-filled', user: '', id: 3 }, { text: '手机号码', - icon: 'wallet-filled', + icon: 'star-filled', user: '', id: 4 }, { text: '邮寄地址', - icon: 'wallet-filled', + icon: 'refresh-filled', id: 5 }, { text: '电子文书', - icon: 'wallet-filled', + icon: 'refresh-filled', id: 6 }, { text: '信息申诉', - icon: 'wallet-filled', + icon: 'refresh-filled', id: 7 }, { text: '交管小安', - icon: 'wallet-filled', + icon: 'refresh-filled', id: 8 }, { text: '咨询反馈', - icon: 'wallet-filled', + icon: 'refresh-filled', id: 9 } ]); +// 跳转设置页面 +const set = () => { + uni.navigateTo({ + url: '/pages/my/components/install/index' + }); +}; \ No newline at end of file +