fix:禅道286

This commit is contained in:
shijing 2026-01-07 09:25:35 +08:00
parent 2a5c8f5de9
commit f1bd6ac527
1 changed files with 12 additions and 2 deletions

View File

@ -82,11 +82,21 @@
{{ typeDict[scope.row.type] }}
</template>
</el-table-column>
<el-table-column label="记录状态">
<el-table-column label="状态" width="80">
<template #default="scope">
{{ stateDict[scope.row.state] }}
</template>
</el-table-column>
<el-table-column label="批次号" min-width="90">
<template #default="scope">
<div v-for="item in scope.row.mioitems" :key="item.id">{{ item.batch }}</div>
</template>
</el-table-column>
<el-table-column label="物料名称" min-width="130">
<template #default="scope">
<div v-for="item in scope.row.mioitems" :key="item.id" style="word-break: break-all;">{{item.material_name.split('|')[0]}}<span v-if="item.material_name.split('|')[1]!==''">|</span>{{ item.material_name.split('|')[1] }}</div>
</template>
</el-table-column>
<el-table-column label="出/入库日期" prop="inout_date">
</el-table-column>
<el-table-column label="执行部门" prop="belong_dept_name">
@ -94,7 +104,7 @@
{{ scope.row.belong_dept_name }} - {{ scope.row.mgroup_name }}
</template>
</el-table-column>
<el-table-column label="创建人" prop="create_by_name">
<el-table-column label="创建人" prop="create_by_name" width="80">
</el-table-column>
<el-table-column label="创建时间" prop="create_time">
</el-table-column>