diff --git a/src/api/system/specialDiseaseNode.js b/src/api/system/specialDiseaseNode.js index 9f1d016..e6ed3e9 100644 --- a/src/api/system/specialDiseaseNode.js +++ b/src/api/system/specialDiseaseNode.js @@ -7,6 +7,14 @@ export function taskPartitionList(taskTypeId) { method: 'get', }) } +export function triggerCondition(data) { + return request({ + url: `/system/triggerCondition/edit`, + method: 'put', + data + }) +} + export function list(parentDictCode) { return request({ url: `/system/dict/data/list?parentDictCode=${parentDictCode}`, diff --git a/src/views/system/ManageNodeInformation/index.vue b/src/views/system/ManageNodeInformation/index.vue index 01d7ad7..42ebe28 100644 --- a/src/views/system/ManageNodeInformation/index.vue +++ b/src/views/system/ManageNodeInformation/index.vue @@ -1,34 +1,16 @@