From d4635349a65484e54a61e12cd157eb8c85ece8d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CDaisyWu=E2=80=9D?= <“18682150237@163.com”> Date: Wed, 8 Jan 2025 17:50:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=201=E8=B0=83=E6=95=B4=E9=83=A8=E5=88=86?= =?UTF-8?q?=E5=91=BD=E5=90=8D=202=E6=96=B0=E5=A2=9E=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E5=85=AC=E5=91=8A=E9=A1=B5=E9=9D=A2UI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages.json | 14 ++++++- src/pages/info-publish/announce-notice.vue | 40 ++++++++++++------- src/pages/info-publish/basic-info.vue | 0 .../{notice.vue => notice-manage.vue} | 0 4 files changed, 38 insertions(+), 16 deletions(-) create mode 100644 src/pages/info-publish/basic-info.vue rename src/pages/info-publish/{notice.vue => notice-manage.vue} (100%) diff --git a/src/pages.json b/src/pages.json index cd9bf80..de9d834 100644 --- a/src/pages.json +++ b/src/pages.json @@ -81,6 +81,18 @@ }, "needLogin": false }, + { + "path": "pages/info-publish/announce-notice", + "type": "page", + "layout": "default", + "style": { + "navigationStyle": "custom" + } + }, + { + "path": "pages/info-publish/basic-info", + "type": "page" + }, { "path": "pages/info-publish/info-publish", "type": "page" @@ -94,7 +106,7 @@ } }, { - "path": "pages/info-publish/notice", + "path": "pages/info-publish/notice-manage", "type": "page", "layout": "default", "style": { diff --git a/src/pages/info-publish/announce-notice.vue b/src/pages/info-publish/announce-notice.vue index 25a3d34..eb6aa66 100644 --- a/src/pages/info-publish/announce-notice.vue +++ b/src/pages/info-publish/announce-notice.vue @@ -41,9 +41,9 @@ -
- -
+ + + @@ -153,18 +153,28 @@ text-align: right; } - .bottom-button { - padding: 15px; - background: #ff4d4f; - } + .bottom-btns { + position: fixed; + right: 0; + bottom: 0; + left: 0; + display: flex; + padding: 10px 15px; + background-color: #fff; + box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05); - .next-step { - width: 100%; - height: 44px; - font-size: 16px; - color: #fff; - background: #4080ff; - border: none; - border-radius: 16px; + .nextstep-btn { + flex: 1; + height: 40px; + font-size: 14px; + line-height: 40px; + text-align: center; + border-radius: 4px; + } + + .nextstep-btn { + color: #fff; + background-color: #007aff; + } } diff --git a/src/pages/info-publish/basic-info.vue b/src/pages/info-publish/basic-info.vue new file mode 100644 index 0000000..e69de29 diff --git a/src/pages/info-publish/notice.vue b/src/pages/info-publish/notice-manage.vue similarity index 100% rename from src/pages/info-publish/notice.vue rename to src/pages/info-publish/notice-manage.vue