使用 uview 重构实际登陆

This commit is contained in:
YunaiV
2021-11-27 23:45:09 +08:00
parent 002aea34ae
commit 0d8f10cf1f
370 changed files with 37199 additions and 160 deletions

View File

@ -0,0 +1,44 @@
export default {
props: {
// tab的数据
list: {
type: Array,
default: uni.$u.props.subsection.list
},
// 当前活动的tab的index
current: {
type: [String, Number],
default: uni.$u.props.subsection.current
},
// 激活的颜色
activeColor: {
type: String,
default: uni.$u.props.subsection.activeColor
},
// 未激活的颜色
inactiveColor: {
type: String,
default: uni.$u.props.subsection.inactiveColor
},
// 模式选择mode=button为按钮形式mode=subsection时为分段模式
mode: {
type: String,
default: uni.$u.props.subsection.mode
},
// 字体大小
fontSize: {
type: [String, Number],
default: uni.$u.props.subsection.fontSize
},
// 激活tab的字体是否加粗
bold: {
type: Boolean,
default: uni.$u.props.subsection.bold
},
// mode = button时组件背景颜色
bgColor: {
type: String,
default: uni.$u.props.subsection.bgColor
}
}
}