shuziren/job-seeker/miniprogram-2/miniprogram_npm/iview-weapp/progress/index.js

24 lines
447 B
JavaScript
Raw Normal View History

2024-02-29 08:06:26 +00:00
Component({
externalClasses: ['i-class'],
properties: {
percent: {
type: Number,
value: 0
},
// normal || active || wrong || success
status: {
type: String,
value: 'normal'
},
strokeWidth: {
type: Number,
value: 10
},
hideInfo: {
type: Boolean,
value: false
}
}
});