Component({ /** * 组件的属性列表 */ properties: { progress: { type: Number, value: 0 }, isShow: { type: Boolean, value: false }, hintText: { type: String, value: '下载中...' } }, 'observers': { 'progress': function (newValue) { this.setData({ progressNum: newValue }) } }, /** * 组件的初始数据 */ data: { progressNum: 0 }, /** * 组件的方法列表 */ methods: { }, })