@steedos-widgets/amis-lib 6.10.1-beta.17 → 6.10.1-beta.18
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/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +4 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -3125,7 +3125,10 @@ async function getTableApi(mainObject, fields, options){
|
|
|
3125
3125
|
console.error("本地存储中crud参数解析异常:", ex);
|
|
3126
3126
|
}
|
|
3127
3127
|
${baseFilters ? `var systemFilters = ${JSON.stringify(baseFilters)};` : 'var systemFilters = [];'}
|
|
3128
|
-
var _ids = []
|
|
3128
|
+
var _ids = [];
|
|
3129
|
+
if(systemFilters && systemFilters.length){
|
|
3130
|
+
SteedosUI.traverseNestedArrayFormula(systemFilters, api.context);
|
|
3131
|
+
}
|
|
3129
3132
|
const filtersFunction = ${filtersFunction};
|
|
3130
3133
|
if(filtersFunction){
|
|
3131
3134
|
const _filters = filtersFunction(systemFilters, api.data.$self);
|