bug: 取fullname
All checks were successful
Release / lint (push) Successful in 29s
Release / Release (push) Successful in 1m20s

This commit is contained in:
my_ong 2024-12-19 16:35:58 +08:00
parent 1deb6e58ec
commit 4072e8b1c4

View File

@ -130,7 +130,7 @@
//
const applyForm = ref<Partial<material.AuditApplyInfo>>({
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,
}
})