|
|
@ -60,7 +60,6 @@ |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<el-form-item :label="labels.inspectionType"> |
|
|
<el-form-item :label="labels.inspectionType"> |
|
|
<el-select filterable v-model="modelData.inspectionType" style="width: 130px"> |
|
|
<el-select filterable v-model="modelData.inspectionType" style="width: 130px"> |
|
|
<el-option :label="labels.inspectionBuy" value="采购进料检验"></el-option> |
|
|
|
|
|
<el-option :label="labels.inspectionProduct" value="生产过程检验"></el-option> |
|
|
<el-option :label="labels.inspectionProduct" value="生产过程检验"></el-option> |
|
|
</el-select> |
|
|
</el-select> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
@ -364,8 +363,8 @@ |
|
|
this.modelData = { |
|
|
this.modelData = { |
|
|
add: 0, |
|
|
add: 0, |
|
|
site: this.$store.state.user.site, |
|
|
site: this.$store.state.user.site, |
|
|
inspectionType: '', |
|
|
|
|
|
inspectionTypeDb: '', |
|
|
|
|
|
|
|
|
inspectionType: '生产过程检验', |
|
|
|
|
|
inspectionTypeDb: 'PQ', |
|
|
workCenterNo: '', |
|
|
workCenterNo: '', |
|
|
defectCode: '', |
|
|
defectCode: '', |
|
|
defectDesc: '', |
|
|
defectDesc: '', |
|
|
@ -378,6 +377,8 @@ |
|
|
editModel(row){ |
|
|
editModel(row){ |
|
|
this.modelData=JSON.parse(JSON.stringify(row)); |
|
|
this.modelData=JSON.parse(JSON.stringify(row)); |
|
|
this.modelData.add=1; |
|
|
this.modelData.add=1; |
|
|
|
|
|
this.modelData.inspectionType = '生产过程检验'; |
|
|
|
|
|
this.modelData.inspectionTypeDb = 'PQ'; |
|
|
this.modelData.workCenterNo = this.modelData.workCenterNo || ''; |
|
|
this.modelData.workCenterNo = this.modelData.workCenterNo || ''; |
|
|
this.modelInputFlag=true; |
|
|
this.modelInputFlag=true; |
|
|
this.modelFlag=true; |
|
|
this.modelFlag=true; |
|
|
|