From b0d875fe92753ea3435f07b6fe32e603e75fcda5 Mon Sep 17 00:00:00 2001 From: zoujing Date: Thu, 12 Mar 2026 16:19:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B6=88=E6=81=AF=E7=BB=84=E4=BB=B6=20?= =?UTF-8?q?=E5=9B=9E=E7=AD=94=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/model/ChatModel.js | 2 + .../components/chat/ChatMainList/index.vue | 6 +++ .../components/chat/NoticeMessage/index.vue | 31 +++++++++++ .../chat/NoticeMessage/notice_bg_img.png | Bin 0 -> 182486 bytes .../module/AnswerComponent/index.vue | 50 ++++++++++++++++++ .../components/module/NoticeMessage/index.vue | 0 .../module/OpenMapComponent/index.vue | 2 +- src/static/scss/height.scss | 4 ++ src/static/scss/margin.scss | 4 ++ 9 files changed, 98 insertions(+), 1 deletion(-) create mode 100644 src/pages/index/components/chat/NoticeMessage/index.vue create mode 100644 src/pages/index/components/chat/NoticeMessage/notice_bg_img.png create mode 100644 src/pages/index/components/module/AnswerComponent/index.vue delete mode 100644 src/pages/index/components/module/NoticeMessage/index.vue diff --git a/src/model/ChatModel.js b/src/model/ChatModel.js index faecf9c..3cdbd9a 100644 --- a/src/model/ChatModel.js +++ b/src/model/ChatModel.js @@ -25,6 +25,8 @@ export const CompName = { callSurveyQuestionnaire: "callSurveyQuestionnaire", // 打开地图卡片 openMapCard: "openMapCard", + // 回答卡片 + answerCard: "answerCard", }; /// 发送的指令类型 diff --git a/src/pages/index/components/chat/ChatMainList/index.vue b/src/pages/index/components/chat/ChatMainList/index.vue index b1a712f..892906d 100644 --- a/src/pages/index/components/chat/ChatMainList/index.vue +++ b/src/pages/index/components/chat/ChatMainList/index.vue @@ -10,6 +10,7 @@ :scroll-with-animation="true" @scroll="handleScroll" @scrolltolower="handleScrollToLower"> + + + + + \ No newline at end of file diff --git a/src/pages/index/components/module/NoticeMessage/index.vue b/src/pages/index/components/module/NoticeMessage/index.vue deleted file mode 100644 index e69de29..0000000 diff --git a/src/pages/index/components/module/OpenMapComponent/index.vue b/src/pages/index/components/module/OpenMapComponent/index.vue index a62824c..9e2b0a4 100644 --- a/src/pages/index/components/module/OpenMapComponent/index.vue +++ b/src/pages/index/components/module/OpenMapComponent/index.vue @@ -9,7 +9,7 @@ - 打开导览地图 + 打开导览地图 距你 {{ distance }} · 步行 {{ walk }} diff --git a/src/static/scss/height.scss b/src/static/scss/height.scss index 69a5677..ffbf40e 100644 --- a/src/static/scss/height.scss +++ b/src/static/scss/height.scss @@ -45,3 +45,7 @@ .h-80 { height: 80px; } + +.h-96 { + height: 96px; +} diff --git a/src/static/scss/margin.scss b/src/static/scss/margin.scss index 320c9dd..782e8ca 100644 --- a/src/static/scss/margin.scss +++ b/src/static/scss/margin.scss @@ -130,3 +130,7 @@ .ml-30 { margin-left: 30px; } + +.mr-88 { + margin-right: 88px; +} \ No newline at end of file