问题修改

dev-scheduling
jinna 2 days ago
parent 4a4f4d8a7c
commit 75610e7dda
  1. 11
      src/views/oem/oemOrderSettlement/components/settlementAnomaly.vue
  2. 24
      src/views/productionTesting/productionQuality.vue
  3. 12
      src/views/qualityManagement/inspectionArchiving/auditFile/index.vue
  4. 9
      src/views/qualityManagement/tankSolutionSystem/tankSolutionTaskDispose.vue

@ -651,13 +651,20 @@ export default {
this.selectionList = list; this.selectionList = list;
}, },
searchChange(params, done) { searchChange(params, done) {
this.query = params; this.query = params
this.page.currentPage = 1; this.page.currentPage = 1;
this.onLoad(); this.onLoad();
done && done(); done && done();
}, },
searchReset() { searchReset() {
this.query = {}; this.query = {
rosStatusList:3,
memo:['未找到报价单','订单数据错误']
};
this.searchParams = {
rosStatusList:3,
memo:['未找到报价单','订单数据错误']
}
this.page.currentPage = 1; this.page.currentPage = 1;
this.onLoad(); this.onLoad();
}, },

@ -1536,18 +1536,18 @@ export default {
} }
} }
console.log('detailInfo------------------',this.detailInfo) console.log('detailInfo------------------',this.detailInfo)
// fillInspection(this.detailInfo).then(res =>{ fillInspection(this.detailInfo).then(res =>{
// if(res.data.code == 200){ if(res.data.code == 200){
// this.$message.success('') this.$message.success('保存成功')
// this.showDialog = false this.showDialog = false
// this.isStart = false this.isStart = false
// this.getDChyData = [] this.getDChyData = []
// clearInterval(this.ydInterval) clearInterval(this.ydInterval)
// clearInterval(this.firstInterval) clearInterval(this.firstInterval)
// clearInterval(this.secondInderval) clearInterval(this.secondInderval)
// this.onLoad() this.onLoad()
// } }
// }) })
}, },
// //

@ -176,6 +176,7 @@ export default {
sortable: 'custom', sortable: 'custom',
filterable: true, filterable: true,
span: 24, span: 24,
hide:true
// type: 'select', // type: 'select',
// dicUrl: '/api/blade-desk/BA/WorkCenter/listForSelect', // dicUrl: '/api/blade-desk/BA/WorkCenter/listForSelect',
// props: { // props: {
@ -183,6 +184,17 @@ export default {
// value: 'id', // value: 'id',
// }, // },
}, },
{
label: '工艺能力',
prop: 'caName',
width: 150,
labelWidth: 150,
search: false,
sortable: 'custom',
filterable: true,
span: 24,
display:false
},
{ {
label: '生产标识', label: '生产标识',
prop: 'pqId', prop: 'pqId',

@ -847,6 +847,15 @@ export default {
// res.data.data.records.map(item =>{ // res.data.data.records.map(item =>{
// item.liquidTank = null // item.liquidTank = null
// }) // })
res.data.data.records.map(item =>{
item.firstTestValue = item.firstTestValue == -1 ? '' : item.firstTestValue
item.conductivityFirstTestValue = item.conductivityFirstTestValue == -1 ? '' : item.conductivityFirstTestValue
item.temperatureActual = item.temperatureActual == -1 ? '' : item.temperatureActual
item.phActual = item.phActual == -1 ? '' : item.phActual
item.actualAddValue = item.actualAddValue == -1 ? '' : item.actualAddValue
item.afterAddTheoryValue = item.afterAddTheoryValue == -1 ? '' : item.afterAddTheoryValue
item.firstTestDate = item.firstTestDate == -1 ? '' : item.firstTestDate
})
this.data = res.data.data.records this.data = res.data.data.records
this.data.map(item =>{ this.data.map(item =>{

Loading…
Cancel
Save