|
|
@ -235,21 +235,22 @@
|
|
|
|
<el-table-column type="selection" width="50" align="center" />
|
|
|
|
<el-table-column type="selection" width="50" align="center" />
|
|
|
|
<el-table-column label="序号" align="center" type="index" width="50"/>
|
|
|
|
<el-table-column label="序号" align="center" type="index" width="50"/>
|
|
|
|
<el-table-column label="检验项目" align="center" prop="ruleName" />
|
|
|
|
<el-table-column label="检验项目" align="center" prop="ruleName" />
|
|
|
|
<el-table-column label="标准要求" align="center" prop="checkStandard" width="160"/>
|
|
|
|
<el-table-column label="标准要求" align="center" prop="checkStandard" width="350"/>
|
|
|
|
<el-table-column label="抽检数" align="center" prop="sampleNum" width="60"/>
|
|
|
|
<!--<el-table-column label="抽检数" align="center" prop="sampleNum" width="60"/>
|
|
|
|
<el-table-column label="单位" align="center" prop="unitCode" width="50"/>
|
|
|
|
<el-table-column label="单位" align="center" prop="unitCode" width="50"/>-->
|
|
|
|
<el-table-column label="实测结果" align="center" prop="actualValue" width="160"/>
|
|
|
|
<el-table-column label="实测结果" align="center" prop="actualValue" width="120"/>
|
|
|
|
<el-table-column label="判定" align="center" prop="status" width="70">
|
|
|
|
<el-table-column label="判定" align="center" prop="status" width="70">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<dict-tag :options="dict.type.check_result" :value="scope.row.status"/>
|
|
|
|
<dict-tag :options="dict.type.check_result" :value="scope.row.status"/>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
<el-table-column label="不良类型" align="center" prop="defectCode" width="80">
|
|
|
|
<el-table-column label="不良类型" align="center" prop="defectCode" width="80">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span v-if="scope.row.defectCode">{{ getCodeValue(scope.row.defectCode) }}</span>
|
|
|
|
<span v-if="scope.row.defectCode">{{ getCodeValue(scope.row.defectCode) }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="不良数量" align="center" prop="defectQuality" width="80"/>
|
|
|
|
<el-table-column label="不良数量" align="center" prop="defectQuality" width="80"/>-->
|
|
|
|
<el-table-column label="附件" align="center" prop="files" width="120">
|
|
|
|
<el-table-column label="附件" align="center" prop="files" width="120">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-image v-for="(item,index) in scope.row.files" :key="index"
|
|
|
|
<el-image v-for="(item,index) in scope.row.files" :key="index"
|
|
|
@ -263,12 +264,13 @@
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
<el-row>
|
|
|
|
<el-row>
|
|
|
|
<el-col>
|
|
|
|
<el-col>
|
|
|
|
<el-form-item label="综合检验结论" prop="checkManName" label-width="100px">
|
|
|
|
<el-form-item label="综合检验结论" label-width="100px">
|
|
|
|
<el-col offset="6" span="6">
|
|
|
|
<el-col :span="6">
|
|
|
|
<el-checkbox disabled>合格</el-checkbox>
|
|
|
|
<span v-if="this.checkResult=='Y'">√合格</span>
|
|
|
|
|
|
|
|
<span label="N" v-else>×不合格</span>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col offset="3" span="6">
|
|
|
|
<el-col :span="8">
|
|
|
|
<el-checkbox disabled>不合格</el-checkbox>
|
|
|
|
备注:判定合格打“√”,不合格打“×”
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|