fix:工时统计->热压生产数据:对应字段调正

This commit is contained in:
shijing 2026-02-04 09:41:17 +08:00
parent ca696a0685
commit 9c28cfff84
1 changed files with 19 additions and 24 deletions

View File

@ -51,77 +51,77 @@
</el-table-column> </el-table-column>
<el-table-column label="压前对边" align="center"> <el-table-column label="压前对边" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.排板_检测项_对边==undefined?scope.row.data.排板_检测项_对边:'' }}</span> <span>{{ scope.row.data.排板_检测项_对边?scope.row.data.排板_检测项_对边:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="模具号" align="center"> <el-table-column label="模具号" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.装模_检测项_模具号==undefined?scope.row.data.装模_检测项_模具号:'' }}</span> <span>{{ scope.row.data.装模_检测项_模具号?scope.row.data.装模_检测项_模具号:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="对模具人" align="center"> <el-table-column label="对模具人" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.装模_操作人?scope.row.data.装模_操作人:0 }}</span> <span>{{ scope.row.data.装模_操作人?scope.row.data.装模_操作人:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="丝高" align="center"> <el-table-column label="丝高" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.排板_检测项_丝高?scope.row.data.排板_检测项_丝高:0 }}</span> <span>{{ scope.row.data.排板_检测项_丝高?scope.row.data.排板_检测项_丝高:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="炉号" align="center"> <el-table-column label="炉号" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.装炉压板出炉_设备编号?scope.row.data.装炉压板出炉_设备编号:0 }}</span> <span>{{ scope.row.data.装炉压板出炉_设备编号?scope.row.data.装炉压板出炉_设备编号:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="装炉人" align="center"> <el-table-column label="装炉人" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.装炉压板出炉_装炉_操作人?scope.row.data.装炉压板出炉_装炉_操作人:0 }}</span> <span>{{ scope.row.data.装炉压板出炉_装炉_操作人?scope.row.data.装炉压板出炉_装炉_操作人:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="压板温度" align="center"> <el-table-column label="压板温度" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.装炉压板出炉_操作项_温度?scope.row.data.装炉压板出炉_操作项_温度:0 }}</span> <span>{{ scope.row.data.装炉压板出炉_操作项_温度?scope.row.data.装炉压板出炉_操作项_温度:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="压力" align="center"> <el-table-column label="压力" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.装炉压板出炉_操作项_压力?scope.row.data.装炉压板出炉_操作项_压力:0 }}</span> <span>{{ scope.row.data.装炉压板出炉_操作项_压力?scope.row.data.装炉压板出炉_操作项_压力:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="下压刻度" align="center"> <el-table-column label="下压刻度" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.装炉压板出炉_操作项_刻度?scope.row.data.装炉压板出炉_操作项_刻度:0 }}</span> <span>{{ scope.row.data.装炉压板出炉_操作项_刻度?scope.row.data.装炉压板出炉_操作项_刻度:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="压板用时" align="center"> <el-table-column label="压板用时" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.装炉压板出炉_操作项_压板用时?scope.row.data.装炉压板出炉_操作项_压板用时:0 }}</span> <span>{{ scope.row.data.装炉压板出炉_操作项_压板用时?scope.row.data.装炉压板出炉_操作项_压板用时:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="压板人" align="center"> <el-table-column label="压板人" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.装炉压板出炉_压板出炉_操作人?scope.row.data.装炉压板出炉_压板出炉_操作人:0 }}</span> <span>{{ scope.row.data.装炉压板出炉_压板出炉_操作人?scope.row.data.装炉压板出炉_压板出炉_操作人:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="压后上边" align="center"> <el-table-column label="压后上边" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.测量_检测项_对边上?scope.row.data.模测量_检测项_对边上:0 }}</span> <span>{{ scope.row.data.测量_检测项_对边上?scope.row.data.膜测量_检测项_对边上:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="压后下边" align="center"> <el-table-column label="压后下边" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.测量_检测项_对边下?scope.row.data.模测量_检测项_对边下:0 }}</span> <span>{{ scope.row.data.测量_检测项_对边下?scope.row.data.膜测量_检测项_对边下:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column label="对边差" align="center">
<template #default="scope">
<span>{{ scope.row.data.脱模测量_检测项_对边上?scope.row.data.脱模测量_检测项_对边上:0 }}</span>
</template>
</el-table-column> -->
<el-table-column label="压后伸长" align="center"> <el-table-column label="压后伸长" align="center">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.data.脱模测量_检测项_伸长?scope.row.data.脱模测量_检测项_伸长:0 }}</span> <span>{{ scope.row.data.脱膜测量_检测项_伸长?scope.row.data.脱膜测量_检测项_伸长:'' }}</span>
</template>
</el-table-column>
<el-table-column label="日期" align="center">
<template #default="scope">
<span>{{ scope.row.data.装炉压板出炉_压板出炉_日期?scope.row.data.装炉压板出炉_压板出炉_日期:'' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="备注" align="center"> <el-table-column label="备注" align="center">
@ -129,11 +129,6 @@
<span>{{ scope.row.data.装炉压板出炉_备注 }}</span> <span>{{ scope.row.data.装炉压板出炉_备注 }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="日期" align="center">
<template #default="scope">
<span>{{ scope.row.data.装炉压板出炉_压板出炉_日期?scope.row.data.装炉压板出炉_压板出炉_日期:0 }}</span>
</template>
</el-table-column>
</scTable> </scTable>
</el-main> </el-main>
</el-container> </el-container>