32 lines
450 B
JavaScript
32 lines
450 B
JavaScript
// components/empty/empty.js
|
|
Component({
|
|
properties: {
|
|
show: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
icon: {
|
|
type: String,
|
|
value: '📭'
|
|
},
|
|
text: {
|
|
type: String,
|
|
value: '暂无数据'
|
|
},
|
|
desc: {
|
|
type: String,
|
|
value: ''
|
|
},
|
|
buttonText: {
|
|
type: String,
|
|
value: ''
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onButtonClick() {
|
|
this.triggerEvent('buttonclick')
|
|
}
|
|
}
|
|
})
|