Browse Source

筛选

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

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

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

Loading…
Cancel
Save