修改异常提醒
This commit is contained in:
parent
125198a681
commit
2a77606996
|
@ -821,6 +821,9 @@
|
||||||
console.log(sysCloneForm);
|
console.log(sysCloneForm);
|
||||||
sysCloneForm.action = 'saveSysInfo';
|
sysCloneForm.action = 'saveSysInfo';
|
||||||
saveSysInfo(sysCloneForm, response => {
|
saveSysInfo(sysCloneForm, response => {
|
||||||
|
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
console.log(response);
|
console.log(response);
|
||||||
loading.close();
|
loading.close();
|
||||||
if (response.status >= 200 && response.status < 300) {
|
if (response.status >= 200 && response.status < 300) {
|
||||||
|
@ -845,6 +848,9 @@
|
||||||
// }
|
// }
|
||||||
this.$message.error('系统异常,请联系厂商。');
|
this.$message.error('系统异常,请联系厂商。');
|
||||||
}
|
}
|
||||||
|
}, 3000);
|
||||||
|
|
||||||
|
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
console.log('error submit!!');
|
console.log('error submit!!');
|
||||||
|
@ -875,6 +881,7 @@
|
||||||
|
|
||||||
//保存掘进机信息
|
//保存掘进机信息
|
||||||
saveTunnelInfo(this.tForm, response => {
|
saveTunnelInfo(this.tForm, response => {
|
||||||
|
setTimeout(() => {
|
||||||
console.log(response);
|
console.log(response);
|
||||||
loading.close();
|
loading.close();
|
||||||
if (response.status >= 200 && response.status < 300) {
|
if (response.status >= 200 && response.status < 300) {
|
||||||
|
@ -887,6 +894,8 @@
|
||||||
} else {
|
} else {
|
||||||
this.$message.error('系统异常,请联系厂商。');
|
this.$message.error('系统异常,请联系厂商。');
|
||||||
}
|
}
|
||||||
|
}, 3000);
|
||||||
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -915,6 +924,7 @@
|
||||||
});
|
});
|
||||||
this.joyForm.action = 'saveJoyInfo';
|
this.joyForm.action = 'saveJoyInfo';
|
||||||
saveJoyInfo(this.joyForm, response => {
|
saveJoyInfo(this.joyForm, response => {
|
||||||
|
setTimeout(() => {
|
||||||
console.log(response);
|
console.log(response);
|
||||||
loading.close();
|
loading.close();
|
||||||
if (response.status >= 200 && response.status < 300) {
|
if (response.status >= 200 && response.status < 300) {
|
||||||
|
@ -936,8 +946,8 @@
|
||||||
}
|
}
|
||||||
this.$message.error('系统异常,请联系厂商。');
|
this.$message.error('系统异常,请联系厂商。');
|
||||||
}
|
}
|
||||||
|
}, 3000);
|
||||||
})
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1144,6 +1154,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
_this.pwdModelShow = false;
|
_this.pwdModelShow = false;
|
||||||
|
this.$message.success('密码修改成功。');
|
||||||
} else {
|
} else {
|
||||||
//清空
|
//清空
|
||||||
for (let key in _this.sysForm) {
|
for (let key in _this.sysForm) {
|
||||||
|
|
Loading…
Reference in New Issue