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