bug: 🐛 修复打包报错
All checks were successful
Release / lint (push) Successful in 48s
Release / Release (push) Successful in 1m52s

This commit is contained in:
my_ong 2025-03-04 12:25:23 +08:00
parent d1d2840abd
commit 9085a77931

View File

@ -147,7 +147,7 @@
const materialList = ref<Array<{ value: string | undefined; label: string | undefined }>>([])
const personList = ref<Array<{ value: string | undefined; label: string | undefined }>>([])
const required = ref(true)
api.materialApi.material.all((data) => {
api.materialApi.material.all({}, (data) => {
materialList.value = data.map((item) => {
return {
value: item?.id + '',