Skip to content

Commit

Permalink
v2.6.8-released
Browse files Browse the repository at this point in the history
  • Loading branch information
SmileZXLee committed Dec 28, 2023
1 parent 9844e6c commit 7f7de25
Show file tree
Hide file tree
Showing 30 changed files with 87 additions and 75 deletions.
2 changes: 2 additions & 0 deletions demo/z-paging-demo/uni_modules/z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 2.6.8(2023-12-28)
`修复` 在微信小程序中报错`:class不支持"xxx-${unit}"语法`的问题。
## 2.6.7(2023-12-27)
1.`新增` props:`unit`,支持自定义`z-paging`内置布局单位为rpx或px。
2.`优化` 之前在安卓中`scroll-view`有概率滚动到顶部时`scrollTop`不为0导致下拉刷新判断异常,经过测试在`HX3.98+`已修复,关闭容错判断并解决由此引发的安卓在特定位置下拉抖动的问题。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<template>
<view :class="{'zp-container':true,'zp-container-fixed':emptyViewFixed}" :style="[finalEmptyViewStyle]" @click="emptyViewClick">
<view class="zp-main">
<image v-if="!emptyViewImg.length" :class="`zp-main-image-${unit}`" :style="[emptyViewImgStyle]" :src="emptyImg" />
<image v-else :class="`zp-main-image-${unit}`" mode="aspectFit" :style="[emptyViewImgStyle]" :src="emptyViewImg" />
<text :class="`zp-main-title zp-main-title-${unit}`" :style="[emptyViewTitleStyle]">{{emptyViewText}}</text>
<image v-if="!emptyViewImg.length" :class="{'zp-main-image-rpx':unit==='rpx','zp-main-image-px':unit==='px'}" :style="[emptyViewImgStyle]" :src="emptyImg" />
<image v-else :class="{'zp-main-image-rpx':unit==='rpx','zp-main-image-px':unit==='px'}" mode="aspectFit" :style="[emptyViewImgStyle]" :src="emptyViewImg" />
<text class="zp-main-title" :class="{'zp-main-title-rpx':unit==='rpx','zp-main-title-px':unit==='px'}" :style="[emptyViewTitleStyle]">{{emptyViewText}}</text>
<text v-if="showEmptyViewReload" class="zp-main-error-btn" :style="[emptyViewReloadStyle]" @click.stop="reloadClick">{{emptyViewReloadText}}</text>
</view>
</view>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
<!-- [z-paging]上拉加载更多view -->
<template>
<view class="zp-l-container" :class="`zp-l-container-${c.unit}`" :style="[c.customStyle]" @click="doClick">
<view class="zp-l-container" :class="{'zp-l-container-rpx':c.unit==='rpx','zp-l-container-px':c.unit==='px'}" :style="[c.customStyle]" @click="doClick">
<template v-if="!c.hideContent">
<text v-if="c.showNoMoreLine&&finalStatus===M.NoMore" :class="`zp-l-line-${c.unit}`" :style="[{backgroundColor:zTheme.line[ts]},c.noMoreLineCustomStyle]" />
<text v-if="c.showNoMoreLine&&finalStatus===M.NoMore" :class="{'zp-l-line-rpx':c.unit==='rpx','zp-l-line-px':c.unit==='px'}" :style="[{backgroundColor:zTheme.line[ts]},c.noMoreLineCustomStyle]" />
<!-- #ifndef APP-NVUE -->
<image v-if="finalStatus===M.Loading&&!!c.loadingIconCustomImage"
:src="c.loadingIconCustomImage" :style="[c.iconCustomStyle]" :class="{'zp-l-line-loading-custom-image':true,'zp-l-line-loading-custom-image-animated':c.loadingAnimated,'zp-l-line-loading-custom-image-rpx':c.unit==='rpx','zp-l-line-loading-custom-image-px':c.unit==='px'}" />
<image v-if="finalStatus===M.Loading&&finalLoadingIconType==='flower'&&!c.loadingIconCustomImage.length"
:class="`zp-line-loading-image-${c.unit}`" :style="[c.iconCustomStyle]" :src="zTheme.flower[ts]" />
:class="{'zp-line-loading-image-rpx':c.unit==='rpx','zp-line-loading-image-px':c.unit==='px'}" :style="[c.iconCustomStyle]" :src="zTheme.flower[ts]" />
<!-- #endif -->
<!-- #ifdef APP-NVUE -->
<view>
<loading-indicator v-if="finalStatus===M.Loading&&finalLoadingIconType!=='circle'" :class="`zp-line-loading-image-${c.unit}`" :style="[{color:zTheme.indicator[ts]}]" :animating="true" />
<loading-indicator v-if="finalStatus===M.Loading&&finalLoadingIconType!=='circle'" :class="{'zp-line-loading-image-rpx':c.unit==='rpx','zp-line-loading-image-px':c.unit==='px'}" :style="[{color:zTheme.indicator[ts]}]" :animating="true" />
</view>
<!-- #endif -->
<text v-if="finalStatus===M.Loading&&finalLoadingIconType==='circle'&&!c.loadingIconCustomImage.length"
class="zp-l-circle-loading-view" :class="`zp-l-circle-loading-view-${c.unit}`" :style="[{borderColor:zTheme.circleBorder[ts],borderTopColor:zTheme.circleBorderTop[ts]},c.iconCustomStyle]" />
<text :class="`zp-l-text-${c.unit}`" :style="[{color:zTheme.title[ts]},c.titleCustomStyle]">{{ownLoadingMoreText}}</text>
<text v-if="c.showNoMoreLine&&finalStatus===M.NoMore" :class="`zp-l-line-${c.unit}`" :style="[{backgroundColor:zTheme.line[ts]},c.noMoreLineCustomStyle]" />
class="zp-l-circle-loading-view" :class="{'zp-l-circle-loading-view-rpx':c.unit==='rpx','zp-l-circle-loading-view-px':c.unit==='px'}" :style="[{borderColor:zTheme.circleBorder[ts],borderTopColor:zTheme.circleBorderTop[ts]},c.iconCustomStyle]" />
<text :class="{'zp-l-text-rpx':c.unit==='rpx','zp-l-text-px':c.unit==='px'}" :style="[{color:zTheme.title[ts]},c.titleCustomStyle]">{{ownLoadingMoreText}}</text>
<text v-if="c.showNoMoreLine&&finalStatus===M.NoMore" :class="{'zp-l-line-rpx':c.unit==='rpx','zp-l-line-px':c.unit==='px'}" :style="[{backgroundColor:zTheme.line[ts]},c.noMoreLineCustomStyle]" />
</template>
</view>
</template>
<script>
import zStatic from '../js/z-paging-static'
import u from '../js/z-paging-utils'
import Enum from '../js/z-paging-enum'
export default {
name: 'z-paging-load-more',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<image v-else :class="{'zp-line-loading-image':refreshingAnimated,'zp-r-left-image':true}" :style="[leftImageStyle,imgStyle]" :src="leftImageSrc" />
<!-- #endif -->
<!-- #ifdef APP-NVUE -->
<view v-else :style="[{'margin-right':showUpdateTime?'18rpx':'12rpx'}]">
<loading-indicator :class="isIos?`zp-loading-image-ios-${unit}`:`zp-loading-image-android-${unit}`"
<view v-else :style="[{'margin-right':showUpdateTime?addUnit(18,unit):addUnit(12, unit)}]">
<loading-indicator :class="isIos?{'zp-loading-image-ios-rpx':unit==='rpx','zp-loading-image-ios-px':unit==='px'}:{'zp-loading-image-android-rpx':unit==='rpx','zp-loading-image-android-px':unit==='px'}"
:style="[{color:zTheme.indicator[ts]},imgStyle]" :animating="true" />
</view>
<!-- #endif -->
</view>
<view class="zp-r-right">
<text class="zp-r-right-text" :style="[rightTextStyle,titleStyle]">{{currentTitle}}</text>
<text v-if="showUpdateTime&&refresherTimeText.length" class="zp-r-right-text" :class="`zp-r-right-time-text-${unit}`" :style="[rightTextStyle,updateTimeStyle]">
<text v-if="showUpdateTime&&refresherTimeText.length" class="zp-r-right-text" :class="{'zp-r-right-time-text-rpx':unit==='rpx','zp-r-right-time-texts-px':unit==='px'}" :style="[rightTextStyle,updateTimeStyle]">
{{refresherTimeText}}
</text>
</view>
Expand Down Expand Up @@ -64,7 +64,7 @@
},
leftImageStyle() {
const showUpdateTime = this.showUpdateTime;
const size = showUpdateTime ? u.addUnit(36, this.unit) : u.addUnit(30, this.unit);
const size = showUpdateTime ? u.addUnit(36, this.unit) : u.addUnit(32, this.unit);
return {width: size,height: size,'margin-right': showUpdateTime ? u.addUnit(20, this.unit) : u.addUnit(9, this.unit)};
},
leftImageSrc() {
Expand Down Expand Up @@ -98,6 +98,9 @@
}
},
methods: {
addUnit(value, unit) {
return u.addUnit(value, unit);
},
updateTime() {
if (this.showUpdateTime) {
this.refresherTimeText = u.getRefesrherFormatTimeByKey(this.updateTimeKey, this.updateTimeTextMap);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
}

.zp-loading-image-android-rpx {
width: 32rpx;
height: 32rpx;
width: 34rpx;
height: 34rpx;
}
.zp-loading-image-android-px {
width: 16px;
height: 16px;
width: 17px;
height: 17px;
}

/* #ifndef APP-NVUE */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// [z-paging]常量

export default {
version: '2.6.7',
version: '2.6.8',
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 @@ -449,6 +449,6 @@ export default {
_offEmit(){
uni.$off(c.errorUpdateKey);
uni.$off(c.completeUpdateKey);
}
},
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ /_____| |_) | (_| | (_| | | | | | (_| |
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
|_| |___/ |___/
v2.6.7 (2023-12-27)
v2.6.8 (2023-12-28)
by ZXLee
-->
<!-- 文档地址:https://z-paging.zxlee.cn -->
Expand Down Expand Up @@ -228,7 +228,7 @@ by ZXLee
<text v-if="loadingStatus!==M.Loading" @click="_onScrollToUpper"
:class="defaultThemeStyle==='white'?'zp-loading-more-text zp-loading-more-text-white':'zp-loading-more-text zp-loading-more-text-black'">{{chatRecordLoadingMoreText}}</text>
<view>
<loading-indicator v-if="loadingStatus===M.Loading" class="zp-line-loading-image" :class="`zp-line-loading-image-${unit}`" animating />
<loading-indicator v-if="loadingStatus===M.Loading" class="zp-line-loading-image" :class="{'zp-line-loading-image-rpx':unit==='rpx','zp-line-loading-image-px':unit==='px'}" animating />
</view>
</view>
</view>
Expand Down
2 changes: 1 addition & 1 deletion demo/z-paging-demo/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.6.7",
"version": "2.6.8",
"description": "超简单、低耦合!使用wxs+renderjs实现。支持长列表优化,支持自定义下拉刷新、上拉加载更多,支持自动管理空数据图、点击返回顶部,支持聊天分页、本地分页,支持国际化等100+项配置",
"keywords": [
"下拉刷新",
Expand Down
2 changes: 1 addition & 1 deletion demo/z-paging-demo/uni_modules/z-paging/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;">
</p>

[![version](https://img.shields.io/badge/version-2.6.7-blue)](https://github.com/SmileZXLee/uni-z-paging)
[![version](https://img.shields.io/badge/version-2.6.8-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)

`z-paging-x`现已支持uniapp x,持续完善中,插件地址👉🏻 [https://ext.dcloud.net.cn/plugin?name=z-paging-x](https://ext.dcloud.net.cn/plugin?name=z-paging-x)
Expand Down
2 changes: 2 additions & 0 deletions demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 2.6.8(2023-12-28)
`修复` 在微信小程序中报错`:class不支持"xxx-${unit}"语法`的问题。
## 2.6.7(2023-12-27)
1.`新增` props:`unit`,支持自定义`z-paging`内置布局单位为rpx或px。
2.`优化` 之前在安卓中`scroll-view`有概率滚动到顶部时`scrollTop`不为0导致下拉刷新判断异常,经过测试在`HX3.98+`已修复,关闭容错判断并解决由此引发的安卓在特定位置下拉抖动的问题。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<template>
<view :class="{'zp-container':true,'zp-container-fixed':emptyViewFixed}" :style="[finalEmptyViewStyle]" @click="emptyViewClick">
<view class="zp-main">
<image v-if="!emptyViewImg.length" :class="`zp-main-image-${unit}`" :style="[emptyViewImgStyle]" :src="emptyImg" />
<image v-else :class="`zp-main-image-${unit}`" mode="aspectFit" :style="[emptyViewImgStyle]" :src="emptyViewImg" />
<text :class="`zp-main-title zp-main-title-${unit}`" :style="[emptyViewTitleStyle]">{{emptyViewText}}</text>
<image v-if="!emptyViewImg.length" :class="{'zp-main-image-rpx':unit==='rpx','zp-main-image-px':unit==='px'}" :style="[emptyViewImgStyle]" :src="emptyImg" />
<image v-else :class="{'zp-main-image-rpx':unit==='rpx','zp-main-image-px':unit==='px'}" mode="aspectFit" :style="[emptyViewImgStyle]" :src="emptyViewImg" />
<text class="zp-main-title" :class="{'zp-main-title-rpx':unit==='rpx','zp-main-title-px':unit==='px'}" :style="[emptyViewTitleStyle]">{{emptyViewText}}</text>
<text v-if="showEmptyViewReload" class="zp-main-error-btn" :style="[emptyViewReloadStyle]" @click.stop="reloadClick">{{emptyViewReloadText}}</text>
</view>
</view>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
<!-- [z-paging]上拉加载更多view -->
<template>
<view class="zp-l-container" :class="`zp-l-container-${c.unit}`" :style="[c.customStyle]" @click="doClick">
<view class="zp-l-container" :class="{'zp-l-container-rpx':c.unit==='rpx','zp-l-container-px':c.unit==='px'}" :style="[c.customStyle]" @click="doClick">
<template v-if="!c.hideContent">
<text v-if="c.showNoMoreLine&&finalStatus===M.NoMore" :class="`zp-l-line-${c.unit}`" :style="[{backgroundColor:zTheme.line[ts]},c.noMoreLineCustomStyle]" />
<text v-if="c.showNoMoreLine&&finalStatus===M.NoMore" :class="{'zp-l-line-rpx':c.unit==='rpx','zp-l-line-px':c.unit==='px'}" :style="[{backgroundColor:zTheme.line[ts]},c.noMoreLineCustomStyle]" />
<!-- #ifndef APP-NVUE -->
<image v-if="finalStatus===M.Loading&&!!c.loadingIconCustomImage"
:src="c.loadingIconCustomImage" :style="[c.iconCustomStyle]" :class="{'zp-l-line-loading-custom-image':true,'zp-l-line-loading-custom-image-animated':c.loadingAnimated,'zp-l-line-loading-custom-image-rpx':c.unit==='rpx','zp-l-line-loading-custom-image-px':c.unit==='px'}" />
<image v-if="finalStatus===M.Loading&&finalLoadingIconType==='flower'&&!c.loadingIconCustomImage.length"
:class="`zp-line-loading-image-${c.unit}`" :style="[c.iconCustomStyle]" :src="zTheme.flower[ts]" />
:class="{'zp-line-loading-image-rpx':c.unit==='rpx','zp-line-loading-image-px':c.unit==='px'}" :style="[c.iconCustomStyle]" :src="zTheme.flower[ts]" />
<!-- #endif -->
<!-- #ifdef APP-NVUE -->
<view>
<loading-indicator v-if="finalStatus===M.Loading&&finalLoadingIconType!=='circle'" :class="`zp-line-loading-image-${c.unit}`" :style="[{color:zTheme.indicator[ts]}]" :animating="true" />
<loading-indicator v-if="finalStatus===M.Loading&&finalLoadingIconType!=='circle'" :class="{'zp-line-loading-image-rpx':c.unit==='rpx','zp-line-loading-image-px':c.unit==='px'}" :style="[{color:zTheme.indicator[ts]}]" :animating="true" />
</view>
<!-- #endif -->
<text v-if="finalStatus===M.Loading&&finalLoadingIconType==='circle'&&!c.loadingIconCustomImage.length"
class="zp-l-circle-loading-view" :class="`zp-l-circle-loading-view-${c.unit}`" :style="[{borderColor:zTheme.circleBorder[ts],borderTopColor:zTheme.circleBorderTop[ts]},c.iconCustomStyle]" />
<text :class="`zp-l-text-${c.unit}`" :style="[{color:zTheme.title[ts]},c.titleCustomStyle]">{{ownLoadingMoreText}}</text>
<text v-if="c.showNoMoreLine&&finalStatus===M.NoMore" :class="`zp-l-line-${c.unit}`" :style="[{backgroundColor:zTheme.line[ts]},c.noMoreLineCustomStyle]" />
class="zp-l-circle-loading-view" :class="{'zp-l-circle-loading-view-rpx':c.unit==='rpx','zp-l-circle-loading-view-px':c.unit==='px'}" :style="[{borderColor:zTheme.circleBorder[ts],borderTopColor:zTheme.circleBorderTop[ts]},c.iconCustomStyle]" />
<text :class="{'zp-l-text-rpx':c.unit==='rpx','zp-l-text-px':c.unit==='px'}" :style="[{color:zTheme.title[ts]},c.titleCustomStyle]">{{ownLoadingMoreText}}</text>
<text v-if="c.showNoMoreLine&&finalStatus===M.NoMore" :class="{'zp-l-line-rpx':c.unit==='rpx','zp-l-line-px':c.unit==='px'}" :style="[{backgroundColor:zTheme.line[ts]},c.noMoreLineCustomStyle]" />
</template>
</view>
</template>
<script>
import zStatic from '../js/z-paging-static'
import u from '../js/z-paging-utils'
import Enum from '../js/z-paging-enum'
export default {
name: 'z-paging-load-more',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<image v-else :class="{'zp-line-loading-image':refreshingAnimated,'zp-r-left-image':true}" :style="[leftImageStyle,imgStyle]" :src="leftImageSrc" />
<!-- #endif -->
<!-- #ifdef APP-NVUE -->
<view v-else :style="[{'margin-right':showUpdateTime?'18rpx':'12rpx'}]">
<loading-indicator :class="isIos?`zp-loading-image-ios-${unit}`:`zp-loading-image-android-${unit}`"
<view v-else :style="[{'margin-right':showUpdateTime?addUnit(18,unit):addUnit(12, unit)}]">
<loading-indicator :class="isIos?{'zp-loading-image-ios-rpx':unit==='rpx','zp-loading-image-ios-px':unit==='px'}:{'zp-loading-image-android-rpx':unit==='rpx','zp-loading-image-android-px':unit==='px'}"
:style="[{color:zTheme.indicator[ts]},imgStyle]" :animating="true" />
</view>
<!-- #endif -->
</view>
<view class="zp-r-right">
<text class="zp-r-right-text" :style="[rightTextStyle,titleStyle]">{{currentTitle}}</text>
<text v-if="showUpdateTime&&refresherTimeText.length" class="zp-r-right-text" :class="`zp-r-right-time-text-${unit}`" :style="[rightTextStyle,updateTimeStyle]">
<text v-if="showUpdateTime&&refresherTimeText.length" class="zp-r-right-text" :class="{'zp-r-right-time-text-rpx':unit==='rpx','zp-r-right-time-texts-px':unit==='px'}" :style="[rightTextStyle,updateTimeStyle]">
{{refresherTimeText}}
</text>
</view>
Expand Down Expand Up @@ -64,7 +64,7 @@
},
leftImageStyle() {
const showUpdateTime = this.showUpdateTime;
const size = showUpdateTime ? u.addUnit(36, this.unit) : u.addUnit(30, this.unit);
const size = showUpdateTime ? u.addUnit(36, this.unit) : u.addUnit(32, this.unit);
return {width: size,height: size,'margin-right': showUpdateTime ? u.addUnit(20, this.unit) : u.addUnit(9, this.unit)};
},
leftImageSrc() {
Expand Down Expand Up @@ -98,6 +98,9 @@
}
},
methods: {
addUnit(value, unit) {
return u.addUnit(value, unit);
},
updateTime() {
if (this.showUpdateTime) {
this.refresherTimeText = u.getRefesrherFormatTimeByKey(this.updateTimeKey, this.updateTimeTextMap);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
}

.zp-loading-image-android-rpx {
width: 32rpx;
height: 32rpx;
width: 34rpx;
height: 34rpx;
}
.zp-loading-image-android-px {
width: 16px;
height: 16px;
width: 17px;
height: 17px;
}

/* #ifndef APP-NVUE */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// [z-paging]常量

export default {
version: '2.6.7',
version: '2.6.8',
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 @@ -449,6 +449,6 @@ export default {
_offEmit(){
uni.$off(c.errorUpdateKey);
uni.$off(c.completeUpdateKey);
}
},
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ /_____| |_) | (_| | (_| | | | | | (_| |
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
|_| |___/ |___/
v2.6.7 (2023-12-27)
v2.6.8 (2023-12-28)
by ZXLee
-->
<!-- 文档地址:https://z-paging.zxlee.cn -->
Expand Down Expand Up @@ -228,7 +228,7 @@ by ZXLee
<text v-if="loadingStatus!==M.Loading" @click="_onScrollToUpper"
:class="defaultThemeStyle==='white'?'zp-loading-more-text zp-loading-more-text-white':'zp-loading-more-text zp-loading-more-text-black'">{{chatRecordLoadingMoreText}}</text>
<view>
<loading-indicator v-if="loadingStatus===M.Loading" class="zp-line-loading-image" :class="`zp-line-loading-image-${unit}`" animating />
<loading-indicator v-if="loadingStatus===M.Loading" class="zp-line-loading-image" :class="{'zp-line-loading-image-rpx':unit==='rpx','zp-line-loading-image-px':unit==='px'}" animating />
</view>
</view>
</view>
Expand Down
2 changes: 1 addition & 1 deletion demo/z-paging-vue3-demo/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.6.7",
"version": "2.6.8",
"description": "超简单、低耦合!使用wxs+renderjs实现。支持长列表优化,支持自定义下拉刷新、上拉加载更多,支持自动管理空数据图、点击返回顶部,支持聊天分页、本地分页,支持国际化等100+项配置",
"keywords": [
"下拉刷新",
Expand Down
2 changes: 1 addition & 1 deletion demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;">
</p>

[![version](https://img.shields.io/badge/version-2.6.7-blue)](https://github.com/SmileZXLee/uni-z-paging)
[![version](https://img.shields.io/badge/version-2.6.8-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)

`z-paging-x`现已支持uniapp x,持续完善中,插件地址👉🏻 [https://ext.dcloud.net.cn/plugin?name=z-paging-x](https://ext.dcloud.net.cn/plugin?name=z-paging-x)
Expand Down
Loading

0 comments on commit 7f7de25

Please sign in to comment.