使用 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,40 @@
export default {
props: {
// 吸顶容器到顶部某个距离的时候进行吸顶在H5平台NavigationBar为44px
offsetTop: {
type: [String, Number],
default: uni.$u.props.sticky.offsetTop
},
// 自定义导航栏的高度
customNavHeight: {
type: [String, Number],
// #ifdef H5
// H5端的导航栏属于“自定义”导航栏的范畴因为它是非原生的与普通元素一致
default: 44,
// #endif
// #ifndef H5
default: uni.$u.props.sticky.customNavHeight
// #endif
},
// 是否开启吸顶功能
disabled: {
type: Boolean,
default: uni.$u.props.sticky.disabled
},
// 吸顶区域的背景颜色
bgColor: {
type: String,
default: uni.$u.props.sticky.bgColor
},
// z-index值
zIndex: {
type: [String, Number],
default: uni.$u.props.sticky.zIndex
},
// 列表中的索引值
index: {
type: [String, Number],
default: uni.$u.props.sticky.index
}
}
}