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>>({ const applyForm = ref<Partial<material.AuditApplyInfo>>({
auditType: 'ALL', auditType: 'ALL',
applicant: userStore.userName, applicant: userStore.fullName,
type: 'AUDIT', type: 'AUDIT',
applyDate: dayjs() + '', applyDate: dayjs() + '',
confirm: false, confirm: false,
@ -158,7 +158,7 @@
api.aclApi.user.all((data) => { api.aclApi.user.all((data) => {
personList.value = data.map((item) => { personList.value = data.map((item) => {
return { return {
value: item?.name, value: item?.fullName,
label: item?.fullName, label: item?.fullName,
} }
}) })