From 06fee9863c32fa59829fb61c1a59503e902cf73b Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Fri, 19 Jun 2026 07:49:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=95=8C=E9=9D=A2=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E6=95=B4=E4=BD=93=E5=A4=A7=E8=B0=83=E6=95=B4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/collect-card/collect-card.vue | 504 ++++++++++++++++++ src/pages.json | 18 +- src/pages/banknote/index.vue | 155 +++--- src/pages/index.vue | 178 +++---- src/pages/metal/index.vue | 191 ++++--- src/pages/mine.vue | 192 ++++++- .../images/tabbar/tab-banknote-active.png | Bin 0 -> 1084 bytes src/static/images/tabbar/tab-banknote.png | Bin 0 -> 1088 bytes src/static/images/tabbar/tab-coin-active.png | Bin 0 -> 1333 bytes src/static/images/tabbar/tab-coin.png | Bin 0 -> 1313 bytes src/static/images/tabbar/tab-metal-active.png | Bin 0 -> 645 bytes src/static/images/tabbar/tab-metal.png | Bin 0 -> 643 bytes src/static/scss/collect-page.scss | 495 +++++++++++++++++ src/static/scss/index.scss | 3 +- 14 files changed, 1447 insertions(+), 289 deletions(-) create mode 100644 src/components/collect-card/collect-card.vue create mode 100644 src/static/images/tabbar/tab-banknote-active.png create mode 100644 src/static/images/tabbar/tab-banknote.png create mode 100644 src/static/images/tabbar/tab-coin-active.png create mode 100644 src/static/images/tabbar/tab-coin.png create mode 100644 src/static/images/tabbar/tab-metal-active.png create mode 100644 src/static/images/tabbar/tab-metal.png create mode 100644 src/static/scss/collect-page.scss diff --git a/src/components/collect-card/collect-card.vue b/src/components/collect-card/collect-card.vue new file mode 100644 index 0000000..eaa926d --- /dev/null +++ b/src/components/collect-card/collect-card.vue @@ -0,0 +1,504 @@ + + + + + diff --git a/src/pages.json b/src/pages.json index a78b1c2..5647779 100644 --- a/src/pages.json +++ b/src/pages.json @@ -113,28 +113,28 @@ ], "tabBar": { - "color": "#999999", - "selectedColor": "#667eea", - "borderStyle": "white", + "color": "#64748b", + "selectedColor": "#0f766e", + "borderStyle": "black", "backgroundColor": "#ffffff", "list": [ { "pagePath": "pages/index", - "iconPath": "static/images/tabbar/home.png", - "selectedIconPath": "static/images/tabbar/home_.png", + "iconPath": "static/images/tabbar/tab-coin.png", + "selectedIconPath": "static/images/tabbar/tab-coin-active.png", "text": "纪念币" }, { "pagePath": "pages/banknote/index", - "iconPath": "static/images/tabbar/work.png", - "selectedIconPath": "static/images/tabbar/work_.png", + "iconPath": "static/images/tabbar/tab-banknote.png", + "selectedIconPath": "static/images/tabbar/tab-banknote-active.png", "text": "纪念钞" } , { "pagePath": "pages/metal/index", - "iconPath": "static/images/tabbar/statistic.png", - "selectedIconPath": "static/images/tabbar/statistic.png", + "iconPath": "static/images/tabbar/tab-metal.png", + "selectedIconPath": "static/images/tabbar/tab-metal-active.png", "text": "贵金属" } ] diff --git a/src/pages/banknote/index.vue b/src/pages/banknote/index.vue index b40ce8f..1ed108d 100644 --- a/src/pages/banknote/index.vue +++ b/src/pages/banknote/index.vue @@ -1,5 +1,14 @@