diff --git a/demo/z-paging-demo/uni_modules/z-paging/changelog.md b/demo/z-paging-demo/uni_modules/z-paging/changelog.md index 0f12d8b..f569829 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/changelog.md +++ b/demo/z-paging-demo/uni_modules/z-paging/changelog.md @@ -1,3 +1,11 @@ +## 2.8.1(2024-11-24) +1.`新增` 完整的`props`、`slots`、`methods`、`events`的typescript types声明,可在ts中获得绝佳的代码提示体验。 +2.`新增` `virtual-cell-id-prefix`:虚拟列表cell id的前缀,适用于一个页面有多个虚拟列表的情况,用以区分不同虚拟列表cell的id。 +3.`修复` 在vue3+(微信小程序或QQ小程序)中,使用非内置列表写法时,若`z-paging`在`swiper-item`标签内的情况下存在的无法获取slot插入的cell高度的问题。 +4.`修复` 在虚拟列表中分页数据小于1页时插入新数据,虚拟列表未生效的问题。 +5.`修复` 在虚拟列表中调用`refresh`时,cell的index计算不正确的问题。 +6.`修复` 在快手小程序中内容较少或空数据时`z-paging`未能铺满全屏的问题。 +7.`优化` `events`中的参数涉及枚举的部分,统一由之前的number类型修改为string类型,展示更直观!涉及的events:`@query`中的`from`参数;`@refresherStatusChange`中的`status`参数;`@loadingStatusChange`中的`status`参数;`slot=refresher`中的`refresherStatus`参数;`slot=chatLoading`中的`loadingMoreStatus`参数。更新版本请特别留意! ## 2.8.0(2024-10-21) 1.`新增` 全面支持鸿蒙Next。 2.`修复` 设置了`refresher-complete-delay`后,在下拉刷新期间调用reload导致的无法再次下拉刷新的问题。 diff --git a/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js b/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js index b0ae1ac..2fa8aba 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js +++ b/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js @@ -2,7 +2,7 @@ export default { // 当前版本号 - version: '2.8.0', + version: '2.8.1', // 延迟操作的通用时间 delayTime: 100, // 请求失败时候全局emit使用的key diff --git a/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-main.js b/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-main.js index d46b6f0..eae544a 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-main.js +++ b/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-main.js @@ -50,8 +50,6 @@ export default { data() { return { // --------------静态资源--------------- - base64Arrow: zStatic.base64Arrow, - base64Flower: zStatic.base64Flower, base64BackToTop: zStatic.base64BackToTop, // -------------全局数据相关-------------- diff --git a/demo/z-paging-demo/uni_modules/z-paging/package.json b/demo/z-paging-demo/uni_modules/z-paging/package.json index f75de51..d6f9b6f 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/package.json +++ b/demo/z-paging-demo/uni_modules/z-paging/package.json @@ -2,7 +2,7 @@ "id": "z-paging", "name": "z-paging", "displayName": "【z-paging下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,分页全自动处理", - "version": "2.8.0", + "version": "2.8.1", "description": "超简单、低耦合!使用wxs+renderjs实现。支持自定义下拉刷新、上拉加载更多、虚拟列表、下拉进入二楼、自动管理空数据图、无闪动聊天分页、本地分页、国际化等100+项配置", "keywords": [ "下拉刷新", diff --git a/demo/z-paging-demo/uni_modules/z-paging/readme.md b/demo/z-paging-demo/uni_modules/z-paging/readme.md index b8f7b59..6047203 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/readme.md +++ b/demo/z-paging-demo/uni_modules/z-paging/readme.md @@ -4,7 +4,7 @@ logo

-[![version](https://img.shields.io/badge/version-2.8.0-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) +[![version](https://img.shields.io/badge/version-2.8.1-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) diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md b/demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md index 0f12d8b..f569829 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md @@ -1,3 +1,11 @@ +## 2.8.1(2024-11-24) +1.`新增` 完整的`props`、`slots`、`methods`、`events`的typescript types声明,可在ts中获得绝佳的代码提示体验。 +2.`新增` `virtual-cell-id-prefix`:虚拟列表cell id的前缀,适用于一个页面有多个虚拟列表的情况,用以区分不同虚拟列表cell的id。 +3.`修复` 在vue3+(微信小程序或QQ小程序)中,使用非内置列表写法时,若`z-paging`在`swiper-item`标签内的情况下存在的无法获取slot插入的cell高度的问题。 +4.`修复` 在虚拟列表中分页数据小于1页时插入新数据,虚拟列表未生效的问题。 +5.`修复` 在虚拟列表中调用`refresh`时,cell的index计算不正确的问题。 +6.`修复` 在快手小程序中内容较少或空数据时`z-paging`未能铺满全屏的问题。 +7.`优化` `events`中的参数涉及枚举的部分,统一由之前的number类型修改为string类型,展示更直观!涉及的events:`@query`中的`from`参数;`@refresherStatusChange`中的`status`参数;`@loadingStatusChange`中的`status`参数;`slot=refresher`中的`refresherStatus`参数;`slot=chatLoading`中的`loadingMoreStatus`参数。更新版本请特别留意! ## 2.8.0(2024-10-21) 1.`新增` 全面支持鸿蒙Next。 2.`修复` 设置了`refresher-complete-delay`后,在下拉刷新期间调用reload导致的无法再次下拉刷新的问题。 diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js b/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js index b0ae1ac..2fa8aba 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js @@ -2,7 +2,7 @@ export default { // 当前版本号 - version: '2.8.0', + version: '2.8.1', // 延迟操作的通用时间 delayTime: 100, // 请求失败时候全局emit使用的key diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-main.js b/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-main.js index d46b6f0..eae544a 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-main.js +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-main.js @@ -50,8 +50,6 @@ export default { data() { return { // --------------静态资源--------------- - base64Arrow: zStatic.base64Arrow, - base64Flower: zStatic.base64Flower, base64BackToTop: zStatic.base64BackToTop, // -------------全局数据相关-------------- diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/package.json b/demo/z-paging-vue3-demo/uni_modules/z-paging/package.json index f75de51..d6f9b6f 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/package.json +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/package.json @@ -2,7 +2,7 @@ "id": "z-paging", "name": "z-paging", "displayName": "【z-paging下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,分页全自动处理", - "version": "2.8.0", + "version": "2.8.1", "description": "超简单、低耦合!使用wxs+renderjs实现。支持自定义下拉刷新、上拉加载更多、虚拟列表、下拉进入二楼、自动管理空数据图、无闪动聊天分页、本地分页、国际化等100+项配置", "keywords": [ "下拉刷新", diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md b/demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md index b8f7b59..6047203 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md @@ -4,7 +4,7 @@ logo

-[![version](https://img.shields.io/badge/version-2.8.0-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) +[![version](https://img.shields.io/badge/version-2.8.1-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) diff --git a/z-paging/README.md b/z-paging/README.md index b8f7b59..6047203 100644 --- a/z-paging/README.md +++ b/z-paging/README.md @@ -4,7 +4,7 @@ logo

-[![version](https://img.shields.io/badge/version-2.8.0-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) +[![version](https://img.shields.io/badge/version-2.8.1-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) diff --git a/z-paging/changelog.md b/z-paging/changelog.md index 0f12d8b..f569829 100644 --- a/z-paging/changelog.md +++ b/z-paging/changelog.md @@ -1,3 +1,11 @@ +## 2.8.1(2024-11-24) +1.`新增` 完整的`props`、`slots`、`methods`、`events`的typescript types声明,可在ts中获得绝佳的代码提示体验。 +2.`新增` `virtual-cell-id-prefix`:虚拟列表cell id的前缀,适用于一个页面有多个虚拟列表的情况,用以区分不同虚拟列表cell的id。 +3.`修复` 在vue3+(微信小程序或QQ小程序)中,使用非内置列表写法时,若`z-paging`在`swiper-item`标签内的情况下存在的无法获取slot插入的cell高度的问题。 +4.`修复` 在虚拟列表中分页数据小于1页时插入新数据,虚拟列表未生效的问题。 +5.`修复` 在虚拟列表中调用`refresh`时,cell的index计算不正确的问题。 +6.`修复` 在快手小程序中内容较少或空数据时`z-paging`未能铺满全屏的问题。 +7.`优化` `events`中的参数涉及枚举的部分,统一由之前的number类型修改为string类型,展示更直观!涉及的events:`@query`中的`from`参数;`@refresherStatusChange`中的`status`参数;`@loadingStatusChange`中的`status`参数;`slot=refresher`中的`refresherStatus`参数;`slot=chatLoading`中的`loadingMoreStatus`参数。更新版本请特别留意! ## 2.8.0(2024-10-21) 1.`新增` 全面支持鸿蒙Next。 2.`修复` 设置了`refresher-complete-delay`后,在下拉刷新期间调用reload导致的无法再次下拉刷新的问题。 diff --git a/z-paging/components/z-paging/js/z-paging-constant.js b/z-paging/components/z-paging/js/z-paging-constant.js index b0ae1ac..2fa8aba 100644 --- a/z-paging/components/z-paging/js/z-paging-constant.js +++ b/z-paging/components/z-paging/js/z-paging-constant.js @@ -2,7 +2,7 @@ export default { // 当前版本号 - version: '2.8.0', + version: '2.8.1', // 延迟操作的通用时间 delayTime: 100, // 请求失败时候全局emit使用的key diff --git a/z-paging/components/z-paging/js/z-paging-main.js b/z-paging/components/z-paging/js/z-paging-main.js index d46b6f0..eae544a 100644 --- a/z-paging/components/z-paging/js/z-paging-main.js +++ b/z-paging/components/z-paging/js/z-paging-main.js @@ -50,8 +50,6 @@ export default { data() { return { // --------------静态资源--------------- - base64Arrow: zStatic.base64Arrow, - base64Flower: zStatic.base64Flower, base64BackToTop: zStatic.base64BackToTop, // -------------全局数据相关-------------- diff --git a/z-paging/package.json b/z-paging/package.json index f75de51..d6f9b6f 100644 --- a/z-paging/package.json +++ b/z-paging/package.json @@ -2,7 +2,7 @@ "id": "z-paging", "name": "z-paging", "displayName": "【z-paging下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,分页全自动处理", - "version": "2.8.0", + "version": "2.8.1", "description": "超简单、低耦合!使用wxs+renderjs实现。支持自定义下拉刷新、上拉加载更多、虚拟列表、下拉进入二楼、自动管理空数据图、无闪动聊天分页、本地分页、国际化等100+项配置", "keywords": [ "下拉刷新",