出库界面列表添加领料人
This commit is contained in:
parent
ef585eda43
commit
b5e9f3514c
@ -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>
|
||||
|
@ -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">
|
||||
|
Loading…
Reference in New Issue
Block a user