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
import lifecycle from './mixins/lifecycle';
Component({
  mixins: [lifecycle],
  data: {
    maxHeight: 0
  },
  props: {
    className: '',
    onChange: function onChange() {},
    max: 10000,
    equalRows: 0
  },
  didMount: function didMount() {
    var commonProps = this.data.commonProps;
    var max = this.props.max;
    commonProps.max = max;
  },
  methods: {
    resetFn: function resetFn() {
      var _this$data = this.data,
          items = _this$data.items,
          results = _this$data.results;
      items.forEach(function (element) {
        element.setData({
          confirmStyle: ''
        });
      });
      results.splice(0, results.length);
    },
    confirmFn: function confirmFn() {
      var onChange = this.props.onChange;
      var results = this.data.results;
      onChange(results);
    },
    maskTap: function maskTap() {
      if (this.props.onMaskTap) {
        this.props.onMaskTap();
      }
    }
  }
});