Skip to content

Commit

Permalink
v2.4.6-released
Browse files Browse the repository at this point in the history
  • Loading branch information
SmileZXLee committed Oct 24, 2022
1 parent bab9886 commit 593682a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions z-paging/uni_modules/z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2.4.5(2022-10-09
1.优化在非wxs平台(非h5、app、微信小程序、QQ小程序)下下拉刷新的动画细节,与wxs对齐
2.优化进入页面立即下拉刷新时对下拉手势的处理
3.优化代码结构,简化代码。
## 2.4.6(2022-10-24
1.修改`z-paging-refresh``z-paging-load-more`中的theme字段,以避免在某些情况下与mixins中全局引入的变量冲突
2.修复`z-paging-swiper`中,windowTop为const但是赋值了的问题
3.修复在nvue+安卓中,顶部占位cell过高时空数据图被切割的问题。
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// [z-paging]常量

export default {
version: '2.4.5',
version: '2.4.6',
delayTime: 100,
errorUpdateKey: 'z-paging-error-emit',
completeUpdateKey: 'z-paging-complete-emit',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ /_____| |_) | (_| | (_| | | | | | (_| |
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
|_| |___/ |___/
v2.4.5 (2022-10-09)
v2.4.6 (2022-10-24)
by ZXLee
-->
<!-- API文档地址:https://z-paging.zxlee.cn -->
Expand Down Expand Up @@ -96,8 +96,8 @@ by ZXLee
<view class="zp-list-container" :style="[innerListStyle]">
<template v-if="finalUseVirtualList">
<view class="zp-list-cell" :style="[innerCellStyle]" :id="`zp-id-${item['zp_index']}`" v-for="(item,index) in virtualList" :key="item['zp_unique_index']" @click="_innerCellClick(item,virtualTopRangeIndex+index)">
<view v-if="useCompatibilityMode">使用兼容模式请在组件源码z-paging.vue第99行中注释这一行,并打开下面一行注释</view>
<!-- <zp-public-virtual-cell v-if="useCompatibilityMode" :extraData="extraData" :item="item" :index="virtualTopRangeIndex+index" /> -->
<!-- <view v-if="useCompatibilityMode">使用兼容模式请在组件源码z-paging.vue第99行中注释这一行,并打开下面一行注释</view> -->
<zp-public-virtual-cell v-if="useCompatibilityMode" :extraData="extraData" :item="item" :index="virtualTopRangeIndex+index" />
<slot v-else name="cell" :item="item" :index="virtualTopRangeIndex+index"/>
</view>
</template>
Expand Down
2 changes: 1 addition & 1 deletion z-paging/uni_modules/z-paging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "z-paging",
"name": "z-paging",
"displayName": "【z-paging下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,支持nvue、vue3",
"version": "2.4.5",
"version": "2.4.6",
"description": "超简单、低耦合!使用wxs+renderjs实现。支持长列表优化,支持自定义下拉刷新、上拉加载更多,支持自动管理空数据图、点击返回顶部,支持聊天分页、本地分页,支持国际化等100+项配置",
"keywords": [
"下拉刷新",
Expand Down
2 changes: 1 addition & 1 deletion z-paging/uni_modules/z-paging/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# z-paging

[![version](https://img.shields.io/badge/version-2.4.5-blue)](https://github.com/SmileZXLee/uni-z-paging)
[![version](https://img.shields.io/badge/version-2.4.6-blue)](https://github.com/SmileZXLee/uni-z-paging)
[![license](https://img.shields.io/github/license/SmileZXLee/uni-z-paging)](https://en.wikipedia.org/wiki/MIT_License)

### API文档地址:[https://z-paging.zxlee.cn](https://z-paging.zxlee.cn)
Expand Down

0 comments on commit 593682a

Please sign in to comment.