Browse Source

筛选

intex_online20250327
王宇飞 1 week ago
parent
commit
b15f8169b3
  1. 23
      src/pages/repleinsh/job/repleinshTimeJob.vue

23
src/pages/repleinsh/job/repleinshTimeJob.vue

@ -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({

Loading…
Cancel
Save