15061 动火前验票确认前 接受交底人必须签字 现在没有限制 接受交底人现在不签字也能走完流程了

limingyu-20240419-一公司危险作业更新
liujun 2024-04-10 13:09:57 +08:00
parent 06f76ab905
commit f58d3c0400
1 changed files with 16 additions and 7 deletions

View File

@ -554,13 +554,22 @@
name: 'FFILE', name: 'FFILE',
formData: formData, formData: formData,
success: (res) => { success: (res) => {
uni.showToast({ let info = JSON.parse(res.data)
icon: 'none', if (info.code == '9999') {
title: '保存成功', uni.showToast({
duration: 2000 icon: 'none',
}); title: info.errorMessage,
_this.goback() duration: 2000
this.buttonloading = false });
} else {
uni.showToast({
icon: 'none',
title: '保存成功',
duration: 2000
});
_this.goback()
this.buttonloading = false
}
}, },
fail: (err) => { fail: (err) => {
uni.hideLoading(); uni.hideLoading();