|
@@ -61527,6 +61527,7 @@ define(['exports'], function (exports) { 'use strict';
|
|
|
* onload 运行完成之后才会设置本标记为 true
|
|
|
*/
|
|
|
this.isLoadFinish = false;
|
|
|
+ this._isLoading = false;
|
|
|
this.model = model;
|
|
|
this.originalVjson = lodash.cloneDeep(vjson);
|
|
|
this.vjson = this.originalVjson; // this.buildVjson()
|
|
@@ -61579,8 +61580,12 @@ define(['exports'], function (exports) { 'use strict';
|
|
|
Scope.prototype.setLoading = function (value) {
|
|
|
var _a;
|
|
|
var scope = this;
|
|
|
+ this._isLoading = value;
|
|
|
(_a = scope._handle) === null || _a === void 0 ? void 0 : _a.setLoading(value);
|
|
|
};
|
|
|
+ Scope.prototype.getLoading = function () {
|
|
|
+ return this._isLoading;
|
|
|
+ };
|
|
|
/**
|
|
|
* 以对话框模式打开当前模块
|
|
|
* @param sender 发送者(按钮或Scope对象)
|