Commit 71edbf79 authored by 沈翠玲's avatar 沈翠玲

过程校验

parent d97b60b7
......@@ -2,7 +2,7 @@
<div class="app-container">
<el-table v-loading="loading" :data="ipqclineList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="质检项目" width="120" align="center" prop="indexName" />
<el-table-column label="质检项目" width="110" align="center" prop="indexName" />
<el-table-column label="检验要求" align="center" prop="checkMethod" />
<el-table-column label="检验结果" width="300" align="center" prop="qualityCheckResults">
<template slot-scope="scope">
......@@ -14,6 +14,15 @@
</div>
</template>
</el-table-column>
<el-table-column label="判定" width="120" align="center">
<template slot-scope="scope">
<div>
<el-radio-group v-model="scope.row.status">
<el-radio v-for="(item, index) in dict.type.ver_item_determination" :key="index" :label="item.label" style="margin-right: 0"></el-radio>
</el-radio-group>
</div>
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="120">
<template slot-scope="scope">
<el-button
......@@ -44,7 +53,7 @@ import { listIpqcline, getIpqcline, delIpqcline, addIpqcline, updateIpqcline } f
import Defectrecord from "../defectrecord/index.vue"
export default {
name: "Ipqcline",
dicts: ['mes_index_type'],
dicts: ['mes_index_type', 'ver_item_determination'],
props: {
ipqcId: null,
optType: undefined
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment