From 360f3cfe305c4b6fa4098808a8171938fac978ad Mon Sep 17 00:00:00 2001 From: liutong <836164388@qq.com> Date: Wed, 2 Apr 2025 11:19:15 +0800 Subject: [PATCH] =?UTF-8?q?feat(common):=20=E6=B7=BB=E5=8A=A0=E8=81=8A?= =?UTF-8?q?=E5=A4=A9=E8=AE=B0=E5=BD=95=E5=88=97=E8=A1=A8=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E5=B9=B6=E6=89=A9=E5=B1=95=E6=88=91=E7=9A=84=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增聊天记录列表页面 im_chat_info.vue - 在我的页面添加我的消息入口 - 实现我的消息页面跳转功能 --- pages/common/im_chat_info.vue | 141 ++++++++++++++++++++++++++++++++++ pages/market/my/index.vue | 19 ++++- 2 files changed, 159 insertions(+), 1 deletion(-) create mode 100644 pages/common/im_chat_info.vue diff --git a/pages/common/im_chat_info.vue b/pages/common/im_chat_info.vue new file mode 100644 index 0000000..e11e705 --- /dev/null +++ b/pages/common/im_chat_info.vue @@ -0,0 +1,141 @@ + + + + + + \ No newline at end of file diff --git a/pages/market/my/index.vue b/pages/market/my/index.vue index 7d23394..13f7106 100644 --- a/pages/market/my/index.vue +++ b/pages/market/my/index.vue @@ -71,6 +71,16 @@ 企业信息 + + + 我的考勤 + + + + + 我的消息 + + @@ -186,7 +196,14 @@ export default { uni.navigateTo({ url: '/pages/market/my/set_up' }) - } + }, + + //跳转页面-我的消息 + openViewMyMessage(){ + uni.navigateTo({ + url: '/pages/common/my_message' + }) + }, } }