提交 1377d692 authored 作者: 钟是志's avatar 钟是志

增加验证

上级 744e9dd5
......@@ -97,14 +97,21 @@ export function requestFileInfo(url, datas) {
});
return false;
}
if (res.status === 404) {
qqCw({
title: 'http404报错',
customErrMsg: '请联系系统管理员',
});
return false;
}
// console.log(res.status);
return res.json();
})
.then(res => {
// console.log(res);
if (res && res.errCode && res.message) {
if (res && res.errCode) {
qqCw({
msg: res.errMsg,
msg: res.errMsg || res.message,
customErrMsg: res.customErrMsg,
});
return false;
......
......@@ -23,7 +23,7 @@ export default function prepareShow(postData = {}, content = '') {
window.Modal = Modal;
window.moment = moment;
return new Promise((resolve, reject) => {
if(agg?.unifiedServicePatternModel.id){
if(agg?.unifiedServicePatternModel?.id){
console.log('%c' + `/admin/processServices/modelConfig/templateDetail/designById?id=${agg.unifiedServicePatternModel.id}&token=${getToken()}`, 'color: green;background: white;font-size: 14px');
console.log('%c' + `/designFormByUrl?id=${agg.unifiedServicePatternModel.id}&token=${getToken()}`, 'color: green;background: white;font-size: 14px');
}
......
......@@ -41,12 +41,18 @@ const codeMessage = {
*
* return URL参数字符串
*/
let time = new Date().getTime();
export const qqCw = ({
title = '请求错误',
msg = '',
customErrMsg = '',
}) => {
let nowX = new Date().getTime() - time;
if(nowX < 3000){
return false;
}
time = new Date().getTime();
// 请求错误 增加自定义错误提示信息 customErrMsg 从发起 接口那里自定义
// 禅道bug 11794
notification.error({
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论