槽液模块修改及质量检验添加传参

dev-scheduling
jinna 4 days ago
parent 5906808c1e
commit 3ee7ff4151
  1. 5
      src/views/productionTesting/productionQuality.vue
  2. 28
      src/views/qualityManagement/tankSolutionSystem/components/batchDialog.vue
  3. 4
      src/views/qualityManagement/tankSolutionSystem/components/disposeDialog.vue
  4. 20
      src/views/qualityManagement/tankSolutionSystem/tankSolutionTaskDispose.vue

@ -1306,8 +1306,8 @@ export default {
getThickness(val,allData,endTime,itemDetail){ getThickness(val,allData,endTime,itemDetail){
getThicknessList({ getThicknessList({
// startTime:this.startTime, startTime:this.startTime,
// endTime:endTime, endTime:endTime,
allData, allData,
// count:val // count:val
}).then(res =>{ }).then(res =>{
@ -1628,6 +1628,7 @@ export default {
// res.data.data.wpItemList[0].item.name = '' // res.data.data.wpItemList[0].item.name = ''
// res.data.data.wpItemList[0].checkUserRealName = null // res.data.data.wpItemList[0].checkUserRealName = null
this.vxeTableData = res.data.data.wpItemList; this.vxeTableData = res.data.data.wpItemList;
console.log('this.vxeTableData', this.vxeTableData);
this.vxeTableData.map(item => { this.vxeTableData.map(item => {
item.lossQty = (item.checkUserRealName != null && item.checkUserRealName != '' ) item.lossQty = (item.checkUserRealName != null && item.checkUserRealName != '' )
? item.lossQty : item.lossQty != null && item.lossQty != '' && item.lossQty != -1 ? item.lossQty : item.lossQty != null && item.lossQty != '' && item.lossQty != -1

@ -63,10 +63,10 @@
{{scope.row.qualified == 1 ? '合格' : scope.row.qualified == 2 ? '不合格' : ''}} {{scope.row.qualified == 1 ? '合格' : scope.row.qualified == 2 ? '不合格' : ''}}
</template> </template>
<!-- 复测电导率 --> <!-- 复测电导率 -->
<template #conductivityRepeatTestValue="scope"> <!-- <template #conductivityRepeatTestValue="scope">
<div class="inpu-text"> <div class="inpu-text">
<el-input @input="val => scope.row.conductivityRepeatTestValue = formatDecimal(val, 5)" :disabled="scope.row.status == 2 || scope.row.status == 4" v-model="scope.row.conductivityRepeatTestValue" /></div> <el-input @input="val => scope.row.conductivityRepeatTestValue = formatDecimal(val, 5)" :disabled="scope.row.status == 2 || scope.row.status == 4" v-model="scope.row.conductivityRepeatTestValue" /></div>
</template> </template> -->
<template #firstTestDate="scope"> <template #firstTestDate="scope">
<div class="inpu-text"> <div class="inpu-text">
<el-date-picker <el-date-picker
@ -426,17 +426,17 @@ export default {
width: 200, width: 200,
}, },
{ // {
label: '复测电导率测量值', // label: '',
prop: 'conductivityRepeatTestValue', // prop: 'conductivityRepeatTestValue',
sortable: true, // sortable: true,
filter: true, // filter: true,
span: 24, // span: 24,
search: false, // search: false,
width: 220, // width: 220,
cell: true // cell: true
}, // },
] ]
}, },
@ -596,7 +596,7 @@ export default {
}) })
}else if(this.data[0].status == 8){ }else if(this.data[0].status == 8){
const requiredFields = [ const requiredFields = [
{ key: 'conductivityRepeatTestValue', label: '复测电导率测量值' }, // { key: 'conductivityRepeatTestValue', label: '' },
{ key: 'repeatTestValue', label: '复测测量值' }, { key: 'repeatTestValue', label: '复测测量值' },
]; ];
// //

@ -267,9 +267,9 @@
<el-col :span="6"> <el-col :span="6">
<span>测量值</span><span>{{ detailForm.repeatTestValue }}</span> <span>测量值</span><span>{{ detailForm.repeatTestValue }}</span>
</el-col> </el-col>
<el-col :span="6"> <!-- <el-col :span="6">
<span>电导率测量值</span><span>{{ detailForm.conductivityRepeatTestValue }}</span> <span>电导率测量值</span><span>{{ detailForm.conductivityRepeatTestValue }}</span>
</el-col> </el-col> -->
<el-col :span="6"> <el-col :span="6">
<span>化验人</span><span>{{ detailForm.repeatTestUserRealName }}</span> <span>化验人</span><span>{{ detailForm.repeatTestUserRealName }}</span>
</el-col> </el-col>

@ -375,15 +375,15 @@ export default {
span: 24, span: 24,
width: 220, width: 220,
}, },
{ // {
label: '复测电导率测量值', // label: '',
prop: 'conductivityRepeatTestValue', // prop: 'conductivityRepeatTestValue',
search: false, // search: false,
sortable: 'custom', // sortable: 'custom',
filter: true, // filter: true,
span: 24, // span: 24,
width: 220, // width: 220,
}, // },
{ {
label: '上次化验时间', label: '上次化验时间',
prop: 'firstTestDate', prop: 'firstTestDate',
@ -859,7 +859,7 @@ export default {
item.actualAddValue = '' item.actualAddValue = ''
item.afterAddTheoryValue = '' item.afterAddTheoryValue = ''
item.repeatTestValue = '' item.repeatTestValue = ''
item.conductivityRepeatTestValue = '' // item.conductivityRepeatTestValue = ''
} }
}) })
this.page.total = res.data.data.total this.page.total = res.data.data.total

Loading…
Cancel
Save