From 372405267e83d7fa0719a028e99e013e200babaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Wed, 27 Mar 2024 15:57:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 1 + src/api/system/specialDiseaseNode.js | 23 ++++++ src/views/system/components/wangEditor.vue | 77 ++++++++++++++++++- src/views/system/specialDiseaseNode/index.vue | 43 +++++++++-- 4 files changed, 135 insertions(+), 9 deletions(-) create mode 100644 src/api/system/specialDiseaseNode.js diff --git a/package.json b/package.json index a9d1549..02c4f2f 100644 --- a/package.json +++ b/package.json @@ -53,6 +53,7 @@ "nprogress": "0.2.0", "quill": "1.3.7", "screenfull": "5.0.2", + "snabbdom": "^3.6.2", "sortablejs": "1.10.2", "vue": "2.6.12", "vue-count-to": "1.0.13", diff --git a/src/api/system/specialDiseaseNode.js b/src/api/system/specialDiseaseNode.js new file mode 100644 index 0000000..46fea71 --- /dev/null +++ b/src/api/system/specialDiseaseNode.js @@ -0,0 +1,23 @@ +import request from '@/utils/request' + +// /system/partition/taskPartitionList 任务细分 +export function taskPartitionList(taskTypeId) { + return request({ + url: `/system/partition/taskPartitionList?taskTypeId=${taskTypeId}`, + method: 'get', + }) +} +///system/taskType/selectTaskTypeList 任务类型 +export function selectTaskTypeList() { + return request({ + url: '/system/taskType/selectTaskTypeList', + method: 'get', + }) +} +// /system/taskStatus/taskStatusDictList 任务状态 +export function taskStatusDictList() { + return request({ + url: '/system/taskStatus/taskStatusDictList', + method: 'get', + }) +} \ No newline at end of file diff --git a/src/views/system/components/wangEditor.vue b/src/views/system/components/wangEditor.vue index b7a5c87..ee132ca 100644 --- a/src/views/system/components/wangEditor.vue +++ b/src/views/system/components/wangEditor.vue @@ -11,10 +11,12 @@