12345678910111213141516171819 |
- // README WISEWOODS
- Component({
- properties: {
- isRefresh: Boolean,
- isLoading: Boolean,
- isComplete: Boolean,
- isEmpty: Boolean,
- emptyImg: {
- type: String,
- value: 'default'
- },
- emptyTxt: {
- type: String,
- value: '暂无信息'
- }
- },
- data: {},
- methods: {}
- });
|