Bladeren bron

keymap 改造

luoyifan 3 jaren geleden
bovenliggende
commit
1bfa4898ff
2 gewijzigde bestanden met toevoegingen van 6 en 1 verwijderingen
  1. 5 0
      dist/yvan-ext.js
  2. 1 1
      dist/yvan-ext.js.map

+ 5 - 0
dist/yvan-ext.js

@@ -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对象)

File diff suppressed because it is too large
+ 1 - 1
dist/yvan-ext.js.map