ASR/miniprogram/dist/progress/index.js
Saturneric 73fc37e472 Add.
2020-09-01 00:55:41 +08:00

24 lines
447 B
JavaScript

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
}
}
});