@netang/quasar 0.1.30 → 0.1.32

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.
@@ -789,7 +789,7 @@ export default {
789
789
  }
790
790
  ),
791
791
  // 是否开启防抖(防止重复请求)
792
- // debounce: false,
792
+ debounce: false,
793
793
  }
794
794
 
795
795
  // 请求数据
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netang/quasar",
3
- "version": "0.1.30",
3
+ "version": "0.1.32",
4
4
  "description": "netang-quasar",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
package/utils/$table.js CHANGED
@@ -902,7 +902,7 @@ function create(options) {
902
902
  data: getTableRequestData(props, isRequestSummary),
903
903
  // ~~~~~~ 先开启防抖, 如果后期遇到表格加载不出来的情况, 再关闭防抖
904
904
  // 关闭防抖(允许重复请求)
905
- // debounce: false,
905
+ debounce: false,
906
906
  }, o.httpSettings)
907
907
 
908
908
  const { status, data: res } = $n_isFunction(o.request)