rfid界面优化

master
陈恒杰 8 months ago
parent 933706cb5b
commit b2bdf501dc

@ -104,23 +104,23 @@
<el-table-column label="下一步工序编码" align="center" prop="nextProcessCode" width="150"/>
<el-table-column label="下一步工序名称" align="center" prop="nextProcessName" width="150"/>
<el-table-column label="工序步骤" align="center" prop="orderNum" />
<el-table-column label="入时间" align="center" prop="inTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.inTime, '{y}-{m}-{d}') }}</span>
{{ parseTime(scope.row.inTime, '{h}:{m}:{s}') }}
</template>
</el-table-column>
<el-table-column label="出时间" align="center" prop="outTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.outTime, '{y}-{m}-{d}') }}</span>
<span>{{ parseTime(scope.row.outTime, '{h}:{m}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="状态" align="center" prop="status">
<template slot-scope="scope">
{{ scope.row.status == "0" ? "待办" : "完成" }}
</template>
</el-table-column>
<!-- <el-table-column label="入时间" align="center" prop="inTime" width="180">-->
<!-- <template slot-scope="scope">-->
<!-- <span>{{ parseTime(scope.row.inTime, '{y}-{m}-{d}') }}</span>-->
<!-- {{ parseTime(scope.row.inTime, '{h}:{m}:{s}') }}-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column label="出时间" align="center" prop="outTime" width="180">-->
<!-- <template slot-scope="scope">-->
<!-- <span>{{ parseTime(scope.row.outTime, '{y}-{m}-{d}') }}</span>-->
<!-- <span>{{ parseTime(scope.row.outTime, '{h}:{m}:{s}') }}</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column label="状态" align="center" prop="status">-->
<!-- <template slot-scope="scope">-->
<!-- {{ scope.row.status == "0" ? "待办" : "完成" }}-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="备注" align="center" prop="remark" />
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
@ -139,7 +139,7 @@
v-hasPermi="['mes:rfidProcess:remove']"
>删除</el-button>
</template> -->
</el-table-column>
<!-- </el-table-column>-->
</el-table>
<pagination

Loading…
Cancel
Save