|
|
|
@ -246,7 +246,17 @@
|
|
|
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="检验结果" align="center" prop="checkResult" />
|
|
|
|
|
<!-- <el-table-column label="检验结果" align="center" prop="checkResult" />-->
|
|
|
|
|
|
|
|
|
|
<el-table-column label="检验结果" align="center" prop="checkResult">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span v-if="scope.row.checkResult === 'Y'">合格</span>
|
|
|
|
|
<span v-else-if="scope.row.checkResult === 'N'">不合格</span>
|
|
|
|
|
<span v-else>{{ scope.row.checkResult }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|