From e3ed579c6655f2b8b438fe3ca37e0c8d52b810e1 Mon Sep 17 00:00:00 2001 From: Fox-33 <1466778434@qq.com> Date: Sun, 14 Sep 2025 15:29:08 +0800 Subject: [PATCH 1/3] =?UTF-8?q?feat:=20UI=E8=B0=83=E6=95=B4;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 2 +- common.scss | 1 - components/base/navbar.vue | 138 ++++++++++----- components/base/suspendDropdown.vue | 9 +- components/serve/serveModuleCard.vue | 91 ++++++++++ components/serve/serveModuleView.vue | 113 ++++++++++++ components/serve/serveSecondModuleCard.vue | 71 ++++++++ pages.json | 2 +- pages/index/case.vue | 208 +++++++++++++++------- pages/index/center.vue | 168 ++++++++++++++---- pages/index/index.vue | 268 +++++++++++++++++++---------- pages/index/serve.vue | 253 ++++++++++++++++----------- pages_order/thesis/search.vue | 167 +++++------------- pages_order/thesis/thesisCard.vue | 89 ++++++++++ pages_order/thesis/thesisInfoView.vue | 87 ++++++++++ static/image/bg-icon.png | Bin 0 -> 42920 bytes static/image/bg-index.png | Bin 0 -> 353086 bytes static/image/bg-nav.png | Bin 0 -> 151777 bytes static/image/bg-other-serve.png | Bin 38996 -> 225998 bytes static/image/bg-serve-1.png | Bin 0 -> 72138 bytes static/image/bg-serve-2.png | Bin 0 -> 235899 bytes static/image/bg-serve.png | Bin 0 -> 79571 bytes static/image/card-bg-icon.png | Bin 0 -> 65153 bytes static/image/icon-arrow-right.png | Bin 0 -> 3005 bytes static/image/icon-back.png | Bin 0 -> 4300 bytes static/image/icon-detail.png | Bin 0 -> 12863 bytes static/image/icon-other-serve.png | Bin 0 -> 70638 bytes static/image/icon-question.png | Bin 0 -> 6228 bytes static/image/icon-search.png | Bin 2116 -> 4162 bytes static/image/icon-triangle-down.png | Bin 0 -> 3123 bytes static/image/serve-icon.png | Bin 0 -> 10435 bytes static/image/serve-second-icon.png | Bin 0 -> 1825 bytes uni.scss | 2 +- 33 files changed, 1198 insertions(+), 471 deletions(-) create mode 100644 components/serve/serveModuleCard.vue create mode 100644 components/serve/serveModuleView.vue create mode 100644 components/serve/serveSecondModuleCard.vue create mode 100644 pages_order/thesis/thesisCard.vue create mode 100644 pages_order/thesis/thesisInfoView.vue create mode 100644 static/image/bg-icon.png create mode 100644 static/image/bg-index.png create mode 100644 static/image/bg-nav.png create mode 100644 static/image/bg-serve-1.png create mode 100644 static/image/bg-serve-2.png create mode 100644 static/image/bg-serve.png create mode 100644 static/image/card-bg-icon.png create mode 100644 static/image/icon-arrow-right.png create mode 100644 static/image/icon-back.png create mode 100644 static/image/icon-detail.png create mode 100644 static/image/icon-other-serve.png create mode 100644 static/image/icon-question.png create mode 100644 static/image/icon-triangle-down.png create mode 100644 static/image/serve-icon.png create mode 100644 static/image/serve-second-icon.png diff --git a/App.vue b/App.vue index 651fe9f..dbd4d59 100644 --- a/App.vue +++ b/App.vue @@ -14,7 +14,7 @@ @import url("common.scss"); /*每个页面公共css */ body{ - background-color: #f7f7f7; + background-color: #FFFFFF; font-size: 30rpx; } .page{ diff --git a/common.scss b/common.scss index bf93253..a7c80b9 100644 --- a/common.scss +++ b/common.scss @@ -42,7 +42,6 @@ .page__view { width: 100vw; min-height: 100vh; - background-color: #FAFBFC; position: relative; font-family: PingFang SC; font-weight: 400; diff --git a/components/base/navbar.vue b/components/base/navbar.vue index 34d6fee..30cac20 100644 --- a/components/base/navbar.vue +++ b/components/base/navbar.vue @@ -1,40 +1,48 @@