1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| Component({
| externalClasses: ['wr-class'],
|
| options: {
| multipleSlots: true,
| },
|
| properties: {
| show: {
| type: Boolean,
| observer(show) {
| this.setData({ visible: show });
| },
| },
| closeBtn: {
| type: Boolean,
| value: false,
| },
| },
|
| data: { visible: false },
|
| methods: {
| reset() {
| this.triggerEvent('reset');
| },
| confirm() {
| this.triggerEvent('confirm');
| },
| close() {
| this.triggerEvent('showFilterPopupClose');
|
| this.setData({ visible: false });
| },
| },
| });
|
|