1
This commit is contained in:
42
uview-plus/components/u-sticky/props.js
Normal file
42
uview-plus/components/u-sticky/props.js
Normal file
@@ -0,0 +1,42 @@
|
||||
import { defineMixin } from '../../libs/vue'
|
||||
import defProps from '../../libs/config/props.js'
|
||||
export const props = defineMixin({
|
||||
props: {
|
||||
// 吸顶容器到顶部某个距离的时候,进行吸顶,在H5平台,NavigationBar为44px
|
||||
offsetTop: {
|
||||
type: [String, Number],
|
||||
default: () => defProps.sticky.offsetTop
|
||||
},
|
||||
// 自定义导航栏的高度
|
||||
customNavHeight: {
|
||||
type: [String, Number],
|
||||
// #ifdef H5
|
||||
// H5端的导航栏属于“自定义”导航栏的范畴,因为它是非原生的,与普通元素一致
|
||||
default: 44,
|
||||
// #endif
|
||||
// #ifndef H5
|
||||
default: () => defProps.sticky.customNavHeight
|
||||
// #endif
|
||||
},
|
||||
// 是否开启吸顶功能
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
default: () => defProps.sticky.disabled
|
||||
},
|
||||
// 吸顶区域的背景颜色
|
||||
bgColor: {
|
||||
type: String,
|
||||
default: () => defProps.sticky.bgColor
|
||||
},
|
||||
// z-index值
|
||||
zIndex: {
|
||||
type: [String, Number],
|
||||
default: () => defProps.sticky.zIndex
|
||||
},
|
||||
// 列表中的索引值
|
||||
index: {
|
||||
type: [String, Number],
|
||||
default: () => defProps.sticky.index
|
||||
}
|
||||
}
|
||||
})
|
||||
20
uview-plus/components/u-sticky/sticky.js
Normal file
20
uview-plus/components/u-sticky/sticky.js
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* @Author : LQ
|
||||
* @Description :
|
||||
* @version : 1.0
|
||||
* @Date : 2021-08-20 16:44:21
|
||||
* @LastAuthor : LQ
|
||||
* @lastTime : 2021-08-20 17:01:30
|
||||
* @FilePath : /u-view2.0/uview-ui/libs/config/props/sticky.js
|
||||
*/
|
||||
export default {
|
||||
// sticky组件
|
||||
sticky: {
|
||||
offsetTop: 0,
|
||||
customNavHeight: 0,
|
||||
disabled: false,
|
||||
bgColor: 'transparent',
|
||||
zIndex: '',
|
||||
index: ''
|
||||
}
|
||||
}
|
||||
216
uview-plus/components/u-sticky/u-sticky.vue
Normal file
216
uview-plus/components/u-sticky/u-sticky.vue
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user