Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
711d56f
fix: 修复问题
GRCmade Jul 18, 2025
4a7b793
Merge commit '8c095ff863fad27561547d87143868e58b6cad3c'
GRCmade Aug 1, 2025
aa202d7
fix: 修复 删除文件后,返回信息不包含file对象的问题
mehaotian Aug 18, 2025
1b3f3f4
fix: 微信小程序 fixed 下避让胶囊,优化标题居中,默认showMenuButtonWidth 不开启下,右侧插槽会被 胶囊覆盖
mehaotian Aug 18, 2025
ba6150c
fix: 修复图标事件返回
mehaotian Aug 18, 2025
2af549e
fix: 修改兼容性 table 不在支持 nvue
mehaotian Aug 18, 2025
2e03bdb
fix: 修复微信小程序样式警告问题
mehaotian Aug 19, 2025
fa0a801
fix: 修复 传入数字 0 不显示的bug
mehaotian Aug 19, 2025
f596464
Merge branch 'dev'
mehaotian Aug 19, 2025
cdf606d
publish: npm 1.5.11
GRCmade Aug 19, 2025
c578cd7
publish: 更新 uni-data-select 1.1.0
GRCmade Aug 19, 2025
5e6c2bd
fix: 修复load-more 小程序样式警告
mehaotian Aug 20, 2025
8418a02
chore: uni-popup release 1.9.11
chouchouji Aug 20, 2025
ee796fb
chore: uni-datetime-picker release 2.2.41
chouchouji Aug 20, 2025
64915e9
fix: 修复 datetime-picker 小程序样式警告
chouchouji Aug 20, 2025
0210f3b
chore: uni-datetime-picker release 2.2.42
chouchouji Aug 20, 2025
4429fd1
fix: 修复 右侧箭头类型错误的问题
mehaotian Aug 21, 2025
70894ae
fix: uni-icons 修复 uni-app x 下类型警告问题
mehaotian Aug 26, 2025
c347166
fix: 修复 uni-easyinput 监听@input 并修改 v-modle 值 不生效的问题
mehaotian Aug 26, 2025
046b443
fix(uni-collapse): 修复非手风琴模式下不能设置modeValue为[]的Bug (question/205130)
chouchouji Sep 2, 2025
3a7583e
chore: uni-collapse release 1.4.5
chouchouji Sep 2, 2025
287daac
feat: 新增 dir 属性,增加上传目录
mehaotian Sep 2, 2025
a2485d3
fix: uni-file-picker 发布 1.1.0 版本
mehaotian Sep 2, 2025
cde80e5
fix(uni-collapse): 修复 modelValue 修改不会触发 change 事件的 Bug
chouchouji Sep 2, 2025
7bdec7b
chore: uni-collapse release 1.4.6
chouchouji Sep 2, 2025
4ca95db
fix: 修复 uni-nav-bar 内部样式被撑开的问题
mehaotian Sep 3, 2025
491b432
publish: uni-nav-bar 1.3.17
mehaotian Sep 3, 2025
403b1ca
fix: 修复 uni-file-picker 动态dir不生效的问题
mehaotian Sep 3, 2025
8f189e1
chore: update .gitignore
Sep 9, 2025
4f60919
chore: update .gitignore
Sep 9, 2025
c75ef3b
fix(uni-collapse): 修复 modelValue 修改不会触发更新的 Bug
Sep 11, 2025
20f35c6
chore: uni-collapse release 1.4.7
Sep 11, 2025
0937b20
fix(uni-collapse): 修复 modelValue 修改会两次触发 change 事件的 Bug
chouchouji Sep 16, 2025
6d04cf8
chore: uni-collapse release 1.4.8
chouchouji Sep 16, 2025
65abf77
fix: 修复file-picker设置readonly属性,插槽失效的问题
mehaotian Sep 17, 2025
6059fbd
update: ext uni-file-picker 1.1.2
mehaotian Sep 17, 2025
5d0663c
fix: 修复easyinput 禁用背景色不生效的问题
mehaotian Sep 19, 2025
d842898
update: ext uni-easyinput 1.1.22
mehaotian Sep 19, 2025
a0fb498
fix; 修改文档中过期qq群
mehaotian Sep 19, 2025
657e8df
uni-collapse-item增加参数extraData,并作为插槽prop传递
RamirezET Dec 24, 2025
8a3c6bc
Merge branch 'dev' into dev
RamirezET Dec 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<view @click="onClick(!isOpen)" class="uni-collapse-item__title"
:class="{'is-open':isOpen &&titleBorder === 'auto' ,'uni-collapse-item-border':titleBorder !== 'none'}">
<view class="uni-collapse-item__title-wrap">
<slot name="title">
<slot name="title" :extraData="extraData">
<view class="uni-collapse-item__title-box" :class="{'is-disabled':disabled}">
<image v-if="thumb" :src="thumb" class="uni-collapse-item__title-img" />
<text class="uni-collapse-item__title-text">{{ title }}</text>
Expand All @@ -21,7 +21,7 @@
:style="{height: (isOpen?height:0) +'px'}">
<view :id="elId" ref="collapse--hook" class="uni-collapse-item__wrap-content"
:class="{open:isheight,'uni-collapse-item--border':border&&isOpen}">
<slot></slot>
<slot :extraData="extraData"></slot>
</view>
</view>

Expand All @@ -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',
Expand Down Expand Up @@ -98,6 +99,10 @@
showArrow: {
type: Boolean,
default: true
},
extraData: {
type: Object,
default: () => null
}
},
data() {
Expand Down Expand Up @@ -399,4 +404,5 @@
}

}
</style>

</style>
48 changes: 24 additions & 24 deletions uni_modules/uni-file-picker/changelog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -677,4 +677,4 @@
position: absolute;
transform: rotate(90deg);
}
</style>
</style>