diff --git a/src/views/stock/stocktaking/stocktaking-page.vue b/src/views/stock/stocktaking/stocktaking-page.vue index 4be2e50..b2cacbf 100644 --- a/src/views/stock/stocktaking/stocktaking-page.vue +++ b/src/views/stock/stocktaking/stocktaking-page.vue @@ -130,7 +130,7 @@ // 新增申请表单对象 const applyForm = ref>({ auditType: 'ALL', - applicant: userStore.userName, + applicant: userStore.fullName, type: 'AUDIT', applyDate: dayjs() + '', confirm: false, @@ -158,7 +158,7 @@ api.aclApi.user.all((data) => { personList.value = data.map((item) => { return { - value: item?.name, + value: item?.fullName, label: item?.fullName, } })