|
@@ -321,7 +321,27 @@ u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(
|
|
|
});
|
|
|
},
|
|
|
async: function (type, url, param, callback, dataType) {
|
|
|
- if (window.lrmui.isreal) {
|
|
|
+ return $.ajax({
|
|
|
+ url: url,
|
|
|
+ data: param,
|
|
|
+ type: type,
|
|
|
+ dataType: dataType || "json",
|
|
|
+ async: true,
|
|
|
+ cache: false,
|
|
|
+ success: function (res) {
|
|
|
+ callback(res);
|
|
|
+ },
|
|
|
+ error: function (XMLHttpRequest, textStatus, errorThrown) {
|
|
|
+ callback(null);
|
|
|
+ },
|
|
|
+ beforeSend: function () {
|
|
|
+ },
|
|
|
+ complete: function () {
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ /*
|
|
|
+ if (window.lrmui.isreal) {
|
|
|
if (type === 'GET') {
|
|
|
window.cordovaHTTP.get(url, param, {}, function (res) {
|
|
|
callback(JSON.parse(res.data));
|
|
@@ -357,6 +377,7 @@ u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
+ */
|
|
|
}
|
|
|
};
|
|
|
|