wux-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
35 lines (33 loc) • 791 B
JavaScript
import baseComponent from '../helpers/baseComponent'
import styleToCssString from '../helpers/libs/styleToCssString'
baseComponent({
relations: {
'../virtual-list/index': {
type: 'ancestor',
},
},
properties: {
prefixCls: {
type: String,
value: 'wux-virtual-item',
},
},
data: {
index: 0,
wrapStyle: '',
},
methods: {
updated(index, height) {
this.setData({
index,
wrapStyle: styleToCssString({
position: 'absolute',
left: 0,
top: index * height,
width: '100%',
height,
}),
})
},
},
})