diff --git a/src/api/logs.js b/src/api/logs.js index 4f76ba7..e65e1dc 100644 --- a/src/api/logs.js +++ b/src/api/logs.js @@ -68,4 +68,10 @@ export const getList = (query) => { method: 'get', params:query }) +} +export const getConditionData = () => { + return request({ + url: '/api/blade-log/api/conditionData', + method: 'get', + }) } \ No newline at end of file diff --git a/src/api/plugin/workflow/form.js b/src/api/plugin/workflow/form.js index 0285615..a371e44 100644 --- a/src/api/plugin/workflow/form.js +++ b/src/api/plugin/workflow/form.js @@ -100,6 +100,13 @@ export const getTaskTypeData = (query) => { params:query }) } +// 任务等级 +export const getTaskLevel= () => { + return request({ + url: '/api/blade-system/dict-biz/dictionary?code=task_level', + method: 'get', + }) +} // 系统名称/数据库 export const getTaskAndDataBase = (query) => { return request({ diff --git a/src/api/wel/wel.js b/src/api/wel/wel.js index c781735..82b8f8e 100644 --- a/src/api/wel/wel.js +++ b/src/api/wel/wel.js @@ -14,3 +14,17 @@ export const getFlowListMonth = () => { method: 'get', }) } +// 任务耗时 +export const getFlowTakeTime = () => { + return request({ + url: `${prefix}/flowTakeTime`, + method: 'get', + }) +} +// 类型统计 +export const getFlowListType = () => { + return request({ + url: `${prefix}/flowListType`, + method: 'get', + }) +} \ No newline at end of file diff --git a/src/const/journal/journal.js b/src/const/journal/journal.js index fdd5963..38692da 100644 --- a/src/const/journal/journal.js +++ b/src/const/journal/journal.js @@ -32,7 +32,7 @@ export const tableOption = { { type: "input", label: "操作模块", - prop: "aa", + prop: "model", align: "left", overHidden: true, }, diff --git a/src/views/journal/index.vue b/src/views/journal/index.vue index 934eb48..e96aa1f 100644 --- a/src/views/journal/index.vue +++ b/src/views/journal/index.vue @@ -4,41 +4,41 @@