From 828f3a45109b31b746e0420f5017283110560228 Mon Sep 17 00:00:00 2001 From: huxuejian Date: Fri, 10 Apr 2026 17:00:54 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=A1=B5=E9=9D=A2=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home/work-home.vue | 27 +++++---- .../components/ai-assistant-buttons.vue | 2 +- pages/work/team/list/notice-popup.vue | 59 +++++++++++++++++++ pages/work/team/list/team-list.vue | 21 +++++-- static/icon-owner.svg | 1 + static/teammate.svg | 1 + static/work/icon-service.svg | 1 + static/work/icon-team.svg | 1 + 8 files changed, 96 insertions(+), 17 deletions(-) create mode 100644 pages/work/team/list/notice-popup.vue create mode 100644 static/icon-owner.svg create mode 100644 static/teammate.svg create mode 100644 static/work/icon-service.svg create mode 100644 static/work/icon-team.svg diff --git a/pages/home/work-home.vue b/pages/home/work-home.vue index aa29d21..8761ab4 100644 --- a/pages/home/work-home.vue +++ b/pages/home/work-home.vue @@ -48,9 +48,13 @@ 邀请患者 - - - 更多 + + + 我的团队 + + + + 联系客服 @@ -179,15 +183,14 @@ const certStatus = computed(() => doctorInfo.value?.verifyStatus ? certConfig[do // 邀请患者 const invitePatient = withInfo(() => uni.navigateTo({ url: '/pages/work/team/invite/invite-patient' })); -const handleMore = withInfo(() => { - uni.showActionSheet({ - itemList: ["我的团队", "联系客服"], //, "关于" - success: (res) => { - const url = res.tapIndex === 0 ? '/pages/work/team/list/team-list' : '/pages/work/service/contact-service'; - uni.navigateTo({ url }); - }, - }); -}) + +function toTeams() { + uni.navigateTo({ url: '/pages/work/team/list/team-list' }); +} + +function toContactService() { + uni.navigateTo({ url: '/pages/work/service/contact-service' }); +} function changeFilterData(data) { filterData.value = data; diff --git a/pages/message/components/ai-assistant-buttons.vue b/pages/message/components/ai-assistant-buttons.vue index 768322b..c9caf34 100644 --- a/pages/message/components/ai-assistant-buttons.vue +++ b/pages/message/components/ai-assistant-buttons.vue @@ -77,7 +77,7 @@ const buttons = ref([ // }, { id: "supplementRecord", - text: "补充病历", + text: "补充档案", icon: "/static/icon/buchong.png", loading: false, }, diff --git a/pages/work/team/list/notice-popup.vue b/pages/work/team/list/notice-popup.vue new file mode 100644 index 0000000..e8567e2 --- /dev/null +++ b/pages/work/team/list/notice-popup.vue @@ -0,0 +1,59 @@ + + + + + \ No newline at end of file diff --git a/pages/work/team/list/team-list.vue b/pages/work/team/list/team-list.vue index c2e44ef..5ffd82c 100644 --- a/pages/work/team/list/team-list.vue +++ b/pages/work/team/list/team-list.vue @@ -9,9 +9,9 @@ {{ i.name }} - 创建 - 加入 + + @@ -31,6 +31,7 @@ +