@ibiz-template/runtime 0.7.41-alpha.70 → 0.7.41-alpha.71

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 CHANGED
@@ -39286,6 +39286,18 @@ var MDControlController = class extends ControlController {
39286
39286
  return this.state.selectedData.length > 0;
39287
39287
  }
39288
39288
  }
39289
+ /**
39290
+ * @description 分页显示模式,default:显示完整分页栏,simple:只显示总条数,上一页,页码栏,下一页
39291
+ * @readonly
39292
+ * @type {('default' | 'simple')}
39293
+ * @memberof MDControlController
39294
+ */
39295
+ get paginationMode() {
39296
+ if (this.controlParams.paginationmode) {
39297
+ return this.controlParams.paginationmode;
39298
+ }
39299
+ return "default";
39300
+ }
39289
39301
  get _evt() {
39290
39302
  return this.evt;
39291
39303
  }
@@ -66602,6 +66614,7 @@ var WizardPanelController = class extends ControlController {
66602
66614
  );
66603
66615
  if (activeForm) {
66604
66616
  this.state.activeFormTag = activeForm.formTag;
66617
+ this.tagHistory.push(activeForm.formTag);
66605
66618
  }
66606
66619
  }
66607
66620
  }