diff --git a/admin/src/api/perms/admin.ts b/admin/src/api/perms/admin.ts index 6c7766e..43700f6 100644 --- a/admin/src/api/perms/admin.ts +++ b/admin/src/api/perms/admin.ts @@ -6,6 +6,10 @@ import config from '@/config' export function adminLists(params: any) { return request.get({ url: '/system/admin/list', params }) } +// 管理员列表 +export function adminListAll(params: any) { + return request.get({ url: '/system/admin/listAll', params }) +} // 管理员详情 export function adminDetail(params: any) { return request.get({ url: '/system/admin/detail', params }) diff --git a/admin/src/components/flow/Approver.vue b/admin/src/components/flow/Approver.vue index 24f5784..ea967f2 100644 --- a/admin/src/components/flow/Approver.vue +++ b/admin/src/components/flow/Approver.vue @@ -141,9 +141,8 @@ function open(data) { dialogVisible.value = true } function changeSteps(item) { - const fieldList = formDesign.value.getFieldWidgets() - - fieldList.value = fieldList + fieldList.value = formDesign.value.getFieldWidgets() + console.log('fieldList', fieldList.value) activeStep.value = item.key } diff --git a/admin/src/components/flow/flowEdit/PropertyPanel/Gateway.vue b/admin/src/components/flow/flowEdit/PropertyPanel/Gateway.vue index ee42507..c29ac7d 100644 --- a/admin/src/components/flow/flowEdit/PropertyPanel/Gateway.vue +++ b/admin/src/components/flow/flowEdit/PropertyPanel/Gateway.vue @@ -1,11 +1,10 @@