|
|
@ -174,13 +174,13 @@ |
|
|
|
|
|
|
|
methods: { |
|
|
|
timerRefresh() { |
|
|
|
this.getList('refresh') |
|
|
|
this.stopRefresh(); |
|
|
|
var that = this; |
|
|
|
this.timer = setInterval(function() { |
|
|
|
that.getList('refresh') |
|
|
|
console.log('补料刷新'); |
|
|
|
}, planRefreshTime) |
|
|
|
// this.getList('refresh') |
|
|
|
// this.stopRefresh(); |
|
|
|
// var that = this; |
|
|
|
// this.timer = setInterval(function() { |
|
|
|
// that.getList('refresh') |
|
|
|
// console.log('补料刷新'); |
|
|
|
// }, planRefreshTime) |
|
|
|
}, |
|
|
|
stopRefresh() { |
|
|
|
if (this.timer) { |
|
|
@ -205,7 +205,7 @@ |
|
|
|
if (res.code == 0) { |
|
|
|
this.productionlineList = res.data.map(item => ({ |
|
|
|
value: item.value, |
|
|
|
text: item.label |
|
|
|
text: item.name |
|
|
|
})) |
|
|
|
this.productionlineList.unshift({ |
|
|
|
value: "", |
|
|
@ -279,6 +279,13 @@ |
|
|
|
value: queryParams.time |
|
|
|
}) |
|
|
|
} |
|
|
|
if(queryParams.day&&queryParams.time){ |
|
|
|
filterParams.push({ |
|
|
|
column: "dayAndTime", |
|
|
|
action: "==", |
|
|
|
value: queryParams.day+' '+queryParams.time |
|
|
|
}) |
|
|
|
} |
|
|
|
// 便次 |
|
|
|
if(queryParams.deliNo){ |
|
|
|
filterParams.push({ |
|
|
|