From 94a061691cc85c657dd9f0f3bbab287c301661a4 Mon Sep 17 00:00:00 2001 From: Echo <1711788888@qq.com> Date: Fri, 12 Sep 2025 21:52:45 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E4=BC=98=E5=8C=96cdk=E7=AE=A1=E7=90=86?= =?UTF-8?q?=EF=BC=8C=E6=96=B0=E5=A2=9E=E5=9F=9F=E5=90=8D=E7=AE=A1=E7=90=86?= =?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/domain.js | 44 +++ src/pathInfo.json | 5 +- src/view/cdk/cdkManage.vue | 115 ++++++++ src/view/cdk/index.vue | 1 - src/view/domain/index.vue | 394 ++++++++++++++++++++++++++ src/view/goods/article/bulkUpload.vue | 0 6 files changed, 557 insertions(+), 2 deletions(-) create mode 100644 src/api/domain.js create mode 100644 src/view/domain/index.vue create mode 100644 src/view/goods/article/bulkUpload.vue diff --git a/src/api/domain.js b/src/api/domain.js new file mode 100644 index 0000000..0dcc0c8 --- /dev/null +++ b/src/api/domain.js @@ -0,0 +1,44 @@ +import service from '@/utils/request' + +export const list = (params) => { + return service({ + url: '/domain/list', + method: 'get', + params + }) +} + +// addDomain +export const addDomain = (data) => { + return service({ + url: '/domain', + method: 'post', + data + }) +} + +// deleteDomain +export const deleteDomain = (data) => { + return service({ + url: '/domain', + method: 'delete', + data + }) +} + +// updateDomain +export const updateDomain = (data) => { + return service({ + url: '/domain', + method: 'put', + data + }) +} + +// getDomain +export const getDomain = (id) => { + return service({ + url: '/domain/' + id, + method: 'get', + }) +} \ No newline at end of file diff --git a/src/pathInfo.json b/src/pathInfo.json index 6578db7..23ba649 100644 --- a/src/pathInfo.json +++ b/src/pathInfo.json @@ -5,7 +5,8 @@ "/src/view/bot/bot/botForm.vue": "BotForm", "/src/view/category/category/category.vue": "Category", "/src/view/category/category/categoryForm.vue": "CategoryForm", - "/src/view/cdk/index.vue": "CdkManagement", + "/src/view/cdk/cdkManage.vue": "CdkManage", + "/src/view/cdk/index.vue": "CdkLibraryManagement", "/src/view/dashboard/components/banner.vue": "Banner", "/src/view/dashboard/components/card.vue": "Card", "/src/view/dashboard/components/charts-content-numbers.vue": "ChartsContentNumbers", @@ -16,6 +17,7 @@ "/src/view/dashboard/components/table.vue": "Table", "/src/view/dashboard/components/wiki.vue": "Wiki", "/src/view/dashboard/index.vue": "Dashboard", + "/src/view/domain/index.vue": "Domain", "/src/view/error/index.vue": "Error", "/src/view/error/reload.vue": "Reload", "/src/view/example/breakpoint/breakpoint.vue": "BreakPoint", @@ -95,6 +97,7 @@ "/src/view/user/user/loginLog.vue": "LoginLog", "/src/view/user/user/teacherApply.vue": "TeacherApply", "/src/view/user/user/vipUser.vue": "VipUser", + "/src/view/user/user/with.vue": "WithdrawManagement", "/src/plugin/announcement/form/info.vue": "InfoForm", "/src/plugin/announcement/view/info.vue": "Info", "/src/plugin/customerservice/view/chat/index.vue": "ServiceMain", diff --git a/src/view/cdk/cdkManage.vue b/src/view/cdk/cdkManage.vue index 7d4e3c4..01d9b84 100644 --- a/src/view/cdk/cdkManage.vue +++ b/src/view/cdk/cdkManage.vue @@ -124,6 +124,12 @@