- 85 个 uView props.js 的中文注释由 GBK 乱码还原为 UTF-8 并去除 BOM - uview-ui/index.js 修复 2 行注释乱码 - 各文件头部 uview-init 兜底 import 保留,功能改动不变
30 lines
833 B
JavaScript
30 lines
833 B
JavaScript
import '@/common/uview-init.js'
|
|
export default {
|
|
props: {
|
|
// 激活部分的颜色
|
|
activeColor: {
|
|
type: String,
|
|
default: uni.$u.props.lineProgress.activeColor
|
|
},
|
|
inactiveColor: {
|
|
type: String,
|
|
default: uni.$u.props.lineProgress.color
|
|
},
|
|
// 进度百分比,数值
|
|
percentage: {
|
|
type: [String, Number],
|
|
default: uni.$u.props.lineProgress.inactiveColor
|
|
},
|
|
// 是否在进度条内部显示百分比的值
|
|
showText: {
|
|
type: Boolean,
|
|
default: uni.$u.props.lineProgress.showText
|
|
},
|
|
// 进度条的高度,单位px
|
|
height: {
|
|
type: [String, Number],
|
|
default: uni.$u.props.lineProgress.height
|
|
}
|
|
}
|
|
}
|