riku
2024-11-07 5036880fc037e5d112206b93a729f60be12bf8ab
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
// pages/enterprise/detail/components/inspection-stat/index.js
Component({
  properties: {
    title: {
      type: String,
      value: '标题',
    },
    note: {
      type: String,
      value: '',
    },
    value: {
      type: Object,
      
    },
    loading: {
      type: Boolean,
      value: false,
    },
  },
 
  data: {},
 
  methods: {
    noteClick() {
      this.triggerEvent('noteClick');
    },
  },
});