feat(userManagement): 用户管理新增空态与同步进度弹框组件
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.7
parent
9040fc4fba
commit
3e0d260fdc
@@ -0,0 +1,19 @@
|
||||
Component({
|
||||
properties: {
|
||||
/** 是否显示弹框 */
|
||||
show: {
|
||||
type: Boolean,
|
||||
value: false
|
||||
},
|
||||
/** 同步进度百分比 */
|
||||
percent: {
|
||||
type: Number,
|
||||
value: 0
|
||||
},
|
||||
/** 同步状态文案 */
|
||||
status: {
|
||||
type: String,
|
||||
value: ''
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user