From b7f736f586d0e841011967367c69cd062fcc48b0 Mon Sep 17 00:00:00 2001 From: SjS Date: Tue, 1 Apr 2025 18:02:41 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=95=85=E9=9A=9C=E7=94=B3=E6=8A=A5?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=EF=BC=8C=E5=B9=BF=E5=91=8A=EF=BC=8C=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E5=85=AC=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/bst/ad.js | 44 +++++ src/views/bst/ad/index.vue | 340 +++++++++++++++++++++++++++++++++++++ 2 files changed, 384 insertions(+) create mode 100644 src/api/bst/ad.js create mode 100644 src/views/bst/ad/index.vue diff --git a/src/api/bst/ad.js b/src/api/bst/ad.js new file mode 100644 index 0000000..a0f057e --- /dev/null +++ b/src/api/bst/ad.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询广告列表 +export function listAd(query) { + return request({ + url: '/bst/ad/list', + method: 'get', + params: query + }) +} + +// 查询广告详细 +export function getAd(adId) { + return request({ + url: '/bst/ad/' + adId, + method: 'get' + }) +} + +// 新增广告 +export function addAd(data) { + return request({ + url: '/bst/ad', + method: 'post', + data: data + }) +} + +// 修改广告 +export function updateAd(data) { + return request({ + url: '/bst/ad', + method: 'put', + data: data + }) +} + +// 删除广告 +export function delAd(adId) { + return request({ + url: '/bst/ad/' + adId, + method: 'delete' + }) +} diff --git a/src/views/bst/ad/index.vue b/src/views/bst/ad/index.vue new file mode 100644 index 0000000..0f5d6d9 --- /dev/null +++ b/src/views/bst/ad/index.vue @@ -0,0 +1,340 @@ + + + From 7aef6800458950285679dd1b1f23c3b26058b996 Mon Sep 17 00:00:00 2001 From: SjS Date: Wed, 2 Apr 2025 20:06:48 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=AE=A2=E6=9C=8D=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/bst/customerService.js | 44 +++ src/views/bst/customerService/index.vue | 387 ++++++++++++++++++++++++ 2 files changed, 431 insertions(+) create mode 100644 src/api/bst/customerService.js create mode 100644 src/views/bst/customerService/index.vue diff --git a/src/api/bst/customerService.js b/src/api/bst/customerService.js new file mode 100644 index 0000000..0d6b88f --- /dev/null +++ b/src/api/bst/customerService.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询客服列表 +export function listCustomerService(query) { + return request({ + url: '/bst/customerService/list', + method: 'get', + params: query + }) +} + +// 查询客服详细 +export function getCustomerService(id) { + return request({ + url: '/bst/customerService/' + id, + method: 'get' + }) +} + +// 新增客服 +export function addCustomerService(data) { + return request({ + url: '/bst/customerService', + method: 'post', + data: data + }) +} + +// 修改客服 +export function updateCustomerService(data) { + return request({ + url: '/bst/customerService', + method: 'put', + data: data + }) +} + +// 删除客服 +export function delCustomerService(id) { + return request({ + url: '/bst/customerService/' + id, + method: 'delete' + }) +} diff --git a/src/views/bst/customerService/index.vue b/src/views/bst/customerService/index.vue new file mode 100644 index 0000000..4469b1d --- /dev/null +++ b/src/views/bst/customerService/index.vue @@ -0,0 +1,387 @@ + + +