From d1e95780064efef6f0862094807a4e94cedde799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=AB=E6=99=93=E8=8C=B9?= <1935832701@qq.com> Date: Thu, 20 Jun 2024 08:54:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=90=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/specialDiseaseNode.js | 8 + .../system/ManageNodeInformation/index.vue | 883 ++++++++++++++++-- src/views/system/followupdetails/index.vue | 791 +++++++++------- src/views/system/specialDiseaseNode/index.vue | 2 +- 4 files changed, 1257 insertions(+), 427 deletions(-) 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 @@