Compare commits

...

2 Commits

Author SHA1 Message Date
z
ad3d01a10a Merge remote-tracking branch 'origin/main' 2025-06-06 16:00:37 +08:00
z
b5e9f3514c 出库界面列表添加领料人 2025-06-06 16:00:10 +08:00
2 changed files with 11 additions and 1 deletions

View File

@ -127,6 +127,11 @@
{{ warehouseList.find((tag) => tag.id === scope.row.whId)?.whName }}
</template>
</el-table-column>
<el-table-column label="领料人" align="center" prop="materialReceiver" min-width="120">
<template #default="scope">
{{ userList.find((user) => user.id === scope.row.materialReceiver)?.nickname }}
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="description" min-width="120"/>
<el-table-column label="创建人" align="center" prop="creator" min-width="120">
<template #default="scope">
@ -141,7 +146,7 @@
min-width="240"
/>
<el-table-column label="提交人" align="center" prop="keeper" min-width="120">
<el-table-column label="提交人" align="center" prop="keeper" min-width="120">
<template #default="scope">
{{ userList.find((user) => user.id == scope.row.outbound)?.nickname }}
</template>

View File

@ -127,6 +127,11 @@
{{ warehouseList.find((tag) => tag.id === scope.row.whId)?.whName }}
</template>
</el-table-column>
<el-table-column label="领料人" align="center" prop="materialReceiver" min-width="120">
<template #default="scope">
{{ userList.find((user) => user.id === scope.row.materialReceiver)?.nickname }}
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="description" min-width="120"/>
<el-table-column label="创建人" align="center" prop="creator" min-width="120">
<template #default="scope">