@tuya-miniapp/smart-ui 2.3.4-beta-1 → 2.3.4-beta-2
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/popover/index.js +6 -2
- package/lib/popover/index.js +6 -2
- package/package.json +1 -1
package/dist/popover/index.js
CHANGED
@@ -23,6 +23,10 @@ SmartComponent({
|
|
23
23
|
show: {
|
24
24
|
type: Boolean,
|
25
25
|
observer(value) {
|
26
|
+
if (this.data.cancel_timer) {
|
27
|
+
clearTimeout(this.data.cancel_timer);
|
28
|
+
this.data.cancel_timer = null;
|
29
|
+
}
|
26
30
|
if (value !== this.data.currentShow) {
|
27
31
|
if (value) {
|
28
32
|
this.onOpen();
|
@@ -46,7 +50,7 @@ SmartComponent({
|
|
46
50
|
value: 20000,
|
47
51
|
},
|
48
52
|
},
|
49
|
-
data: { currentShow: false, showStyle: '' },
|
53
|
+
data: { currentShow: false, showStyle: '', cancel_timer: null },
|
50
54
|
mounted() { },
|
51
55
|
created() { },
|
52
56
|
methods: {
|
@@ -172,7 +176,7 @@ SmartComponent({
|
|
172
176
|
}, 100);
|
173
177
|
this.$emit('show-change', true);
|
174
178
|
if (this.data.duration) {
|
175
|
-
setTimeout(() => {
|
179
|
+
this.data.cancel_timer = setTimeout(() => {
|
176
180
|
this.onClose();
|
177
181
|
}, this.data.duration);
|
178
182
|
}
|
package/lib/popover/index.js
CHANGED
@@ -38,6 +38,10 @@ function createSvgIcon(svg) {
|
|
38
38
|
show: {
|
39
39
|
type: Boolean,
|
40
40
|
observer: function (value) {
|
41
|
+
if (this.data.cancel_timer) {
|
42
|
+
clearTimeout(this.data.cancel_timer);
|
43
|
+
this.data.cancel_timer = null;
|
44
|
+
}
|
41
45
|
if (value !== this.data.currentShow) {
|
42
46
|
if (value) {
|
43
47
|
this.onOpen();
|
@@ -61,7 +65,7 @@ function createSvgIcon(svg) {
|
|
61
65
|
value: 20000,
|
62
66
|
},
|
63
67
|
},
|
64
|
-
data: { currentShow: false, showStyle: '' },
|
68
|
+
data: { currentShow: false, showStyle: '', cancel_timer: null },
|
65
69
|
mounted: function () { },
|
66
70
|
created: function () { },
|
67
71
|
methods: {
|
@@ -188,7 +192,7 @@ function createSvgIcon(svg) {
|
|
188
192
|
}, 100);
|
189
193
|
this.$emit('show-change', true);
|
190
194
|
if (this.data.duration) {
|
191
|
-
setTimeout(function () {
|
195
|
+
this.data.cancel_timer = setTimeout(function () {
|
192
196
|
_this.onClose();
|
193
197
|
}, this.data.duration);
|
194
198
|
}
|