diff --git a/src/components/Workflow/DialogSelectPerson.vue b/src/components/Workflow/DialogSelectPerson.vue index b29068ad7..80734855f 100644 --- a/src/components/Workflow/DialogSelectPerson.vue +++ b/src/components/Workflow/DialogSelectPerson.vue @@ -89,6 +89,7 @@ async function fetchLists() { page: pagination.value.page, pageSize: pagination.value.rowsPerPage, keycloakId: props.keycloakId, + type: props.sysName === "REGISTRY_PROFILE_EMP" ? "employee" : "officer", }) .then(async (res) => { totalList.value = Math.ceil( diff --git a/src/components/Workflow/Main.vue b/src/components/Workflow/Main.vue index e1ba05fef..c22aa3fb0 100644 --- a/src/components/Workflow/Main.vue +++ b/src/components/Workflow/Main.vue @@ -90,7 +90,6 @@ async function fetchCheckState() { isSign: data.can_sign, }; keycloakId.value = data.keycloakId; - console.log(keycloakId.value); }) .catch(() => { isPermission.value = false;