forked from flipped-aurora/gin-vue-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: 点击重置按钮时表格未刷新; 修复点击重置按钮时,筛选项被清空,但是下方表格未刷新的问题; * fix: 未限制输入范围导致的报错; 后端使用了int类型,未限制输入会导致输入过大的数字时报错; * fix: 未限制输入类型; 使用文本框会导致输入内容的类型未被限制,后端使用了int类型,输入非数字字符时会导致json绑定错误; * feat: 添加创建时间验证规则; 后端仅在开始时间和结束时间同时有值时才进行搜索,所以前端会出现只选择一项内容时,搜索结果不符合预期的问题。添加验证规则使搜索结果符合预期。 * feat: 优化创建时间搜索项; 选择开始时间后,自动禁用结束时间中早于开始时间的选项;选择结束时间后,自动禁用开始时间中晚于结束时间的选项;增加校验规则,校验开始时间是否早于结束时间;点击搜索按钮时如果未通过校验则不进行搜索; * fix: 角色id输入非数字字符时点击提交按钮后变为NaN; * fix: 角色ID输入超大数字时报错; 后端使用int,输入的数字溢出会导致报错,所以限制输入长度; * feat: 时间类型的选项增加验证规则; 选择开始时间后,自动禁用结束时间中早于开始时间的选项;选择结束时间后,自动禁用开始时间中晚于结束时间的选项;增加校验规则,校验开始时间是否早于结束时间;点击搜索按钮时如果未通过校验则不进行搜索; * fix: 补全搜索form的ref引用; * feat: 添加时间类型的搜索范围提示; 时间类型的搜索范围是开始时间(包含)至结束时间(不包含),为避免歧义,增加相关提示; * feat: 将"时间"修改为"日期"确保字段名称一致性; * feat: 将列名称从"按钮组"修改为更友好的"操作"; * feat: 将dialog标题修改为更友好的内容; * fix: 使用了计算值的属性没有进行绑定; * fix: 必填字段可以只填写空格; --------- Co-authored-by: 奇淼(piexlmax <[email protected]>
- Loading branch information
1 parent
852cb47
commit e59296d
Showing
6 changed files
with
87 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters