来料报告增加抽检数量以及备注信息

Signed-off-by: Yangwl <1726150332@qq.com>
master
Yangwl 2 weeks ago
parent c7c91b56bf
commit c04d55f1f3

@ -168,7 +168,7 @@
<el-descriptions-item label="物料来源" class="my-description-item1">{{form.checkType}}</el-descriptions-item> <el-descriptions-item label="物料来源" class="my-description-item1">{{form.checkType}}</el-descriptions-item>
<el-descriptions-item label="检验依据" class="my-description-item2">{{form.standardNo}}</el-descriptions-item> <el-descriptions-item label="检验依据" class="my-description-item2">{{form.standardNo}}</el-descriptions-item>
<el-descriptions-item label="报检日期" class="my-description-item3">{{ parseTime(form.createTime, '{y}-{m}-{d}') }}</el-descriptions-item> <el-descriptions-item label="报检日期" class="my-description-item3">{{ parseTime(form.createTime, '{y}-{m}-{d}') }}</el-descriptions-item>
<!--<el-descriptions-item label="报检日期" class="my-description-item3">{{ parseTime(form.checkTime, '{y}-{m}-{d}') }}</el-descriptions-item>--> <!--<el-descriptions-item label="报检日期" class="my-description-item3">{{ parseTime(form.checkTime, '{y}-{m}-{d}') }}</el-descriptions-item>-->
</el-descriptions> </el-descriptions>
<el-row> <el-row>
@ -178,7 +178,7 @@
<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="projectRuleName" /> <el-table-column label="检验项目" align="center" prop="projectRuleName" />
<el-table-column label="标准要求" align="center" prop="checkStandard" width="400"/> <el-table-column label="标准要求" align="center" prop="checkStandard" width="400"/>
<!--<el-table-column label="抽检数" align="center" prop="samplePlan" width="60"/>--> <el-table-column label="抽检数" align="center" prop="samplePlan" width="60"/>
<el-table-column label="实测结果" align="center" prop="actualValue" width="130"/> <el-table-column label="实测结果" align="center" prop="actualValue" width="130"/>
<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">
@ -216,6 +216,13 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row>
<el-col :span="24">
<el-form-item label="备注:" label-width="120px">
<el-input v-model="form.remark" disabled/>
</el-form-item>
</el-col>
</el-row>
<el-row> <el-row>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="品管经理/主任:" label-width="120px"> <el-form-item label="品管经理/主任:" label-width="120px">
@ -572,7 +579,7 @@ export default {
* 5. return { rowspan: 0, colspan: 0 } // * 5. return { rowspan: 0, colspan: 0 } //
* */ * */
rowspan() { rowspan() {
this.checkProjectList.forEach((item, index) => { this.checkProjectList.forEach((item, index) => {
if (index === 0) { if (index === 0) {
this.spanArr.push(1); this.spanArr.push(1);

Loading…
Cancel
Save