提交 6f29b3b2 编写于 作者: Anne_LXM's avatar Anne_LXM

list新增render-reverse属性

上级 78f62225
...@@ -56,6 +56,7 @@ app端nvue专用组件。在app-nvue下,如果是长列表,使用list组件 ...@@ -56,6 +56,7 @@ app端nvue专用组件。在app-nvue下,如果是长列表,使用list组件
|pagingEnabled|是否按分页模式显示List,默认值false|boolean|true/false| |pagingEnabled|是否按分页模式显示List,默认值false|boolean|true/false|
|scrollable|是否允许List滚动|boolean|true/false| |scrollable|是否允许List滚动|boolean|true/false|
|enable-back-to-top|iOS点击顶部状态栏滚动条返回顶部,只支持竖向|boolean|false| |enable-back-to-top|iOS点击顶部状态栏滚动条返回顶部,只支持竖向|boolean|false|
|render-reverse|定义是否从底部渲染,需搭配cell的属性render-reverse-position共同使用,单独配置会导致渲染异常。HBuilderX3.6.9+支持|boolean|false|
`loadmoreoffset` 示意图: `loadmoreoffset` 示意图:
...@@ -143,7 +144,7 @@ headerHeight|float|0|是|要吸顶的header顶部距离scroller顶部的距离 ...@@ -143,7 +144,7 @@ headerHeight|float|0|是|要吸顶的header顶部距离scroller顶部的距离
```html ```html
<template> <template>
<!-- ios 需要配置 fixFreezing="true" --> <!-- ios 需要配置 fixFreezing="true" -->
<view class="uni-swiper-page"> <view class="uni-swiper-page">
<list ref="list" fixFreezing="true"> <list ref="list" fixFreezing="true">
</list> </list>
...@@ -157,13 +158,13 @@ headerHeight|float|0|是|要吸顶的header顶部距离scroller顶部的距离 ...@@ -157,13 +158,13 @@ headerHeight|float|0|是|要吸顶的header顶部距离scroller顶部的距离
} }
}, },
methods: { methods: {
// 重置 loadmore // 重置 loadmore
setSpecialEffects() { setSpecialEffects() {
this.$refs["list"].setSpecialEffects({id:"scroller", headerHeight:150}); this.$refs["list"].setSpecialEffects({id:"scroller", headerHeight:150});
}, },
clearSpecialEffects() { clearSpecialEffects() {
this.$refs["list"].setSpecialEffects({}); this.$refs["list"].setSpecialEffects({});
} }
} }
} }
</script> </script>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册