即入即出列表显示
This commit is contained in:
parent
db2774fb12
commit
f7858c9d09
@ -126,6 +126,13 @@
|
|||||||
{{ warehouseList.find((tag) => tag.id === scope.row.whId)?.whName }}
|
{{ warehouseList.find((tag) => tag.id === scope.row.whId)?.whName }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column label="即入即出" align="center" prop="inOutFlag" min-width="90" >
|
||||||
|
<template #default="scope">
|
||||||
|
<el-tag :type="scope.row.inOutFlag ? 'success' : 'info'">
|
||||||
|
{{ scope.row.inOutFlag ? '是' : '否' }}
|
||||||
|
</el-tag>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="备注" align="center" prop="description" min-width="160" />
|
<el-table-column label="备注" align="center" prop="description" min-width="160" />
|
||||||
<el-table-column label="创建人" align="center" prop="creator" min-width="120">
|
<el-table-column label="创建人" align="center" prop="creator" min-width="120">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user