Browse Source

日期时间

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

48
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) {
@ -263,28 +263,30 @@
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){
filterParams.push({
column: "dayAndTime",
action: "==",
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){

Loading…
Cancel
Save