From 57fe2c725650dba636b8d82029f184ab6554a1a1 Mon Sep 17 00:00:00 2001 From: kaeery <3491123437@qq.com> Date: Fri, 21 Mar 2025 18:08:35 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E7=B3=BB=E7=BB=9F=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E3=80=91=20=E6=96=B0=E5=A2=9E#=20=E5=AE=A2=E6=9C=8D=E7=AE=A1?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/setting/operation_manager.ts | 20 ++++ src/views/setting/operation_manager/edit.vue | 96 ++++++++++++++++++ src/views/setting/operation_manager/index.vue | 97 +++++++++++++++++++ 3 files changed, 213 insertions(+) create mode 100644 src/api/setting/operation_manager.ts create mode 100644 src/views/setting/operation_manager/edit.vue create mode 100644 src/views/setting/operation_manager/index.vue diff --git a/src/api/setting/operation_manager.ts b/src/api/setting/operation_manager.ts new file mode 100644 index 0000000..3f7171f --- /dev/null +++ b/src/api/setting/operation_manager.ts @@ -0,0 +1,20 @@ +import request from '@/utils/request' + +export function addOperation(params: any) { + return request.post({ url: '/customerService/add', params }) +} +export function editOperation(params: any) { + return request.post({ url: '/customerService/edit', params }) +} +export function operationDetail(params: any) { + return request.get({ url: '/customerService/detail', params }) +} +export function getOperationList() { + return request.get({ url: '/customerService/list' }) +} +export function delOperation(params: any) { + return request.post({ url: '/customerService/del', params }) +} +export function OperationStatus(params: any) { + return request.post({ url: '/customerService/enable', params }) +} diff --git a/src/views/setting/operation_manager/edit.vue b/src/views/setting/operation_manager/edit.vue new file mode 100644 index 0000000..2590975 --- /dev/null +++ b/src/views/setting/operation_manager/edit.vue @@ -0,0 +1,96 @@ + + + + + + + + + + + + + 开启 + 关闭 + + + + + + + diff --git a/src/views/setting/operation_manager/index.vue b/src/views/setting/operation_manager/index.vue new file mode 100644 index 0000000..eac0d55 --- /dev/null +++ b/src/views/setting/operation_manager/index.vue @@ -0,0 +1,97 @@ + + + + + + + + 新增客服 + + + + + + + + + + + + + 编辑 + + 删除 + + + + + + + + + + + + + +