修改手动创建任务和子路径

This commit is contained in:
闫晓茹 2024-06-18 18:19:57 +08:00
parent 7b75ee9ce3
commit c9f870ca34
6 changed files with 1649 additions and 1028 deletions

View File

@ -28,7 +28,7 @@ export function triggerConditionedit(data) {
//删除修改触发条件id
export function triggerConditiondel(ids) {
return request({
url: `/system/triggerCondition/${ids}`,
url: `/system/specialDiseaseRoute/${ids}`,
method: 'delete'
})
}

View File

@ -13,6 +13,13 @@ export function list(parentDictCode) {
method: 'get',
})
}
// 查询触发条件
export function triggerConditionList(routeId) {
return request({
url: `/system/triggerCondition/triggerConditionList?routeId=${routeId}`,
method: 'get',
})
}
// 任务类型
export function selectTaskTypeList() {

View File

@ -16,6 +16,14 @@ export function getSpecialDiseaseRoute(id) {
method: 'get'
})
}
// 查询子路径
export function getById(id) {
return request({
url: '/system/specialDiseaseRoute/getById/' + id,
method: 'get'
})
}
// 新增专病路径信息
export function addSpecialDiseaseRoute(data) {

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff