|
|
|
@ -258,10 +258,10 @@ |
|
|
|
<el-input v-model="detailData.partDesc" readonly style="width: 200px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="'送检数量'"> |
|
|
|
<el-input v-model="detailData.rollQty" type="number" style="width: 80px"></el-input> |
|
|
|
<el-input v-model="detailData.rollQty" readonly style="width: 80px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="'抽样数量'"> |
|
|
|
<el-input v-model="detailData.samplingQty" readonly style="width: 80px"></el-input> |
|
|
|
<el-input v-model="detailData.samplingQty" type="number" style="width: 80px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<el-form :inline="true" label-position="top" @keyup.enter.native = "getDataList()"> |
|
|
|
@ -360,10 +360,10 @@ |
|
|
|
header-align="center" |
|
|
|
align="right" |
|
|
|
min-width="80" |
|
|
|
label="送检数量"> |
|
|
|
label="抽样数量"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input v-if="detailData.submitFlag == 'Y'" v-model="scope.row.rollQty" disabled type="number" style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input> |
|
|
|
<el-input v-if="detailData.submitFlag != 'Y'" v-model="scope.row.rollQty" type="number" style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input> |
|
|
|
<el-input v-if="detailData.submitFlag == 'Y'" v-model="scope.row.samplingQty" disabled type="number" style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input> |
|
|
|
<el-input v-if="detailData.submitFlag != 'Y'" v-model="scope.row.samplingQty" type="number" style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
@ -1001,7 +1001,7 @@ |
|
|
|
disposalRemark: '', |
|
|
|
inspectorNo: '', |
|
|
|
inspectionRemark: '', |
|
|
|
rollQty: '', |
|
|
|
samplingQty: '', |
|
|
|
itemList:[], |
|
|
|
}, |
|
|
|
detailColumnList: [ |
|
|
|
@ -1821,7 +1821,7 @@ |
|
|
|
this.saveInformationData.inspectorNo = this.detailData.inspectorNo |
|
|
|
this.saveInformationData.inspectionResult = this.detailData.inspectionResult |
|
|
|
this.saveInformationData.inspectionRemark = this.detailData.inspectionRemark |
|
|
|
this.saveInformationData.rollQty = this.detailData.rollQty |
|
|
|
this.saveInformationData.samplingQty = this.detailData.samplingQty |
|
|
|
this.saveInformationData.itemList = JSON.parse(JSON.stringify(this.detailList)) |
|
|
|
saveIPQCDetailedRecord(this.saveInformationData).then(({data}) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
|