From b6945acf9b6717f8bc44623b3acf23825854a101 Mon Sep 17 00:00:00 2001 From: BAKEYi <16298417+bakeyi@user.noreply.gitee.com> Date: Thu, 28 May 2026 10:41:27 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E3=80=81=E5=85=AC=E5=91=8A?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E4=B8=8E=E8=AF=A6=E6=83=85=E3=80=81=E4=B8=A4?= =?UTF-8?q?=E4=B8=AA=E7=B2=BE=E9=80=89=E3=80=81=E6=88=91=E7=9A=84=E6=94=B6?= =?UTF-8?q?=E8=97=8F=E3=80=81=E6=80=BB=E6=90=9C=E7=B4=A2=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 6 + pages/home/components/notice-card.vue | 101 +++++++ pages/home/home.vue | 398 +++++++++++++++++++++----- pages/jingxuan/selected-brands.vue | 42 ++- pages/jingxuan/selected-skills.vue | 4 +- pages/my/myFavorite.vue | 9 +- pages/notice/detail.vue | 3 - pages/notice/notice_list.vue | 164 +++-------- pages/search_common/search.vue | 363 +++++++++++++++++++++++ 9 files changed, 880 insertions(+), 210 deletions(-) create mode 100644 pages/home/components/notice-card.vue create mode 100644 pages/search_common/search.vue diff --git a/pages.json b/pages.json index e228fa3..029437b 100644 --- a/pages.json +++ b/pages.json @@ -227,6 +227,12 @@ "navigationStyle": "custom" } }, + { + "path": "pages/search_common/search", + "style": { + "navigationStyle": "custom" + } + }, { "path": "pages/settings/index", "style": { diff --git a/pages/home/components/notice-card.vue b/pages/home/components/notice-card.vue new file mode 100644 index 0000000..bfcbdf0 --- /dev/null +++ b/pages/home/components/notice-card.vue @@ -0,0 +1,101 @@ + + + + + \ No newline at end of file diff --git a/pages/home/home.vue b/pages/home/home.vue index 84065dd..5a3ba8f 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -3,7 +3,7 @@ - + + + + + + + 温馨提示 + + + + 发布服务请完善以下资料: + + + + + + + 营业时间未配置 + 请完善店铺的营业时间 + + + 去配置 + + + + + + + 服务技能未配置 + 请完善服务技能 + + + 去配置 + + + + + + + {{ userInfo.id_type === -1 ? '资质认证中' : '资质未认证' }} + 请完成资质认证 + + + + {{ userInfo.id_type === -1 ? '查看进度' : '去认证' }} + + + + + + + 知道了 + + + + + + + + {{ isSettled ? '完成认证,开启您的接单之路' : '入驻美融融,生意更轻松' }} + {{ isSettled ? '去认证' : '去入驻' }} + + + + @@ -87,15 +151,6 @@ - - - - {{ isSettled ? '完成认证,开启您的接单之路' : '入驻美融融,生意更轻松' }} - {{ isSettled ? '去认证' : '去入驻' }} - - - - @@ -143,6 +198,9 @@ + + \ No newline at end of file