dfws-ve-taro-request 0.1.2 → 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.js CHANGED
@@ -6811,8 +6811,9 @@ var checkStatus = function (response, options, Taro) {
6811
6811
  if (statusCode >= 200 && statusCode < 300 || statusCode == 406) {
6812
6812
  if (data.code == 400 || statusCode == 406) {
6813
6813
  Taro.showToast({
6814
- title: data.msg,
6814
+ title: data.msg || '请求失败',
6815
6815
  icon: 'none',
6816
+ duration: 2000
6816
6817
  });
6817
6818
  data.status = 0;
6818
6819
  return data;
@@ -6851,7 +6852,7 @@ var request = (function (url, data, method, header, Taro, debug) {
6851
6852
  }
6852
6853
  return Taro.request({
6853
6854
  url: url,
6854
- data: isEncode ? encryptByDES(data, debug) : data,
6855
+ data: isMethod ? {} : isEncode ? encryptByDES(data, debug) : data,
6855
6856
  method: method,
6856
6857
  timeout: 15000,
6857
6858
  header: {