Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
5a3861b9
提交
5a3861b9
authored
4月 27, 2021
作者:
zuihou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(table): 表格的数据列和操作列的字段可以根据权限和业务来控制是否显示
上级
7c41c867
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
65 行增加
和
23 行删除
+65
-23
TableAction.vue
src/components/Table/src/components/TableAction.vue
+17
-2
useColumns.ts
src/components/Table/src/hooks/useColumns.ts
+40
-20
table.ts
src/components/Table/src/types/table.ts
+5
-0
tableAction.ts
src/components/Table/src/types/tableAction.ts
+3
-1
没有找到文件。
src/components/Table/src/components/TableAction.vue
浏览文件 @
5a3861b9
...
...
@@ -37,6 +37,7 @@
import
{
useTableContext
}
from
'../hooks/useTableContext'
;
import
{
usePermission
}
from
'/@/hooks/web/usePermission'
;
import
{
isBoolean
,
isFunction
}
from
'/@/utils/is'
;
import
{
propTypes
}
from
'/@/utils/propTypes'
;
import
{
ACTION_COLUMN_FLAG
}
from
'../const'
;
...
...
@@ -63,10 +64,24 @@
}
const
{
hasPermission
}
=
usePermission
();
function
isIfShow
(
action
:
ActionItem
):
boolean
{
const
ifShow
=
action
.
ifShow
;
let
isIfShow
=
true
;
if
(
isBoolean
(
ifShow
))
{
isIfShow
=
ifShow
;
}
if
(
isFunction
(
ifShow
))
{
isIfShow
=
ifShow
(
action
);
}
return
isIfShow
;
}
const
getActions
=
computed
(()
=>
{
return
(
toRaw
(
props
.
actions
)
||
[])
.
filter
((
action
)
=>
{
return
hasPermission
(
action
.
auth
);
return
hasPermission
(
action
.
auth
)
&&
isIfShow
(
action
)
;
})
.
map
((
action
)
=>
{
const
{
popConfirm
}
=
action
;
...
...
@@ -85,7 +100,7 @@
const
getDropdownList
=
computed
(()
=>
{
return
(
toRaw
(
props
.
dropDownActions
)
||
[])
.
filter
((
action
)
=>
{
return
hasPermission
(
action
.
auth
);
return
hasPermission
(
action
.
auth
)
&&
isIfShow
(
action
)
;
})
.
map
((
action
,
index
)
=>
{
const
{
label
,
popConfirm
}
=
action
;
...
...
src/components/Table/src/hooks/useColumns.ts
浏览文件 @
5a3861b9
...
...
@@ -6,6 +6,7 @@ import { unref, Ref, computed, watch, ref, toRaw } from 'vue';
import
{
renderEditCell
}
from
'../components/editable'
;
import
{
usePermission
}
from
'/@/hooks/web/usePermission'
;
import
{
useI18n
}
from
'/@/hooks/web/useI18n'
;
import
{
isBoolean
,
isArray
,
isString
,
isObject
,
isFunction
}
from
'/@/utils/is'
;
...
...
@@ -133,31 +134,50 @@ export function useColumns(
return
cloneColumns
;
});
function
isIfShow
(
column
:
BasicColumn
):
boolean
{
const
ifShow
=
column
.
ifShow
;
let
isIfShow
=
true
;
if
(
isBoolean
(
ifShow
))
{
isIfShow
=
ifShow
;
}
if
(
isFunction
(
ifShow
))
{
isIfShow
=
ifShow
(
column
);
}
return
isIfShow
;
}
const
{
hasPermission
}
=
usePermission
();
const
getViewColumns
=
computed
(()
=>
{
const
viewColumns
=
sortFixedColumn
(
unref
(
getColumnsRef
));
const
columns
=
cloneDeep
(
viewColumns
);
columns
.
forEach
((
column
)
=>
{
const
{
slots
,
dataIndex
,
customRender
,
format
,
edit
,
editRow
,
flag
}
=
column
;
if
(
!
slots
||
!
slots
?.
title
)
{
column
.
slots
=
{
title
:
`header-
${
dataIndex
}
`
,
...(
slots
||
{})
};
column
.
customTitle
=
column
.
title
;
Reflect
.
deleteProperty
(
column
,
'title'
);
}
const
isDefaultAction
=
[
INDEX_COLUMN_FLAG
,
ACTION_COLUMN_FLAG
].
includes
(
flag
!
);
if
(
!
customRender
&&
format
&&
!
edit
&&
!
isDefaultAction
)
{
column
.
customRender
=
({
text
,
record
,
index
})
=>
{
return
formatCell
(
text
,
format
,
record
,
index
);
};
}
return
columns
.
filter
((
column
)
=>
{
return
hasPermission
(
column
.
auth
)
&&
isIfShow
(
column
);
})
.
map
((
column
)
=>
{
const
{
slots
,
dataIndex
,
customRender
,
format
,
edit
,
editRow
,
flag
}
=
column
;
if
(
!
slots
||
!
slots
?.
title
)
{
column
.
slots
=
{
title
:
`header-
${
dataIndex
}
`
,
...(
slots
||
{})
};
column
.
customTitle
=
column
.
title
;
Reflect
.
deleteProperty
(
column
,
'title'
);
}
const
isDefaultAction
=
[
INDEX_COLUMN_FLAG
,
ACTION_COLUMN_FLAG
].
includes
(
flag
!
);
if
(
!
customRender
&&
format
&&
!
edit
&&
!
isDefaultAction
)
{
column
.
customRender
=
({
text
,
record
,
index
})
=>
{
return
formatCell
(
text
,
format
,
record
,
index
);
};
}
// edit table
if
((
edit
||
editRow
)
&&
!
isDefaultAction
)
{
column
.
customRender
=
renderEditCell
(
column
);
}
})
;
return
columns
;
// edit table
if
((
edit
||
editRow
)
&&
!
isDefaultAction
)
{
column
.
customRender
=
renderEditCell
(
column
);
}
return
column
;
})
;
});
watch
(
...
...
src/components/Table/src/types/table.ts
浏览文件 @
5a3861b9
...
...
@@ -8,6 +8,7 @@ import type {
import
{
ComponentType
}
from
'./componentType'
;
import
{
VueNode
}
from
'/@/utils/propTypes'
;
import
{
RoleEnum
}
from
'/@/enums/roleEnum'
;
export
declare
type
SortOrder
=
'ascend'
|
'descend'
;
...
...
@@ -421,4 +422,8 @@ export interface BasicColumn extends ColumnProps {
editRule
?:
boolean
|
((
text
:
string
,
record
:
Recordable
)
=>
Promise
<
string
>
);
editValueMap
?:
(
value
:
any
)
=>
string
;
onEditRow
?:
()
=>
void
;
// 权限编码控制是否显示
auth
?:
RoleEnum
|
RoleEnum
[]
|
string
|
string
[];
// 业务控制是否显示
ifShow
?:
boolean
|
((
column
:
BasicColumn
)
=>
boolean
);
}
src/components/Table/src/types/tableAction.ts
浏览文件 @
5a3861b9
...
...
@@ -8,8 +8,10 @@ export interface ActionItem extends ButtonProps {
popConfirm
?:
PopConfirm
;
disabled
?:
boolean
;
divider
?:
boolean
;
//
Permission code
//
权限编码控制是否显示
auth
?:
RoleEnum
|
RoleEnum
[]
|
string
|
string
[];
// 业务控制是否显示
ifShow
?:
boolean
|
((
action
:
ActionItem
)
=>
boolean
);
}
export
interface
PopConfirm
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论