
Some checks are pending
Actions / Litemall-all (11) (push) Waiting to run
Actions / Litemall-all (11.0.3) (push) Waiting to run
Actions / Litemall-all (8) (push) Waiting to run
Actions / Litemall-all (8.0.192) (push) Waiting to run
Actions / Litemall-admin (10.x) (push) Waiting to run
Actions / Litemall-admin (12.x) (push) Waiting to run
Actions / Litemall-admin (14.x) (push) Waiting to run
Actions / Litemall-vue (10.x) (push) Waiting to run
Actions / Litemall-vue (12.x) (push) Waiting to run
Actions / Litemall-vue (14.x) (push) Waiting to run
39 lines
863 B
JavaScript
39 lines
863 B
JavaScript
import { VantComponent } from '../common/component';
|
|
import { BLUE } from '../common/color';
|
|
import { addUnit } from '../common/utils';
|
|
VantComponent({
|
|
props: {
|
|
inactive: Boolean,
|
|
percentage: Number,
|
|
pivotText: String,
|
|
pivotColor: String,
|
|
trackColor: String,
|
|
showPivot: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
color: {
|
|
type: String,
|
|
value: BLUE
|
|
},
|
|
textColor: {
|
|
type: String,
|
|
value: '#fff'
|
|
},
|
|
strokeWidth: {
|
|
type: null,
|
|
observer: 'setStrokeWidthUnit'
|
|
}
|
|
},
|
|
data: {
|
|
strokeWidthUnit: '4px'
|
|
},
|
|
methods: {
|
|
setStrokeWidthUnit(val) {
|
|
this.setData({
|
|
strokeWidthUnit: addUnit(val)
|
|
});
|
|
}
|
|
}
|
|
});
|