From 0355d018b6a3134d023a59869e55ed6f589f9081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=AB=E6=99=93=E8=8C=B9?= <1935832701@qq.com> Date: Mon, 27 Feb 2023 15:55:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E6=9C=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/groupQrCodeInfo.js | 51 ++ src/views/system/groupQrCodeInfo/index.vue | 796 +++++++++++++++++++++ 2 files changed, 847 insertions(+) create mode 100644 src/api/system/groupQrCodeInfo.js create mode 100644 src/views/system/groupQrCodeInfo/index.vue diff --git a/src/api/system/groupQrCodeInfo.js b/src/api/system/groupQrCodeInfo.js new file mode 100644 index 0000000..e9a21f9 --- /dev/null +++ b/src/api/system/groupQrCodeInfo.js @@ -0,0 +1,51 @@ +import request from '@/utils/request' + +// 查询在线客服列表 +export function listGroupQrCodeInfo(query) { + return request({ + url: '/system/groupQrCodeInfo/list', + method: 'get', + params: query + }) +} + +// 查询在线客服详细 +export function getGroupQrCodeInfo(id) { + return request({ + url: '/system/groupQrCodeInfo/' + id, + method: 'get' + }) +} + +// 新增在线客服 +export function addGroupQrCodeInfo(data) { + return request({ + url: '/system/groupQrCodeInfo/add', + method: 'post', + data: data + }) +} +export function getListByUser(query) { + return request({ + url: '/system/station/list', + method: 'GET', + params: query + }) +} + +// 修改在线客服 +export function updateGroupQrCodeInfo(data) { + return request({ + url: '/system/groupQrCodeInfo/edit', + method: 'post', + data: data + }) +} + +// 删除在线客服 +export function delGroupQrCodeInfo(id) { + return request({ + url: '/system/groupQrCodeInfo/' + id, + method: 'delete' + }) +} diff --git a/src/views/system/groupQrCodeInfo/index.vue b/src/views/system/groupQrCodeInfo/index.vue new file mode 100644 index 0000000..0829a65 --- /dev/null +++ b/src/views/system/groupQrCodeInfo/index.vue @@ -0,0 +1,796 @@ + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + 新增 + + + 修改 + + + 删除 + + + + + + + + + + + + + + + {{ + scope.row.customerServiceType == "NURSE_AGENCY_CUSTOMER" + ? "护理机构客服" + : "" + }} + {{ + scope.row.customerServiceType == "SYSTEM_CUSTOMER" ? "系统客服" : "" + }} + + + + + + 修改 + 删除 + + + + + + + + + + + + + + + + + + + + + + + {{ form.nurseStationName }} + {{ form.nurseStationName }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ item.nurseStationName }} + {{ item.nurseStationName }} + + + + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + + + + + + + + + + + + + + + + +