修正之前的人写的错误代码

This commit is contained in:
Jerry Yan 2020-05-23 12:26:13 +08:00
parent 0565128eae
commit 64872b2e78

View File

@ -21,9 +21,8 @@ mui.plusReady(function() {
if (isloading == true) { if (isloading == true) {
return; return;
} else { } else {
isloading = false; isloading = true;
} }
isloading == true
JZL.ajax(qlgUrl("app/shops/getSpecs"), recommenddata, function(data) { JZL.ajax(qlgUrl("app/shops/getSpecs"), recommenddata, function(data) {
//console.log(data); //console.log(data);
if (data.status == 1) { if (data.status == 1) {
@ -49,7 +48,7 @@ mui.plusReady(function() {
} else { } else {
mui.alert(data.msg) mui.alert(data.msg)
} }
isloading == false; isloading = false;
}) })
} }