Browse Source

日期时间

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

48
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) {
@ -263,28 +263,30 @@
value: queryParams.productionLineCode value: queryParams.productionLineCode
}) })
} }
//
if(queryParams.day){
filterParams.push({
column: "day",
action: "==",
value: queryParams.day
})
}
//
if(queryParams.time){
filterParams.push({
column: "time",
action: "==",
value: queryParams.time
})
}
if(queryParams.day&&queryParams.time){ if(queryParams.day&&queryParams.time){
filterParams.push({ filterParams.push({
column: "dayAndTime", column: "dayAndTime",
action: "==", action: "==",
value: queryParams.day+' '+queryParams.time value: queryParams.day+' '+queryParams.time
}) })
}else{
//
if(queryParams.day){
filterParams.push({
column: "day",
action: "==",
value: queryParams.day
})
}
//
if(queryParams.time){
filterParams.push({
column: "time",
action: "==",
value: queryParams.time
})
}
} }
// 便 // 便
if(queryParams.deliNo){ if(queryParams.deliNo){

Loading…
Cancel
Save