From afb124ee19d1aa9035159556c0ea99e3a8719bb4 Mon Sep 17 00:00:00 2001 From: duanshuwen Date: Wed, 15 Oct 2025 21:35:54 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E6=9B=B4=E5=A4=9A?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/chat/ChatQuickAccess/index.vue | 17 ++-- .../components/module/MoreService/index.vue | 99 +++++++++++++++++++ .../module/MoreService/styles/index.scss | 29 ++++++ src/pages/index/index.vue | 4 + src/static/scss/border.scss | 4 + src/static/scss/colors.scss | 4 + src/static/scss/line-height.scss | 8 ++ 7 files changed, 159 insertions(+), 6 deletions(-) create mode 100644 src/pages/index/components/module/MoreService/index.vue create mode 100644 src/pages/index/components/module/MoreService/styles/index.scss diff --git a/src/pages/index/components/chat/ChatQuickAccess/index.vue b/src/pages/index/components/chat/ChatQuickAccess/index.vue index 4db2fbb..eb4f04c 100644 --- a/src/pages/index/components/chat/ChatQuickAccess/index.vue +++ b/src/pages/index/components/chat/ChatQuickAccess/index.vue @@ -19,36 +19,41 @@ + + diff --git a/src/pages/index/components/module/MoreService/styles/index.scss b/src/pages/index/components/module/MoreService/styles/index.scss new file mode 100644 index 0000000..413b694 --- /dev/null +++ b/src/pages/index/components/module/MoreService/styles/index.scss @@ -0,0 +1,29 @@ +.popup-content { + background-color: #f5f7fa; + border-radius: 15px 15px 0 0; + padding-bottom: Max(env(safe-area-inset-bottom), 12px) !important; +} + +.list { + border-radius: 15px; +} + +.item { + gap: 20px; + + &:last-child { + border-bottom: none; + } +} + +.left { + width: 24px; + height: 24px; + margin-right: 12px; +} + +.right { + background-color: #2d91ff; + border-radius: 5px; + padding: 6px; +} diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index e724bff..0ab38cf 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -11,6 +11,9 @@ @close="handleCalendarClose" @select="handleDateSelect" /> + + +