Andon监控

This commit is contained in:
caoxinyu
2019-05-11 17:10:41 +08:00
parent 9754debef3
commit fe0ba3d7bd
8 changed files with 190 additions and 7 deletions

View File

@@ -172,7 +172,7 @@ export default {
this.Partpaint = response.data[0].零件图号
return this.Partpaint
}).then(() => {
this. getCraftNumber()
this.getCraftNumber()
})
// this.getscantable()
},
@@ -188,27 +188,27 @@ export default {
} else {
this.listLoading = true
searchTable(this.partNumber).then(response => {
if(response.data.length === 0) {
if (response.data.length === 0) {
this.listLoading = false
this.$notify({
title: '警告',
message: '该零件未加工完成',
type: 'warning'
})
}else {
} else {
for (let i = 0; i < response.data.length; i++) {
if (response.data[i].考核状态 === 8) {
this.listLoading = false
this.$notify({
title: '警告',
message: 'P' + response.data[i].工艺计划流水号 + '已入库',
message: 'P' + response.data[i].工艺计划流水号 + '已入库',
type: 'warning'
})
} else if (response.data[i].考核状态 === 9) {
this.listLoading = false
this.$notify({
title: '警告',
message: 'P' + response.data[i].工艺计划流水号 + '已出库',
message: 'P' + response.data[i].工艺计划流水号 + '已出库',
type: 'warning'
})
} else if (response.data[i].考核状态 === 7) {
@@ -223,7 +223,7 @@ export default {
机床图号: response.data[i].机床图号,
零件图号: response.data[i].零件图号
})
let hash = {}; // 一个新数组data为你需要去重的数组newData用于接收去重后的数组, curVal.去重条件
const hash = {} // 一个新数组data为你需要去重的数组newData用于接收去重后的数组, curVal.去重条件
this.tableDataNum = this.tableData.reduce((preVal, curVal) => {
hash[curVal.工艺计划流水号] ? '' : hash[curVal.工艺计划流水号] = true && preVal.push({
工艺计划流水号: curVal.工艺计划流水号,
@@ -234,7 +234,7 @@ export default {
innumber: curVal.innumber,
capture: '',
note: ''
});
})
return preVal
}, [])
}