dap
|
80328e7565
|
chore: merge
|
2025-10-09 20:53:21 +08:00 |
|
zouawen
|
33306a5aff
|
chore: 更换其他登录方式图标为彩色图标,新增其他登录方式tooltip文字提示 (#6799)
|
2025-10-06 06:56:54 +08:00 |
|
lw567
|
6e03de5011
|
fix: watermark create error #6788 (#6789)
Co-authored-by: liwei567 <liwei567@example.com>
|
2025-09-30 19:53:09 +08:00 |
|
dap
|
f87a38a2f0
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-09-19 11:58:53 +08:00 |
|
zouawen
|
39820c783c
|
fix:
1、VbenTree新增是否全选、展开折叠功能;
2、解决当点击子节点label文字区域,而非checkbox时,关联父组件不能选中问题;
3、优化子节点选中时关联父节点选中功能:删除VbenTree中processParentSelection方法,改为在onSelect中实现,原因:processParentSelection在每次模型值更新时都会被调用,且计算复杂度为O(n^2),onSelect只在交互时触发,复杂度为O(n);
4、新增中间层tree组件,处理无数据时显示场景(显示图标Inbox和国际化comom.noData文本);
5、为防止父组件传值子组件boolean类型默认false问题,新增treePropsDefaults方法,为TreeProps赋默认值,Tree组件和VbenTree组件统一使用;
6、优化VbenTree组件整体样式(优化padding、margin、gap值,优化type为button时outline左右空白区域不对称问题),优化内部header、footer插槽样式。
|
2025-09-11 16:41:42 +08:00 |
|
dap
|
2d89492790
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-08-21 19:20:46 +08:00 |
|
Ken Hai
|
ffaf85c8f3
|
fix: 修复角色修改时VbenTree组件没有回显选中 (#6662)
* fix: 修复角色修改时VbenTree组件没有回显选中
* chore: use nextTick
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* fix: merge
* chore: 更新
---------
Co-authored-by: haiyinlong <haiyinlong@uhigame.com>
Co-authored-by: Jin Mao <50581550+jinmao88@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
|
2025-08-21 15:30:58 +08:00 |
|
dap
|
a4a7f7d096
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-08-18 09:40:54 +08:00 |
|
ming4762
|
1e6417f95b
|
feat: vBenForm add layout: inline (#6644)
|
2025-08-16 22:41:08 +08:00 |
|
dap
|
46e642a2ce
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-08-08 09:27:26 +08:00 |
|
xueyang
|
9fc594434f
|
perf: 优化useVbenForm样式 (#6611)
* perf(style): 优化useVbenForm垂直布局 actions 样式
* perf(style): 优化useVbenForm actions 布局样式
- 操作按钮组显示位置
```
actionPosition?: 'center' | 'left' | 'right';
```
- 操作按钮组的样式
```
actionType?: 'block' | 'inline'
inline: 行类显示,block: 新一行单独显示
```
* perf: 优化useVbenForm actions 布局样式
删除 actionType
增加 actionLayout
- actionLayout?: 'inline' | 'newLine' | 'rowEnd';
- newLine: 在新行显示。rowEnd: 在行内显示,靠右对齐(默认)。inline: 使用grid默认样式
- 删除无用代码 queryFormStyle
* perf: 优化useVbenForm使用案例
* perf: 优化form组件样式
去掉padding,改为gap
* docs: update vben-form.md
* fix: 修复FormMessage位置
* perf: Avoid direct mutation of props object.
- props.actionLayout = props.actionLayout || 'rowEnd';
- props.actionPosition = props.actionPosition || 'right';
+ const actionLayout = props.actionLayout || 'rowEnd';
+ const actionPosition = props.actionPosition || 'right';
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* fix: 修复 wrapperClass 权重
* fix: 全局搜索结果不匹配 #6603
* fix: 避免FormMessage溢出
---------
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
|
2025-08-07 23:48:34 +08:00 |
|
dap
|
d22e494551
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-07-28 20:06:10 +08:00 |
|
aonoa
|
fad0b49841
|
fix: adding roles does not automatically refresh (#6548)
* fix: adding roles does not automatically refresh
* style: fix code style err
|
2025-07-25 21:35:57 +08:00 |
|
dap
|
c762f8370b
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-07-20 16:59:49 +08:00 |
|
Jin Mao
|
d5a36a167d
|
fix: fix vxeTable commit proxy (#6536)
* fix: 修正use-vxe-grid中的代理配置提交类型
* chore: change config
|
2025-07-19 16:07:15 +08:00 |
|
dap
|
72e1115330
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-07-16 19:22:15 +08:00 |
|
Jin Mao
|
1bc5d2986b
|
chore: update-vxe-table (#6516)
* chore: update vxe-pc-ui,vxe-table
* fix(ui): 修复代理配置初始化方法名错误
* fix(ui): 修改远程表格刷新配置
* chroe: update vxeTable
更新到最新
|
2025-07-16 19:15:39 +08:00 |
|
panda7
|
d4786f3f75
|
Merge branch 'main' into feature/scroll_to_the_error_field
|
2025-07-06 21:19:52 +08:00 |
|
sqchen
|
243f3a201d
|
feat: add scrollToFirstError to the form component
|
2025-07-05 00:19:12 +08:00 |
|
chenweiran
|
8554924cb9
|
feat: 增加基于图片拼图切片平移的验证码
|
2025-07-03 17:43:19 +08:00 |
|
dap
|
687c33ec29
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-06-10 10:51:00 +08:00 |
|
ali-pay
|
c0e601c020
|
fix: menu type is not 'button' (#6277)
Co-authored-by: Jin Mao <50581550+jinmao88@users.noreply.github.com>
|
2025-06-08 17:50:44 +08:00 |
|
RanMaoting
|
017ed1a9e1
|
types: 为useVbenVxeGrid添加泛型声明,使grid实例上能正确获取到行数据的类型 (#5653)
Co-authored-by: Jin Mao <50581550+jinmao88@users.noreply.github.com>
|
2025-06-08 17:43:02 +08:00 |
|
dap
|
14b0d9b50f
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-06-04 09:18:54 +08:00 |
|
Netfan
|
4102cc2211
|
feat: improve vbenCheckButtonGroup (#6329)
* 按钮组支持单选清除和多选限制最大选项数
* 按钮组支持icon插槽来定制图标
|
2025-06-03 23:11:56 +08:00 |
|
dap
|
1f68fd31b7
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-05-28 17:13:50 +08:00 |
|
Netfan
|
6fbf1387f5
|
fix: reset slider-captcha after login failed (#6275)
|
2025-05-25 16:04:56 +08:00 |
|
dap
|
c3edbec3f0
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-05-25 11:48:58 +08:00 |
|
Netfan
|
a1091bad46
|
feat: enhances compatibility with APIs returning large numeric values (#6250)
|
2025-05-23 15:22:18 +08:00 |
|
dap
|
d039c53053
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-05-22 09:20:32 +08:00 |
|
ali-pay
|
11b2b5bcc2
|
fix: 修复菜单管理中按钮类型值错误的问题 (#6255)
|
2025-05-22 09:09:31 +08:00 |
|
Netfan
|
0c3edb10b0
|
fix: getFieldComponentRef will return actual ref within AsyncComponentWrapper (#6252)
修复异步加载组件时,表单的getFieldComponentRef方法没能获取到正确的组件实例
|
2025-05-21 14:48:51 +08:00 |
|
dap
|
4fd68bc083
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-05-19 21:33:49 +08:00 |
|
panda7
|
a23bc4cb5c
|
fix: the mobile terminal can wrap lines and expand slot attributes (#6165)
Co-authored-by: sqchen <chenshiqi@sshlx.com>
|
2025-05-16 09:40:05 +08:00 |
|
dap
|
5f26f5662e
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-04-28 13:19:57 +08:00 |
|
ming4762
|
0cc1cb5a7b
|
perf: improve destroyOnClose for VbenDrawer&VbenModal (#6051)
* fix: fix that the default value of modal destroyOnClose does not take effect
* perf: improve destroyOnClose for VbenDrawer
|
2025-04-27 11:26:50 +08:00 |
|
dap
|
eff2f2a0b1
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-04-20 09:14:37 +08:00 |
|
yuh
|
4baec83db5
|
feat: add examples: form-upload (#5955)
* feat: add examples: form-upload
* fix: upload: accept and label
* fix: upload: 设置表单值、图片预览
|
2025-04-17 14:00:46 +08:00 |
|
dap
|
2e2ffcd59e
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-04-16 21:33:11 +08:00 |
|
Netfan
|
0936861da1
|
feat: pass fieldsChanged into the handleValuesChange callback function (#5968)
* fieldsChanged(已被改变值的字段名)将传入handleValuesChange回调函数
|
2025-04-16 11:29:01 +08:00 |
|
zhouda1fu
|
5252480b09
|
fix: missing await in department form(#5967)
|
2025-04-16 11:22:59 +08:00 |
|
dap
|
f096dfc6e6
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-04-16 10:09:48 +08:00 |
|
ming4762
|
c7e6210c8d
|
feat: modal&drawer support center-footer slot (#5956)
|
2025-04-15 16:04:44 +08:00 |
|
Netfan
|
9700150653
|
fix: table actions in fixed column (#5945)
|
2025-04-14 19:56:52 +08:00 |
|
ming4762
|
afce9dc5c0
|
perf: improve destroyOnClose for VbenModal (#5935)
* perf: 优化Vben Modal destroyOnClose,解决destroyOnClose=false,Modal依旧会被销毁的问题
影响范围(重要):destroyOnClose默认为true,这会导致所有的modal都会默认渲染到body
radix-vue Dialog组件默认会销毁挂载的组件,所以即使destroyOnClose=false,Modal依旧会被销毁的问题
对于一些大表单重复渲染导致卡顿,ApiComponent也会频繁的加载数据
* fix: modal closing animation
---------
Co-authored-by: Netfan <netfan@foxmail.com>
|
2025-04-13 23:02:07 +08:00 |
|
dap
|
e085083e42
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-04-12 22:28:23 +08:00 |
|
dap
|
a47910f650
|
refactor: 所有表格操作列宽度调整为'auto', 这样会根据子元素宽度适配(比如没有分配权限的情况)
|
2025-04-12 15:01:28 +08:00 |
|
Netfan
|
a8c4786311
|
feat: api-component support autoSelect prop (#5931)
* feat: api-component support autoSelect prop
* docs: add version requirement
|
2025-04-12 14:02:35 +08:00 |
|
Netfan
|
4a2c7b313f
|
fix: alert animation (#5927)
|
2025-04-12 10:37:47 +08:00 |
|
dap
|
7e4bdf7bd6
|
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
|
2025-04-12 09:56:51 +08:00 |
|