修改提示

master
ljl 1 year ago
parent 10421d4694
commit 78f90499d2

@ -308,7 +308,7 @@
success:function(result) {
if(result.code==0) {
flag=false;
$(".tipmsg").html(result.msg);
$(".tipmsg").html(result.msg || '未知错误');
$(".msgdialog").show();
}
},
@ -436,7 +436,7 @@
showWindow(result.msg);
} else {
flag=false;
$(".tipmsg").html(result.msg);
$(".tipmsg").html(result.msg || '未知错误');
$(".msgdialog").show();
}
},
@ -465,7 +465,7 @@
showWindow(result.msg);
} else {
flag=false;
$(".tipmsg").html(result.msg);
$(".tipmsg").html(result.msg || '未知错误');
$(".msgdialog").show();
}
},
@ -494,7 +494,7 @@
showWindow(result.msg);
} else {
flag=false;
$(".tipmsg").html(result.msg);
$(".tipmsg").html(result.msg || '未知错误');
$(".msgdialog").show();
}
},
@ -526,7 +526,7 @@
showWindow(result.msg);
} else {
flag=false;
$(".tipmsg").html(result.msg);
$(".tipmsg").html(result.msg || '未知错误');
$(".msgdialog").show();
}
},

@ -303,7 +303,7 @@ $(function() {
if(result.code==200) {
window.location.href = result.url;
} else {
$("#tipmsg").html(result.msg);
$("#tipmsg").html(result.msg || '未知错误');
$("#msgdialog").show();
}
}
@ -350,7 +350,7 @@ $(function() {
if(result.code==200) {
window.location.href = result.url;
} else {
$("#tipmsg").html(result.msg);
$("#tipmsg").html(result.msg || '未知错误');
$("#msgdialog").show();
}
}

@ -312,7 +312,7 @@
window.location.href = result.url;
} else {
flag=false;
$(".tipmsg").html(result.msg);
$(".tipmsg").html(result.msg || '未知错误');
$(".msgdialog").show();
}
},
@ -338,7 +338,7 @@
window.location.href = result.url;
} else {
flag=false;
$(".tipmsg").html(result.msg);
$(".tipmsg").html(result.msg || '未知错误');
$(".msgdialog").show();
}
},

@ -257,7 +257,7 @@
success:function(result) {
if(result.code==0) {
flag=false;
$(".tipmsg").html(result.msg);
$(".tipmsg").html(result.msg || '未知错误');
$(".msgdialog").show();
}
},
@ -352,7 +352,7 @@
} else if(r.code == 1001) {
showWindow(r.msg);
} else {
$(".tipmsg").html(r.msg);
$(".tipmsg").html(r.msg || '未知错误');
$(".msgdialog").show();
}
@ -395,7 +395,7 @@
} else if(result.code == 1001) {
showWindow(result.msg);
}else {
$(".tipmsg").html(result.msg);
$(".tipmsg").html(result.msg || '未知错误');
$(".msgdialog").show();
}
}
@ -417,7 +417,7 @@
} else if(r.code == 1001) {
showWindow(r.msg);
} else {
$(".tipmsg").html(r.msg);
$(".tipmsg").html(r.msg || '未知错误');
$(".msgdialog").show();
}
}
@ -447,7 +447,7 @@
showWindow(result.msg);
} else {
flag=false;
$(".tipmsg").html(result.msg);
$(".tipmsg").html(result.msg || '未知错误');
$(".msgdialog").show();
}
},

Loading…
Cancel
Save