@tongfun/tf-widget 0.1.31 → 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.
package/lib/tf-widget.common.js
CHANGED
|
@@ -106917,7 +106917,8 @@ function tableV3_getTableData(target, data, queryType) {
|
|
|
106917
106917
|
return request({
|
|
106918
106918
|
url: "/api".concat(target, "/tList"),
|
|
106919
106919
|
method: 'post',
|
|
106920
|
-
data: data
|
|
106920
|
+
data: data,
|
|
106921
|
+
timeout: 1000 * 60 * 60
|
|
106921
106922
|
});
|
|
106922
106923
|
} // 获取列表的合计
|
|
106923
106924
|
|
package/lib/tf-widget.umd.js
CHANGED
|
@@ -106926,7 +106926,8 @@ function tableV3_getTableData(target, data, queryType) {
|
|
|
106926
106926
|
return request({
|
|
106927
106927
|
url: "/api".concat(target, "/tList"),
|
|
106928
106928
|
method: 'post',
|
|
106929
|
-
data: data
|
|
106929
|
+
data: data,
|
|
106930
|
+
timeout: 1000 * 60 * 60
|
|
106930
106931
|
});
|
|
106931
106932
|
} // 获取列表的合计
|
|
106932
106933
|
|