dfws-ve-taro-request 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +7 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -4
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +7 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -6809,14 +6809,17 @@ var checkStatus = function (response, options, Taro) {
|
|
6809
6809
|
if (statusCode >= 200 && statusCode < 300 || statusCode == 406) {
|
6810
6810
|
if (data.code == 400 || statusCode == 406) {
|
6811
6811
|
Taro.showToast({
|
6812
|
-
title: data.msg,
|
6812
|
+
title: data.msg || '请求失败',
|
6813
6813
|
icon: 'none',
|
6814
|
+
duration: 2000
|
6814
6815
|
});
|
6815
6816
|
data.status = 0;
|
6816
6817
|
return data;
|
6817
6818
|
}
|
6818
|
-
|
6819
|
-
|
6819
|
+
if (typeof data.status == 'undefined') {
|
6820
|
+
data.status = 1;
|
6821
|
+
data.errMsg = "";
|
6822
|
+
}
|
6820
6823
|
return data;
|
6821
6824
|
}
|
6822
6825
|
if (statusCode === 401) {
|
@@ -6847,7 +6850,7 @@ var request = (function (url, data, method, header, Taro, debug) {
|
|
6847
6850
|
}
|
6848
6851
|
return Taro.request({
|
6849
6852
|
url: url,
|
6850
|
-
data: isEncode ? encryptByDES(data, debug) : data,
|
6853
|
+
data: isMethod ? {} : isEncode ? encryptByDES(data, debug) : data,
|
6851
6854
|
method: method,
|
6852
6855
|
timeout: 15000,
|
6853
6856
|
header: {
|