30 lines
508 B
JavaScript
30 lines
508 B
JavaScript
|
// components/container-loading/container-loading.js
|
||
|
Component({
|
||
|
|
||
|
/**
|
||
|
* 组件的属性列表
|
||
|
*/
|
||
|
properties: {
|
||
|
loadingState: {
|
||
|
type: String,
|
||
|
value: 'loading'
|
||
|
}
|
||
|
},
|
||
|
observers: {
|
||
|
'loadingState': function (newVal) {
|
||
|
this.setData({
|
||
|
loadingVisible: newVal
|
||
|
});
|
||
|
}
|
||
|
},
|
||
|
data: {
|
||
|
loadingVisible: 'loading'
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 组件的方法列表
|
||
|
*/
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
})
|