Funck Eeqz

Results 20 issues of Funck Eeqz

内网环境,查阅图标比较不方便, 官网怎么在本地部署呢?

- [x] I have searched the [issues](https://github.com/IDuxFE/idux/issues) of this repository and believe that this is not a duplicate. ### Reproduction link https://idux.site/components/radio/zh ### Steps to reproduce 默认示例 将页面缩放到150%时定位正常 ### What...

Comp:Radio

文档几乎没有对常量的解释,自己摸索了下,没搞明白,知道是被删掉了,但被删掉不应该返回FAILURE吗,为什么会返回OVERFLOW呢?

![image](https://github.com/noear/snack3/assets/117460332/3ccb1ec4-ad4f-4e9d-9e34-14e396c7425d) jackson是通过JsonProcessingException异常来判断序列化失败的,但是这里提到ONode返回一个空,是返回null还是? 没有看到isEmpty的相关函数呢,不知道该如何判断构建失败。

### Clear and concise description of the problem 背景: 当前我默认会渲染系统中所有的菜单项,这个菜单项对所有用户都是展示的,但是会在路由前置守卫进行跳转鉴权,如果无跳转权限,则通过mitt抛出一个无权限事件,并弹出一个message错误。 在我的header组件中,我把value绑定到当前选择的菜单key,前置守卫beforeEach抛出事件后,事件会带一个from的key,header组件收到后对当前选择的菜单进行重置(修改menu组件value双向绑定的值为之前的from key),目前效果如下: ![image](https://github.com/tusen-ai/naive-ui/assets/117460332/fd7beaf0-5450-4ba9-97fb-a578fffcf6c9) 确实能够正常重置,但当前有一个hover的颜色,需要用户手动点下其他地方才能恢复正常: ![image](https://github.com/tusen-ai/naive-ui/assets/117460332/84de4cfc-8497-4c42-b3f3-c89df4efdd94) ### Suggested solution 希望能加个失焦的method或者菜单选中回调可以从void变成boolean返回false时就代表跳转失败,,以便能抽出这个逻辑 ### Alternative _No response_ ### Additional context _No response_ ### Validations...

feature request

## Expected Behavior The tab be selected ## Actual Behavior COM Null Pointer Error occured ``` NULL COM pointer access ValueError: NULL COM pointer access During handling of the above...

JPA、SQLAlchemy(Python)都有提供,之前群里也有不少小伙伴提过建议,不知道实现的难度咋样?

- [x] I have searched the [issues](https://github.com/vueComponent/ant-design-vue/issues) of this repository and believe that this is not a duplicate. ### Version undefined ### Environment Vue 3.4 ### Reproduction link [https://www.antdv.com/components/button-cn](https://www.antdv.com/components/button-cn) ###...

**Is your feature request related to a problem? Please describe.** https://github.com/tortoise/tortoise-orm/issues/1364 https://github.com/tortoise/tortoise-orm/issues/885 **Describe the solution you'd like** Currently I have a api endpoint which will update/insert a data to table....

### 描述 (Description) 这段时间玩了下ZUI,我本身是用Vue的,但是有一个小项目只有4个页面,而且都是CURD,去用Vue反而显得麻烦了,不如JQ方便,所以用了下ZUI,但是目前发现坑还是有一些的,以下是一些踩坑处理办法,很多问题不能解决,但是可以规避。 我在这里采取了一些方式规避,如果已有老项目要改造,可以参考。 后面等待ZUI 3稳定后会使用ZUI3+React的组合,ZUI 3似乎对这些点有了很好的改进,点赞。 1.**不支持跨页全选,有BUG如何规避** 跨页全选如第一页选中10、11个,然后第二页选中第4、5个,正常应该绑定是24、25、10、11四个row,但是发现selections内绑定的是4、5、10、11,导致从第二页返回第一页时候,发现选择的是4个。 目前不对ZUI进行修改(重写checkRow)的解决方式是暂时规避掉跨页选择。跨页时对页面选择项进行重置。 ```javascript $("#ManageGridManageGrid").on("onPageChange", function (e, state, oldState) { if (state.page !== oldState.page) { // 页码变更,重置选择项目 dg = $("#ManageGrid").data("zui.datagrid"); Object.values(dg.states.selections).forEach((k) =>...