admin
2020-12-08 7f2d1daf6af6ecebad84d80de46a0e5024bbf5da
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
37
38
39
40
41
42
43
44
import fmtEvent from '../../_util/fmtEvent';
Component({
  data: {
    show: true
  },
  props: {
    className: '',
    time: 5000,
    onClose: function onClose() {},
    onTimeOut: function onTimeOut() {}
  },
  didMount: function didMount() {
    var _this = this;
 
    var time = this.props.time;
    this._timer = setTimeout(function () {
      _this.setData({
        show: false
      });
 
      _this.onTimeOut();
    }, time);
  },
  didUnmount: function didUnmount() {
    clearTimeout(this._timer);
  },
  methods: {
    onClose: function onClose(e) {
      var event = fmtEvent(this.props, e);
      this.setData({
        show: false
      });
      clearTimeout(this._timer);
      this.props.onClose(event);
    },
    onTimeOut: function onTimeOut(e) {
      var event = fmtEvent(this.props, e);
 
      if (this.props.onTimeOut && typeof this.props.onTimeOut === 'function') {
        this.props.onTimeOut(event);
      }
    }
  }
});