fix: 修复/优化多个业务页面的逻辑与配置

1. 修正物料选项中的BX51D+Z为DX51D+Z
2. 给L2匹配面板的标准化方法添加日志与start_date/end_date字段解析
3. 优化卷材页面的日期赋值逻辑并添加调试日志
4. 简化异常表格的图片组件写法,新增继承来源列
This commit is contained in:
2026-06-10 09:21:34 +08:00
parent c95ea7db61
commit cc63aa80b2
4 changed files with 22 additions and 9 deletions

View File

@@ -33,12 +33,8 @@
<template slot-scope="scope">
<template v-if="scope.row.attachmentFiles">
<div v-for="(url, idx) in scope.row.attachmentFiles.split(',')" :key="idx" style="margin-right: 4px;">
<el-image
style="width: 30px; height: 30px; vertical-align: middle; border-radius: 2px;"
:src="url"
:preview-src-list="scope.row.attachmentFiles.split(',')"
fit="cover"
/>
<el-image style="width: 30px; height: 30px; vertical-align: middle; border-radius: 2px;" :src="url"
:preview-src-list="scope.row.attachmentFiles.split(',')" fit="cover" />
</div>
</template>
</template>
@@ -50,6 +46,13 @@
</el-table-column>
<el-table-column label="创建人" align="center" prop="createBy" />
<el-table-column label="创建时间" align="center" prop="createTime" />
<el-table-column label="继承来源" prop="processSource" width="110">
<template slot-scope="scope">
<el-tag v-if="scope.row.processSource" type="warning" size="mini">
{{ scope.row.processSource }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="挂载时机" align="center" prop="abnormalTime" v-if="coilInfo.coilId">
<template slot-scope="scope">
{{ getAbnormalTime(scope.row) }}