Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
de499a14
提交
de499a14
authored
11月 28, 2020
作者:
vben
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: fix the display problem of table icon
上级
49827866
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
21 行增加
和
13 行删除
+21
-13
CHANGELOG.zh_CN.md
CHANGELOG.zh_CN.md
+5
-4
TableAction.tsx
src/components/Table/src/components/TableAction.tsx
+6
-5
index.less
src/components/Table/src/style/index.less
+5
-0
tableAction.ts
src/components/Table/src/types/tableAction.ts
+2
-4
registerGlobComp.ts
src/components/registerGlobComp.ts
+2
-0
FixedColumn.vue
src/views/demo/table/FixedColumn.vue
+1
-0
没有找到文件。
CHANGELOG.zh_CN.md
浏览文件 @
de499a14
...
@@ -26,10 +26,11 @@
...
@@ -26,10 +26,11 @@
### 🐛 Bug Fixes
### 🐛 Bug Fixes
-
修复 tree 文本超出挡住操作按钮问题
-
tree: 修复文本超出挡住操作按钮问题
-
修复通过 useRedo 刷新页面参数丢失问题
-
useRedo: 修复通过 useRedo 刷新页面参数丢失问题
-
修复表单校验先设置在校验及控制台错误信息问题
-
form: 修复表单校验先设置在校验及控制台错误信息问题
-
修复
`modal`
与
`drawer`
组件传递数组参数问题
-
`modal`
&
`drawer`
修复组件传递数组参数问题
-
form: 修复
`updateSchema`
赋值含有
`[]`
时不生效
### 🎫 Chores
### 🎫 Chores
...
...
src/components/Table/src/components/TableAction.tsx
浏览文件 @
de499a14
...
@@ -24,20 +24,20 @@ export default defineComponent({
...
@@ -24,20 +24,20 @@ export default defineComponent({
},
},
setup
(
props
)
{
setup
(
props
)
{
function
renderButton
(
action
:
ActionItem
,
index
:
number
)
{
function
renderButton
(
action
:
ActionItem
,
index
:
number
)
{
const
{
disabled
=
false
,
label
,
icon
,
color
=
''
,
type
=
'link'
}
=
action
;
const
{
disabled
=
false
,
label
,
icon
,
color
=
''
,
type
=
'link'
,
...
actionProps
}
=
action
;
const
button
=
(
const
button
=
(
<
Button
<
Button
type=
{
type
as
any
}
type=
{
type
}
size=
"small"
size=
"small"
disabled=
{
disabled
}
disabled=
{
disabled
}
color=
{
color
}
color=
{
color
}
{
...
action
}
{
...
action
Props
}
key=
{
`${index}-${label}`
}
key=
{
`${index}-${label}`
}
>
>
{
()
=>
(
{
()
=>
(
<>
<>
{
icon
&&
<
Icon
icon=
{
icon
}
class=
"mr-1"
/>
}
{
label
}
{
label
}
{
icon
&&
<
Icon
icon=
{
icon
}
/>
}
</>
</>
)
}
)
}
</
Button
>
</
Button
>
...
@@ -96,7 +96,7 @@ export default defineComponent({
...
@@ -96,7 +96,7 @@ export default defineComponent({
return
renderPopConfirm
(
action
,
index
);
return
renderPopConfirm
(
action
,
index
);
})
}
})
}
{
dropDownActions
&&
dropDownActions
.
length
&&
(
{
dropDownActions
&&
dropDownActions
.
length
&&
(
<
Dropdown
>
<
Dropdown
overlayClassName=
"basic-tale-action-dropdown"
>
{
{
{
{
default
:
dropdownDefaultSLot
,
default
:
dropdownDefaultSLot
,
overlay
:
()
=>
{
overlay
:
()
=>
{
...
@@ -106,6 +106,7 @@ export default defineComponent({
...
@@ -106,6 +106,7 @@ export default defineComponent({
default
:
()
=>
{
default
:
()
=>
{
return
dropDownActions
.
map
((
action
,
index
)
=>
{
return
dropDownActions
.
map
((
action
,
index
)
=>
{
const
{
disabled
=
false
}
=
action
;
const
{
disabled
=
false
}
=
action
;
action
.
ghost
=
true
;
return
(
return
(
<
Menu
.
Item
key=
{
`${index}`
}
disabled=
{
disabled
}
>
<
Menu
.
Item
key=
{
`${index}`
}
disabled=
{
disabled
}
>
{
()
=>
{
{
()
=>
{
...
...
src/components/Table/src/style/index.less
浏览文件 @
de499a14
...
@@ -24,6 +24,11 @@
...
@@ -24,6 +24,11 @@
&-action {
&-action {
display: flex;
display: flex;
button {
display: flex;
align-items: center;
}
}
}
&-toolbar {
&-toolbar {
...
...
src/components/Table/src/types/tableAction.ts
浏览文件 @
de499a14
export
interface
ActionItem
{
import
{
ButtonProps
}
from
'ant-design-vue/es/button/buttonTypes'
;
export
interface
ActionItem
extends
ButtonProps
{
onClick
?:
any
;
onClick
?:
any
;
label
:
string
;
label
:
string
;
disabled
?:
boolean
;
color
?:
'success'
|
'error'
|
'warning'
;
color
?:
'success'
|
'error'
|
'warning'
;
type
?:
string
;
props
?:
any
;
icon
?:
string
;
icon
?:
string
;
popConfirm
?:
PopConfirm
;
popConfirm
?:
PopConfirm
;
}
}
...
...
src/components/registerGlobComp.ts
浏览文件 @
de499a14
...
@@ -32,6 +32,7 @@ import {
...
@@ -32,6 +32,7 @@ import {
Result
,
Result
,
Empty
,
Empty
,
Avatar
,
Avatar
,
Menu
,
}
from
'ant-design-vue'
;
}
from
'ant-design-vue'
;
import
{
getApp
}
from
'/@/setup/App'
;
import
{
getApp
}
from
'/@/setup/App'
;
...
@@ -78,5 +79,6 @@ export function registerGlobComp() {
...
@@ -78,5 +79,6 @@ export function registerGlobComp() {
.
use
(
Result
)
.
use
(
Result
)
.
use
(
Empty
)
.
use
(
Empty
)
.
use
(
Avatar
)
.
use
(
Avatar
)
.
use
(
Menu
)
.
use
(
Tabs
);
.
use
(
Tabs
);
}
}
src/views/demo/table/FixedColumn.vue
浏览文件 @
de499a14
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
:actions=
"[
:actions=
"[
{
{
label: '删除',
label: '删除',
icon: 'ant-design:area-chart-outlined',
onClick: handleDelete.bind(null, record),
onClick: handleDelete.bind(null, record),
},
},
]"
]"
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论