Files
bodyWeight/miniprogram/components/userManagementSync/userManagementSync.ts
T

20 lines
376 B
TypeScript

Component({
properties: {
/** 是否显示弹框 */
show: {
type: Boolean,
value: false
},
/** 同步进度百分比 */
percent: {
type: Number,
value: 0
},
/** 同步状态文案 */
status: {
type: String,
value: ''
}
}
})