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
| const app = getApp();
| Component({
| options: {
| addGlobalClass: true,
| },
| properties: {
| show: {
| type: Boolean,
| value: false
| },
| text: {
| type: String,
| value: '暂无数据'
| },
| subText: {
| type: String,
| value: ''
| }
| },
| data: {},
| methods: {
| onLoad(options) {
| console.log(options);
| },
| onShow() {
| console.log('onShow');
| },
| onReady() {
| console.log('onReady');
| },
| },
| lifetimes: {
| attached: function () { },
| moved: function () { },
| detached: function () { },
| },
| pageLifetimes: {
| show: function () { },
| hide: function () { },
| resize: function () { },
| },
| });
|
|