projects/mes-dy #93

Merged
gtz217 merged 2 commits from projects/mes-dy into projects/mes-test 2023-11-17 10:38:28 +08:00
2 changed files with 15 additions and 12 deletions

View File

@ -424,6 +424,7 @@ export default {
// //
form: { form: {
id: null, id: null,
files: []
}, },
showUploadComponents: false, // showUploadComponents: false, //
}; };
@ -506,6 +507,7 @@ export default {
spec: undefined, spec: undefined,
description: undefined, description: undefined,
remark: undefined, remark: undefined,
files: []
}; };
this.resetForm('form'); this.resetForm('form');
}, },

View File

@ -127,18 +127,19 @@ export default {
lineData[it.recordTime + '_area'] = it.area lineData[it.recordTime + '_area'] = it.area
}) })
console.log('你好', this.monitorList) console.log('你好', this.monitorList)
this.monitorList.forEach(m => { if (this.monitorList.length > 0) {
console.log('455', m) this.monitorList.forEach(m => {
if (m.lineName === lineData.proLineName) { if (m.lineName === lineData.proLineName) {
m.data.forEach(bad => { m.data.forEach(bad => {
// //
// console.log('233', Date.parse(bad.dynamicName)) // console.log('233', Date.parse(bad.dynamicName))
const stamp = Date.parse(bad.dynamicName) const stamp = Date.parse(bad.dynamicName)
lineData[stamp + '_bad'] = bad.dynamicValue lineData[stamp + '_bad'] = bad.dynamicValue
lineData[stamp + '_percent'] = (lineData[stamp + '_bad'] / lineData[stamp + '_down'] * 100).toFixed(2) + '%' lineData[stamp + '_percent'] = (lineData[stamp + '_bad'] / lineData[stamp + '_down'] * 100).toFixed(2) + '%'
}) })
} }
}) })
}
lineData['workOrderName'] = works.join(',') lineData['workOrderName'] = works.join(',')
lineData['spec'] = specs.join(',') lineData['spec'] = specs.join(',')
this.tableData.push(lineData) this.tableData.push(lineData)