From 4072e8b1c44104578d7299d52105f06807b38806 Mon Sep 17 00:00:00 2001 From: my_ong <429426262@qq.com> Date: Thu, 19 Dec 2024 16:35:58 +0800 Subject: [PATCH] =?UTF-8?q?bug:=20=E5=8F=96fullname?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/stock/stocktaking/stocktaking-page.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, } })