From d5c1bfe913f81713f6ea2e42d5ce210d12c68b88 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 11 Aug 2022 14:24:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=E5=8F=B0=E8=B4=A6?= =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/extra/AppWorkflowManage/workflowLogs.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/extra/AppWorkflowManage/workflowLogs.vue b/packages/extra/AppWorkflowManage/workflowLogs.vue index 787290e7..fade37d7 100644 --- a/packages/extra/AppWorkflowManage/workflowLogs.vue +++ b/packages/extra/AppWorkflowManage/workflowLogs.vue @@ -9,12 +9,11 @@ @change="page.current=1,getTableData()"/> - @@ -46,8 +45,9 @@ export default { page: {current: 1, size: 10, total: 0}, tableData: [], colConfigs: [ - {prop: "name", label: "流程名称"}, - {prop: "app", label: "对应应用"} + {prop: "pid", label: "流程ID"}, + {prop: "bid", label: "业务ID"}, + {prop: "createUserName", label: "创建者"}, ], dialog: false, process: null @@ -55,7 +55,7 @@ export default { }, methods: { getTableData() { - this.instance.post("/app/appworkflowmanage/list", null, { + this.instance.post("/app/appworkflowlog/list", null, { params: {...this.page, ...this.search} }).then(res => { if (res?.data) { @@ -80,5 +80,6 @@ export default {