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 @@