fix:扭转日期变动时添加是否为空的判断

This commit is contained in:
shijing 2026-02-04 10:38:06 +08:00
parent d21cc6bdf2
commit 0faf237e43
2 changed files with 63 additions and 67 deletions

View File

@ -963,7 +963,7 @@ export default {
obj.printer_commands = str; obj.printer_commands = str;
obj.printer_name = that.printer_name; obj.printer_name = that.printer_name;
let printer_ip=localStorage.getItem("printer_ip")||'127.0.0.1'; let printer_ip=localStorage.getItem("printer_ip")||'127.0.0.1';
that.$API.wpm.prints.req(printer_ip, obj).then((response) => { that.$API.wpm.prints.req(printer_ip, obj).then((response) => {
that.$message.success("打印成功"); that.$message.success("打印成功");
}); });
}) })
@ -1132,9 +1132,6 @@ that.$API.wpm.prints.req(printer_ip, obj).then((response) => {
that.mlogbwlist[0].work_start_time = that.$TOOL.dateFormat(date, 'yyyy-MM-dd hh:mm:ss'); that.mlogbwlist[0].work_start_time = that.$TOOL.dateFormat(date, 'yyyy-MM-dd hh:mm:ss');
that.timeChange(that.mlogbwlist[0]); that.timeChange(that.mlogbwlist[0]);
} }
// if(that.optionsEq.length==0){
// that.getEquipment4();
// }
} }
if(that.setForm.cd_req_addr!==null&&!that.insInput){ if(that.setForm.cd_req_addr!==null&&!that.insInput){
//cd_req_addr, //cd_req_addr,
@ -1172,19 +1169,13 @@ that.$API.wpm.prints.req(printer_ip, obj).then((response) => {
} }
}); });
}, },
equipRemoteMethod(row){
let that = this;
console.log('row',row);
console.log('scope.row.equip',row.equip);
},
timeChange(row){ timeChange(row){
let that = this; let that = this;
if(row.work_start_time!==''&&row.work_start_time!==null&&row.work_start_time!==undefined){
let index = that.mlogbwlist.indexOf(row); let index = that.mlogbwlist.indexOf(row);
let waveNum = 1; let waveNum = 1;
let hours =Number(row.work_start_time.split(" ")[1].split(":")[0]); let hours =Number(row.work_start_time.split(" ")[1].split(":")[0]);
let minutes =Number(row.work_start_time.split(" ")[1].split(":")[1]) ; let minutes =Number(row.work_start_time.split(" ")[1].split(":")[1]);
console.log('hours',hours);
console.log('minutes',minutes);
if((hours==0&&minutes>29)||hours==1||(hours==2&&minutes<30)){ if((hours==0&&minutes>29)||hours==1||(hours==2&&minutes<30)){
waveNum = 9; waveNum = 9;
}else if((hours==2&&minutes>29)||hours==3||(hours==4&&minutes<30)){ }else if((hours==2&&minutes>29)||hours==3||(hours==4&&minutes<30)){
@ -1207,6 +1198,9 @@ that.$API.wpm.prints.req(printer_ip, obj).then((response) => {
waveNum = 8; waveNum = 8;
} }
that.mlogbwlist[index].波数 = waveNum; that.mlogbwlist[index].波数 = waveNum;
}else{
that.mlogbwlist[index].波数 = null;
}
}, },
saveSetting(){ saveSetting(){
let that = this; let that = this;
@ -1228,8 +1222,6 @@ that.$API.wpm.prints.req(printer_ip, obj).then((response) => {
}); });
that.$API.wpm.mlogbw.update.req("bulk",that.selectWpr).then((res) => { that.$API.wpm.mlogbw.update.req("bulk",that.selectWpr).then((res) => {
that.setVisible = false; that.setVisible = false;
// that.descriptionVisible = false;
// that.setForm = {};
that.getList(); that.getList();
}).catch((err) => { }).catch((err) => {
return err; return err;

View File

@ -555,6 +555,7 @@ export default {
let that = this; let that = this;
console.log('row',row) console.log('row',row)
let index = that.mlogbwlist.indexOf(row); let index = that.mlogbwlist.indexOf(row);
if(row.work_start_time!==''&&row.work_start_time!==null&&row.work_start_time!==undefined){
let waveNum = 1; let waveNum = 1;
let hours = 0,minutes=0; let hours = 0,minutes=0;
if(row.work_start_time.indexOf("T")>-1){ if(row.work_start_time.indexOf("T")>-1){
@ -586,6 +587,9 @@ export default {
waveNum = 8; waveNum = 8;
} }
that.mlogbwlist[index].波数 = waveNum; that.mlogbwlist[index].波数 = waveNum;
}else{
that.mlogbwlist[index].波数 = null;
}
}, },
getList(){ getList(){
let that = this; let that = this;