diff --git a/uni_modules/uni-collapse/components/uni-collapse-item/uni-collapse-item.vue b/uni_modules/uni-collapse/components/uni-collapse-item/uni-collapse-item.vue index 63d30e314..a52433109 100644 --- a/uni_modules/uni-collapse/components/uni-collapse-item/uni-collapse-item.vue +++ b/uni_modules/uni-collapse/components/uni-collapse-item/uni-collapse-item.vue @@ -4,7 +4,7 @@ - + {{ title }} @@ -21,7 +21,7 @@ :style="{height: (isOpen?height:0) +'px'}"> - + @@ -44,6 +44,7 @@ * @property {Boolean} disabled = [true|false] 是否展开面板 * @property {Boolean} showAnimation = [true|false] 开启动画 * @property {Boolean} showArrow = [true|false] 是否显示右侧箭头 + * @property {Object} extraData = {} 额外数据 */ export default { name: 'uniCollapseItem', @@ -98,6 +99,10 @@ showArrow: { type: Boolean, default: true + }, + extraData: { + type: Object, + default: () => null } }, data() { @@ -399,4 +404,5 @@ } } - + + diff --git a/uni_modules/uni-file-picker/changelog.md b/uni_modules/uni-file-picker/changelog.md index b7721de91..7b0d1178b 100644 --- a/uni_modules/uni-file-picker/changelog.md +++ b/uni_modules/uni-file-picker/changelog.md @@ -1,27 +1,27 @@ -## 1.1.3(2025-12-03) -- 修复: 腾讯云目录错误导致的上传错误问题 -## 1.1.2(2025-09-17) -- 修复 设置readonly属性后内容插槽失效的问题。 -## 1.1.1(2025-09-03) -- 修复 动态dir目录,不生效的问题 -## 1.1.0(2025-09-02) -- 新增 dir 属性,可以选择上传目录 -## 1.0.13(2025-08-18) -- 修复 删除文件后,返回信息不包含file对象的问题 -## 1.0.12(2025-04-14) -- 修复 支付宝小程序 上传样式问题 -## 1.0.10(2024-07-09) -- 优化 vue3兼容性 -## 1.0.9(2024-07-09) -- 修复 value 属性不兼容vue3的bug -## 1.0.8(2024-03-20) -- 补充 删除文件时返回文件下标 -## 1.0.7(2024-02-21) -- 新增 微信小程序选择视频时改用chooseMedia,并返回视频缩略图 -## 1.0.6(2024-01-06) -- 新增 微信小程序不再调用chooseImage,而是调用chooseMedia -## 1.0.5(2024-01-03) -- 新增 上传文件至云存储携带本地文件名称 +## 1.1.3(2025-12-03) +- 修复: 腾讯云目录错误导致的上传错误问题 +## 1.1.2(2025-09-17) +- 修复 设置readonly属性后内容插槽失效的问题。 +## 1.1.1(2025-09-03) +- 修复 动态dir目录,不生效的问题 +## 1.1.0(2025-09-02) +- 新增 dir 属性,可以选择上传目录 +## 1.0.13(2025-08-18) +- 修复 删除文件后,返回信息不包含file对象的问题 +## 1.0.12(2025-04-14) +- 修复 支付宝小程序 上传样式问题 +## 1.0.10(2024-07-09) +- 优化 vue3兼容性 +## 1.0.9(2024-07-09) +- 修复 value 属性不兼容vue3的bug +## 1.0.8(2024-03-20) +- 补充 删除文件时返回文件下标 +## 1.0.7(2024-02-21) +- 新增 微信小程序选择视频时改用chooseMedia,并返回视频缩略图 +## 1.0.6(2024-01-06) +- 新增 微信小程序不再调用chooseImage,而是调用chooseMedia +## 1.0.5(2024-01-03) +- 新增 上传文件至云存储携带本地文件名称 ## 1.0.4(2023-03-29) - 修复 手动上传删除一个文件后不能再上传的bug ## 1.0.3(2022-12-19) diff --git a/uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue b/uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue index b0773657b..416ceb371 100644 --- a/uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue +++ b/uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue @@ -677,4 +677,4 @@ position: absolute; transform: rotate(90deg); } - +