From 53119f16e3bcd44adaaace4420c28d2dd6aec5c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=96=87=E5=8F=AF?= <1041367524@qq.com> Date: Tue, 10 May 2022 17:59:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=9A=E8=AF=9D=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/modules/chat.js | 23 ++++ src/views/chat/index.vue | 218 +++++++++++++++++++++++++++++++++++++ 2 files changed, 241 insertions(+) create mode 100644 src/router/modules/chat.js create mode 100644 src/views/chat/index.vue diff --git a/src/router/modules/chat.js b/src/router/modules/chat.js new file mode 100644 index 0000000..39b4356 --- /dev/null +++ b/src/router/modules/chat.js @@ -0,0 +1,23 @@ +export default [ + { + path: '/chat', + name: 'ChatManagement', + component: () => import('@/layouts/default.vue'), + meta: { + title: '客服会话', + icon: 'wechat-2-fill', + layout: true, + }, + children: [ + { + path: 'session', + name: 'ChatSession', + component: () => import('@/views/chat/index.vue'), + meta: { + title: '会话列表', + icon: 'wechat-2-fill', + }, + }, + ], + }, +]; diff --git a/src/views/chat/index.vue b/src/views/chat/index.vue new file mode 100644 index 0000000..a53bb4c --- /dev/null +++ b/src/views/chat/index.vue @@ -0,0 +1,218 @@ + + + + +