From f7578f792d716d1aa4e6131c35bc325faba1488c Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Wed, 30 Jun 2021 14:27:49 +0800
Subject: [PATCH] 空间分析裁剪bug
---
widgets/null/Widget.js | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/widgets/null/Widget.js b/widgets/null/Widget.js
index c96ffe4..a797c94 100644
--- a/widgets/null/Widget.js
+++ b/widgets/null/Widget.js
@@ -27,13 +27,18 @@
that.closesNull();
})
+
+ that.beginNull();
+
},
beginNull: function () {
- console.log('kaishi')
+ console.log(`${this.name}--kaishi`);
+ var that = this;
},
closesNull: function (froms) {
- console.log('guanbi')
+ console.log(`${this.name}--guanbi`);
+ var that = this;
},
onOpen: function () {
--
Gitblit v1.9.3