From c92ea2a2f2a365a43373b820e0abf7cd585cb22e Mon Sep 17 00:00:00 2001 From: sundongyu <2811054731@qq.com> Date: Fri, 28 Jun 2024 11:30:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=B1=8F=E4=BF=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/tabBar/index.vue | 36 +-- manifest.json | 162 ++++++----- pages.json | 24 +- pages/index/components/businessCenter.vue | 104 +++++-- pages/index/index.vue | 8 +- pages/my/components/effectiveDate/index.vue | 152 ++++++++++ pages/my/components/install/index.vue | 266 +++++++++--------- pages/my/index.vue | 19 +- pages/schedule/index.vue | 2 +- pages/serve/index.vue | 2 +- static/{C5.png => car.png} | Bin static/qideng/Ll.png | Bin 0 -> 7704 bytes static/qideng/Mm.png | Bin 0 -> 5931 bytes static/qideng/Ss.png | Bin 0 -> 4092 bytes static/qideng/pingbaoL.png | Bin 0 -> 201690 bytes static/qideng/pingbaoM.png | Bin 0 -> 123903 bytes static/qideng/pingbaoS.png | Bin 0 -> 62540 bytes static/shenfen.png | Bin 0 -> 314684 bytes static/wode/9.png | Bin 5102 -> 8547 bytes static/yewuzhongxin/1/4.png | Bin 0 -> 4469 bytes static/yewuzhongxin/4/4.png | Bin 0 -> 11259 bytes .../dist/cache/.vite/deps/_metadata.json | 8 +- 22 files changed, 512 insertions(+), 271 deletions(-) create mode 100644 pages/my/components/effectiveDate/index.vue rename static/{C5.png => car.png} (100%) create mode 100644 static/qideng/Ll.png create mode 100644 static/qideng/Mm.png create mode 100644 static/qideng/Ss.png create mode 100644 static/qideng/pingbaoL.png create mode 100644 static/qideng/pingbaoM.png create mode 100644 static/qideng/pingbaoS.png create mode 100644 static/shenfen.png create mode 100644 static/yewuzhongxin/1/4.png create mode 100644 static/yewuzhongxin/4/4.png diff --git a/components/tabBar/index.vue b/components/tabBar/index.vue index 8c42559..97ca11c 100644 --- a/components/tabBar/index.vue +++ b/components/tabBar/index.vue @@ -1,5 +1,5 @@ @@ -97,7 +97,7 @@ const serve = ref([ }, { text: '交管小安', - icon: '', + icon: '../../static/wode/9.png', queenicon: '\ue612', id: 8 }, @@ -114,6 +114,14 @@ const set = () => { url: '/pages/my/components/install/index' }); }; +// 跳转有效日期 +const date = (id) => { + if (id == 3) { + uni.navigateTo({ + url: '/pages/my/components/effectiveDate/index' + }); + } +};