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
| Component({
| props: {
| className: '',
| show: false,
| position: 'bottom',
| mask: true,
| animation: true,
| disableScroll: true
| },
| methods: {
| onMaskTap: function onMaskTap() {
| var _this$props = this.props,
| onClose = _this$props.onClose,
| animation = _this$props.animation;
|
| if (onClose) {
| if (animation) {
| onClose();
| } else {
| setTimeout(function () {
| onClose();
| }, 200);
| }
| }
| }
| }
| });
|
|