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

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

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

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

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

Loading…
Cancel
Save