浏览代码

keymap 改造

luoyifan 3 年之前
父节点
当前提交
1bfa4898ff
共有 2 个文件被更改,包括 6 次插入1 次删除
  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对象)

文件差异内容过多而无法显示
+ 1 - 1
dist/yvan-ext.js.map