Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
43a45b7c
提交
43a45b7c
authored
3月 07, 2021
作者:
Vben
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(form): ensure that the Form component does not verify hidden form items
上级
e0dc5cf2
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
9 行增加
和
2 行删除
+9
-2
CHANGELOG.zh_CN.md
CHANGELOG.zh_CN.md
+2
-0
FormItem.tsx
src/components/Form/src/components/FormItem.tsx
+5
-1
useFormEvents.ts
src/components/Form/src/hooks/useFormEvents.ts
+1
-0
account.data.ts
src/views/demo/system/account/account.data.ts
+1
-1
没有找到文件。
CHANGELOG.zh_CN.md
浏览文件 @
43a45b7c
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
-
`BasicTree`
新增
`clickRowToExpand`
,用于单击树节点展开
-
`BasicTree`
新增
`clickRowToExpand`
,用于单击树节点展开
-
新增 SvgIcon 插件及示例
-
新增 SvgIcon 插件及示例
-
账号管理界面增加左侧部门树
### ⚡ Performance Improvements
### ⚡ Performance Improvements
...
@@ -22,6 +23,7 @@
...
@@ -22,6 +23,7 @@
-
修复账号管理新增未清空旧数据
-
修复账号管理新增未清空旧数据
-
form 组件应允许 setFieldsValue 方法值为 null 或者 undefined
-
form 组件应允许 setFieldsValue 方法值为 null 或者 undefined
-
确保单级面包屑正确跳转
-
确保单级面包屑正确跳转
-
确保 Form 组件不校验隐藏的表单项
## 2.0.2 (2021-03-04)
## 2.0.2 (2021-03-04)
...
...
src/components/Form/src/components/FormItem.tsx
浏览文件 @
43a45b7c
...
@@ -97,7 +97,7 @@ export default defineComponent({
...
@@ -97,7 +97,7 @@ export default defineComponent({
return
disabled
;
return
disabled
;
});
});
function
getShow
()
{
function
getShow
()
:
{
isShow
:
boolean
;
isIfShow
:
boolean
}
{
const
{
show
,
ifShow
}
=
props
.
schema
;
const
{
show
,
ifShow
}
=
props
.
schema
;
const
{
showAdvancedButton
}
=
props
.
formProps
;
const
{
showAdvancedButton
}
=
props
.
formProps
;
const
itemIsAdvanced
=
showAdvancedButton
const
itemIsAdvanced
=
showAdvancedButton
...
@@ -151,6 +151,10 @@ export default defineComponent({
...
@@ -151,6 +151,10 @@ export default defineComponent({
const
{
rulesMessageJoinLabel
:
globalRulesMessageJoinLabel
}
=
props
.
formProps
;
const
{
rulesMessageJoinLabel
:
globalRulesMessageJoinLabel
}
=
props
.
formProps
;
if
(
requiredRuleIndex
!==
-
1
)
{
if
(
requiredRuleIndex
!==
-
1
)
{
const
rule
=
rules
[
requiredRuleIndex
];
const
rule
=
rules
[
requiredRuleIndex
];
const
{
isShow
}
=
getShow
();
if
(
!
isShow
)
{
rule
.
required
=
false
;
}
if
(
rule
.
required
&&
component
)
{
if
(
rule
.
required
&&
component
)
{
if
(
!
Reflect
.
has
(
rule
,
'type'
))
{
if
(
!
Reflect
.
has
(
rule
,
'type'
))
{
rule
.
type
=
'string'
;
rule
.
type
=
'string'
;
...
...
src/components/Form/src/hooks/useFormEvents.ts
浏览文件 @
43a45b7c
...
@@ -183,6 +183,7 @@ export function useFormEvents({
...
@@ -183,6 +183,7 @@ export function useFormEvents({
async
function
validateFields
(
nameList
?:
NamePath
[]
|
undefined
)
{
async
function
validateFields
(
nameList
?:
NamePath
[]
|
undefined
)
{
return
unref
(
formElRef
)?.
validateFields
(
nameList
);
return
unref
(
formElRef
)?.
validateFields
(
nameList
);
}
}
async
function
validate
(
nameList
?:
NamePath
[]
|
undefined
)
{
async
function
validate
(
nameList
?:
NamePath
[]
|
undefined
)
{
return
await
unref
(
formElRef
)?.
validate
(
nameList
);
return
await
unref
(
formElRef
)?.
validate
(
nameList
);
}
}
...
...
src/views/demo/system/account/account.data.ts
浏览文件 @
43a45b7c
...
@@ -61,7 +61,7 @@ export const accountFormSchema: FormSchema[] = [
...
@@ -61,7 +61,7 @@ export const accountFormSchema: FormSchema[] = [
label
:
'密码'
,
label
:
'密码'
,
component
:
'InputPassword'
,
component
:
'InputPassword'
,
required
:
true
,
required
:
true
,
show
:
tru
e
,
show
:
fals
e
,
},
},
{
{
label
:
'角色'
,
label
:
'角色'
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论