Skip to content

Commit 6866af1

Browse files
committed
v0.2.2-released
1 parent 170cbc0 commit 6866af1

File tree

7 files changed

+12
-7
lines changed

7 files changed

+12
-7
lines changed

z-paging-x/components/custom-refresher/custom-refresher.uvue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
/* #ifndef UNI-APP-X */
3535
display: flex;
3636
/* #endif */
37-
height: 180rpx;
37+
/* 这里下拉刷新view高度需要用px,否则在iOS中下拉刷新view会被展示在最底部 */
38+
height: 90px;
3839
flex-direction: column;
3940
align-items: center;
4041
justify-content: center;

z-paging-x/components/index-nav/index-nav.uvue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<view class="index-nav-inner" :style="navbarStyle">
44
<view class="index-nav-content" >
55
<image class="index-nav-image" src="/static/title-logo-x.png" mode="aspectFit"></image>
6-
<text class="index-nav-version">0.2.1</text>
6+
<text class="index-nav-version">0.2.2</text>
77
</view>
88
</view>
99
</view>

z-paging-x/uni_modules/z-paging-x/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.2.2(2024-07-08)
2+
增加对iOS的支持
13
## 0.2.1(2024-03-10)
24
1.`新增` `scroll-to-top-when-reload``clean-list-when-reload`,支持控制reload时是否自动滚动到顶部&reload时是否立即自动清空原list。
35
2.`修复` 在HBuilderX4.0+ 中loading动画失效的问题。

z-paging-x/uni_modules/z-paging-x/components/z-paging-x/components/z-paging-refresher.uvue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@
8787

8888
<style scoped>
8989
.zpx-r-container {
90-
height: 80rpx;
90+
/* 这里下拉刷新view高度需要用px,否则在iOS中下拉刷新view会被展示在最底部 */
91+
height: 40px;
9192
flex-direction: row;
9293
align-items: center;
9394
justify-content: center;

z-paging-x/uni_modules/z-paging-x/components/z-paging-x/z-paging-x.uvue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
66
|_| |___/ |___/ X
77

8-
v0.2.1 (2024-03-10)
8+
v0.2.2 (2024-07-08)
99
by ZXLee
1010
-->
1111
<!-- 文档地址:https://z-paging.zxlee.cn -->

z-paging-x/uni_modules/z-paging-x/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "z-paging-x",
33
"name": "z-paging-x",
44
"displayName": "【z-paging-x下拉刷新、上拉加载】z-paging uniappx版已上线!",
5-
"version": "0.2.1",
5+
"version": "0.2.2",
66
"description": "分页全自动处理,支持自定义下拉刷新、上拉加载更多、自动管理空数据图、点击返回顶部等,持续完善中",
77
"keywords": [
88
"uniapp-x",
@@ -41,7 +41,8 @@
4141
"platforms": {
4242
"cloud": {
4343
"tcb": "y",
44-
"aliyun": "y"
44+
"aliyun": "y",
45+
"alipay": "n"
4546
},
4647
"client": {
4748
"Vue": {

z-paging-x/uni_modules/z-paging-x/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
> z-paging uniapp x版
88
9-
[![version](https://img.shields.io/badge/version-0.2.1-blue)](https://github.com/SmileZXLee/uni-z-paging-x)
9+
[![version](https://img.shields.io/badge/version-0.2.2-blue)](https://github.com/SmileZXLee/uni-z-paging-x)
1010
[![license](https://img.shields.io/github/license/SmileZXLee/uni-z-paging-x)](https://en.wikipedia.org/wiki/MIT_License)
1111

1212
***

0 commit comments

Comments
 (0)