Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
b5046f07
提交
b5046f07
authored
7月 01, 2021
作者:
无木
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(form): fix some prop declaration
修复`submitButtonOptions`、'resetButtonOptions'的类型定义
上级
ddf116da
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
28 行增加
和
24 行删除
+28
-24
CHANGELOG.zh_CN.md
CHANGELOG.zh_CN.md
+1
-0
index.ts
src/components/Button/index.ts
+3
-0
BasicButton.vue
src/components/Button/src/BasicButton.vue
+2
-21
props.ts
src/components/Button/src/props.ts
+19
-0
FormAction.vue
src/components/Form/src/components/FormAction.vue
+2
-2
form.ts
src/components/Form/src/types/form.ts
+1
-1
没有找到文件。
CHANGELOG.zh_CN.md
浏览文件 @
b5046f07
...
...
@@ -18,6 +18,7 @@
-
修复
`ROLE`
权限模式下
`hasPermission`
不工作的问题
-
**Table**
修复启用
`clickToRowSelect`
时,点击行不会触发
`selection-change`
事件的问题
-
**Table**
修复全局配置
`fetchSetting`
可能会被局部配置意外修改的问题
-
**Form**
修复
`submitButtonOptions`
和
`resetButtonOptions`
的类型定义
## 2.5.2(2021-06-27)
...
...
src/components/Button/index.ts
浏览文件 @
b5046f07
import
{
withInstall
}
from
'/@/utils'
;
import
type
{
ExtractPropTypes
}
from
'vue'
;
import
button
from
'./src/BasicButton.vue'
;
import
popConfirmButton
from
'./src/PopConfirmButton.vue'
;
import
{
buttonProps
}
from
'./src/props'
;
export
const
Button
=
withInstall
(
button
);
export
const
PopConfirmButton
=
withInstall
(
popConfirmButton
);
export
declare
type
ButtonProps
=
Partial
<
ExtractPropTypes
<
typeof
buttonProps
>>
;
src/components/Button/src/BasicButton.vue
浏览文件 @
b5046f07
...
...
@@ -11,32 +11,13 @@
import
{
defineComponent
,
computed
}
from
'vue'
;
import
{
Button
}
from
'ant-design-vue'
;
import
{
Icon
}
from
'/@/components/Icon'
;
const
props
=
{
color
:
{
type
:
String
,
validator
:
(
v
)
=>
[
'error'
,
'warning'
,
'success'
,
''
].
includes
(
v
)
},
loading
:
{
type
:
Boolean
},
disabled
:
{
type
:
Boolean
},
/**
* Text before icon.
*/
preIcon
:
{
type
:
String
},
/**
* Text after icon.
*/
postIcon
:
{
type
:
String
},
/**
* preIcon and postIcon icon size.
* @default: 14
*/
iconSize
:
{
type
:
Number
,
default
:
14
},
onClick
:
{
type
:
Function
as
PropType
<
(...
args
)
=>
any
>
,
default
:
null
},
};
import
{
buttonProps
}
from
'./props'
;
export
default
defineComponent
({
name
:
'AButton'
,
components
:
{
Button
,
Icon
},
inheritAttrs
:
false
,
props
,
props
:
buttonProps
,
setup
(
props
,
{
attrs
})
{
// get component class
const
getButtonClass
=
computed
(()
=>
{
...
...
src/components/Button/src/props.ts
0 → 100644
浏览文件 @
b5046f07
export
const
buttonProps
=
{
color
:
{
type
:
String
,
validator
:
(
v
)
=>
[
'error'
,
'warning'
,
'success'
,
''
].
includes
(
v
)
},
loading
:
{
type
:
Boolean
},
disabled
:
{
type
:
Boolean
},
/**
* Text before icon.
*/
preIcon
:
{
type
:
String
},
/**
* Text after icon.
*/
postIcon
:
{
type
:
String
},
/**
* preIcon and postIcon icon size.
* @default: 14
*/
iconSize
:
{
type
:
Number
,
default
:
14
},
onClick
:
{
type
:
Function
as
PropType
<
(...
args
)
=>
any
>
,
default
:
null
},
};
src/components/Form/src/components/FormAction.vue
浏览文件 @
b5046f07
...
...
@@ -39,10 +39,10 @@
</
template
>
<
script
lang=
"ts"
>
import
type
{
ColEx
}
from
'../types/index'
;
import
type
{
ButtonProps
}
from
'ant-design-vue/es/button/buttonTypes'
;
//
import type { ButtonProps } from 'ant-design-vue/es/button/buttonTypes';
import
{
defineComponent
,
computed
,
PropType
}
from
'vue'
;
import
{
Form
,
Col
}
from
'ant-design-vue'
;
import
{
Button
}
from
'/@/components/Button'
;
import
{
Button
,
ButtonProps
}
from
'/@/components/Button'
;
import
{
BasicArrow
}
from
'/@/components/Basic/index'
;
import
{
useFormContext
}
from
'../hooks/useFormContext'
;
import
{
useI18n
}
from
'/@/hooks/web/useI18n'
;
...
...
src/components/Form/src/types/form.ts
浏览文件 @
b5046f07
import
type
{
NamePath
,
RuleObject
}
from
'ant-design-vue/lib/form/interface'
;
import
type
{
VNode
}
from
'vue'
;
import
type
{
ButtonProps
as
AntdButtonProps
}
from
'
ant-design-vue/es/button/buttonTypes
'
;
import
type
{
ButtonProps
as
AntdButtonProps
}
from
'
/@/components/Button
'
;
import
type
{
FormItem
}
from
'./formItem'
;
import
type
{
ColEx
,
ComponentType
}
from
'./index'
;
import
type
{
TableActionType
}
from
'/@/components/Table/src/types/table'
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论