修改异常提醒
This commit is contained in:
parent
125198a681
commit
2a77606996
|
@ -821,30 +821,36 @@
|
||||||
console.log(sysCloneForm);
|
console.log(sysCloneForm);
|
||||||
sysCloneForm.action = 'saveSysInfo';
|
sysCloneForm.action = 'saveSysInfo';
|
||||||
saveSysInfo(sysCloneForm, response => {
|
saveSysInfo(sysCloneForm, response => {
|
||||||
console.log(response);
|
|
||||||
loading.close();
|
|
||||||
if (response.status >= 200 && response.status < 300) {
|
setTimeout(() => {
|
||||||
if (response.data.result == 'success') {
|
console.log(response);
|
||||||
//循环赋值
|
loading.close();
|
||||||
// for (let key in _this.sysForm) {
|
if (response.status >= 200 && response.status < 300) {
|
||||||
// _this.sysForm[key] = response.data[key];
|
if (response.data.result == 'success') {
|
||||||
// }
|
//循环赋值
|
||||||
this.$message.success('保存成功。');
|
// for (let key in _this.sysForm) {
|
||||||
|
// _this.sysForm[key] = response.data[key];
|
||||||
|
// }
|
||||||
|
this.$message.success('保存成功。');
|
||||||
|
} else {
|
||||||
|
//清空
|
||||||
|
// for (let key in _this.sysForm) {
|
||||||
|
// _this.sysForm[key] = null;
|
||||||
|
// }
|
||||||
|
this.$message.error('系统信息保存失败。');
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
//清空
|
//清空
|
||||||
// for (let key in _this.sysForm) {
|
// for (let key in _this.sysForm) {
|
||||||
// _this.sysForm[key] = null;
|
// _this.sysForm[key] = null;
|
||||||
// }
|
// }
|
||||||
this.$message.error('系统信息保存失败。');
|
this.$message.error('系统异常,请联系厂商。');
|
||||||
}
|
}
|
||||||
|
}, 3000);
|
||||||
|
|
||||||
|
|
||||||
} else {
|
|
||||||
//清空
|
|
||||||
// for (let key in _this.sysForm) {
|
|
||||||
// _this.sysForm[key] = null;
|
|
||||||
// }
|
|
||||||
this.$message.error('系统异常,请联系厂商。');
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
console.log('error submit!!');
|
console.log('error submit!!');
|
||||||
|
@ -875,18 +881,21 @@
|
||||||
|
|
||||||
//保存掘进机信息
|
//保存掘进机信息
|
||||||
saveTunnelInfo(this.tForm, response => {
|
saveTunnelInfo(this.tForm, response => {
|
||||||
console.log(response);
|
setTimeout(() => {
|
||||||
loading.close();
|
console.log(response);
|
||||||
if (response.status >= 200 && response.status < 300) {
|
loading.close();
|
||||||
if (response.data.result == 'success') {
|
if (response.status >= 200 && response.status < 300) {
|
||||||
this.$message.success('保存成功。');
|
if (response.data.result == 'success') {
|
||||||
} else {
|
this.$message.success('保存成功。');
|
||||||
this.$message.error('掘进机信息保存失败。');
|
} else {
|
||||||
}
|
this.$message.error('掘进机信息保存失败。');
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
this.$message.error('系统异常,请联系厂商。');
|
||||||
|
}
|
||||||
|
}, 3000);
|
||||||
|
|
||||||
} else {
|
|
||||||
this.$message.error('系统异常,请联系厂商。');
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -915,29 +924,30 @@
|
||||||
});
|
});
|
||||||
this.joyForm.action = 'saveJoyInfo';
|
this.joyForm.action = 'saveJoyInfo';
|
||||||
saveJoyInfo(this.joyForm, response => {
|
saveJoyInfo(this.joyForm, response => {
|
||||||
console.log(response);
|
setTimeout(() => {
|
||||||
loading.close();
|
console.log(response);
|
||||||
if (response.status >= 200 && response.status < 300) {
|
loading.close();
|
||||||
if (response.data.result == 'success') {
|
if (response.status >= 200 && response.status < 300) {
|
||||||
//循环赋值
|
if (response.data.result == 'success') {
|
||||||
this.$message.success('保存成功。');
|
//循环赋值
|
||||||
|
this.$message.success('保存成功。');
|
||||||
|
} else {
|
||||||
|
//清空
|
||||||
|
for (let key in _this.joyForm) {
|
||||||
|
_this.joyForm[key] = null;
|
||||||
|
}
|
||||||
|
this.$message.error('手柄配置保存失败,请重试。');
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
//清空
|
//清空
|
||||||
for (let key in _this.joyForm) {
|
for (let key in _this.joyForm) {
|
||||||
_this.joyForm[key] = null;
|
_this.joyForm[key] = null;
|
||||||
}
|
}
|
||||||
this.$message.error('手柄配置保存失败,请重试。');
|
this.$message.error('系统异常,请联系厂商。');
|
||||||
}
|
}
|
||||||
|
}, 3000);
|
||||||
} else {
|
|
||||||
//清空
|
|
||||||
for (let key in _this.joyForm) {
|
|
||||||
_this.joyForm[key] = null;
|
|
||||||
}
|
|
||||||
this.$message.error('系统异常,请联系厂商。');
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -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