@ibiz-template/runtime 0.5.7-alpha.6 → 0.5.7-alpha.7
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 +10 -2
- package/dist/index.system.min.js +1 -1
- package/out/controller/control/grid/grid/grid.controller.d.ts +1 -0
- package/out/controller/control/grid/grid/grid.controller.d.ts.map +1 -1
- package/out/controller/control/grid/grid/grid.controller.js +6 -0
- package/out/engine/view-base.engine.d.ts.map +1 -1
- package/out/engine/view-base.engine.js +4 -2
- package/package.json +2 -2
- package/src/controller/control/grid/grid/grid.controller.ts +7 -0
- package/src/engine/view-base.engine.ts +5 -2
package/dist/index.esm.js
CHANGED
|
@@ -25291,6 +25291,12 @@ var GridController = class extends MDControlController {
|
|
|
25291
25291
|
[this.state.remoteAggResult] = res.data;
|
|
25292
25292
|
}
|
|
25293
25293
|
}
|
|
25294
|
+
async getFetchParams(extraParams = {}) {
|
|
25295
|
+
if (this.model.enableItemPrivilege === true) {
|
|
25296
|
+
extraParams.srfdataaccessaction = true;
|
|
25297
|
+
}
|
|
25298
|
+
return super.getFetchParams(extraParams);
|
|
25299
|
+
}
|
|
25294
25300
|
/**
|
|
25295
25301
|
* 计算当前页的聚合数据
|
|
25296
25302
|
* @author lxm
|
|
@@ -33904,8 +33910,10 @@ var ViewEngineBase = class {
|
|
|
33904
33910
|
if (!this.calcViewHeaderVisible()) {
|
|
33905
33911
|
names.push("view_header");
|
|
33906
33912
|
}
|
|
33907
|
-
if (
|
|
33908
|
-
|
|
33913
|
+
if (ibiz.env.isMob) {
|
|
33914
|
+
if (!this.calcViewFooterVisible()) {
|
|
33915
|
+
names.push("view_footer");
|
|
33916
|
+
}
|
|
33909
33917
|
}
|
|
33910
33918
|
return names;
|
|
33911
33919
|
}
|