Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bigDataSystem
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张伯涛
bigDataSystem
Commits
a9ab2a6e
Commit
a9ab2a6e
authored
Nov 07, 2024
by
张伯涛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
部分修改
parent
f98b7443
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
35 deletions
+45
-35
index.vue
src/views/mainBody/index.vue
+10
-0
index.vue
src/views/system/role/index.vue
+5
-5
AccountDetail.vue
src/views/system/user/AccountDetail.vue
+25
-25
userData.ts
src/views/system/user/userData.ts
+5
-5
No files found.
src/views/mainBody/index.vue
0 → 100644
View file @
a9ab2a6e
<
template
>
<div>
主体管理
</div>
</
template
>
<
script
lang=
"ts"
setup
>
</
script
>
<
style
scoped
>
</
style
>
src/views/system/role/index.vue
View file @
a9ab2a6e
...
...
@@ -14,11 +14,11 @@
label: '编辑',
onClick: handleEdit.bind(null, record),
},
{
// icon: 'clarity:note-edit-line',
label: '数据权限',
onClick: dataPermiss.bind(null, record),
},
//
{
//
// icon: 'clarity:note-edit-line',
//
label: '数据权限',
//
onClick: dataPermiss.bind(null, record),
//
},
{
// icon: 'ant-design:delete-outlined',
label: '删除',
...
...
src/views/system/user/AccountDetail.vue
View file @
a9ab2a6e
...
...
@@ -3,7 +3,7 @@
title=
"用户详情"
:content=
"`账号:$
{userName}
姓名:${name}
邮箱:${email}
邮箱:${email
|| '-'
}
创建时间:${createDate}
`"
class="content-padding"
contentBackground
...
...
@@ -11,8 +11,8 @@
>
<template
#
footer
>
<a-tabs
default-active-key=
"global"
v-model:activeKey=
"currentKey"
>
<a-tab-pane
key=
"global"
tab=
"
全局
角色"
/>
<a-tab-pane
key=
"group"
tab=
"工作组角色"
/
>
<a-tab-pane
key=
"global"
tab=
"角色"
/>
<!--
<a-tab-pane
key=
"group"
tab=
"工作组角色"
/>
--
>
</a-tabs>
</
template
>
<div
class=
"pt-4 m-4 desc-wrap"
>
...
...
@@ -38,28 +38,28 @@
</template>
</BasicTable>
</template>
<
template
v-if=
"currentKey == 'group'"
>
<BasicTable
@
register=
"registerGroupTable"
:searchInfo=
"searchInfo"
>
<template
#
bodyCell=
"
{ column, record }"
>
<template
v-if=
"column.key === 'action'"
>
<TableAction
:actions=
"[
{
icon: 'ant-design:delete-outlined',
color: 'error',
label: '',
popConfirm: {
title: '是否确认删除',
placement: 'left',
confirm: handleDelete.bind(null, record),
},
},
]"
/
>
</
template
>
</template
>
</BasicTable
>
</template
>
<!-- <template v-if="currentKey == 'group'">--
>
<!-- <BasicTable @register="registerGroupTable" :searchInfo="searchInfo">--
>
<!-- <template #bodyCell="{ column, record }">--
>
<!-- <template v-if="column.key === 'action'">--
>
<!-- <TableAction-->
<!-- :actions="[-->
<!-- {-->
<!-- icon: 'ant-design:delete-outlined',-->
<!-- color: 'error',-->
<!-- label: '',-->
<!-- popConfirm: {-->
<!-- title: '是否确认删除',-->
<!-- placement: 'left',-->
<!-- confirm: handleDelete.bind(null, record),-->
<!-- },-->
<!-- },-->
<!-- ]"-->
<!-- />--
>
<!-- </template>--
>
<!-- </template>--
>
<!-- </BasicTable>--
>
<!-- </template>--
>
<AccountModal
@
register=
"registerModal"
@
success=
"handleSuccess"
/>
</div>
</PageWrapper>
...
...
src/views/system/user/userData.ts
View file @
a9ab2a6e
...
...
@@ -11,7 +11,7 @@ export const roleData: any[] = [
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
remark
:
'
超级管理员
'
,
remark
:
'
最高权限用户
'
,
workspaceName
:
'数据平台治理部'
,
},
{
...
...
@@ -26,7 +26,7 @@ export const roleData: any[] = [
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
remark
:
'一级
用户
'
,
remark
:
'一级
权限
'
,
workspaceName
:
'数据平台治理部'
,
},
{
...
...
@@ -41,7 +41,7 @@ export const roleData: any[] = [
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
remark
:
'二级
用户
'
,
remark
:
'二级
权限
'
,
workspaceName
:
'数据平台治理部'
,
},
{
...
...
@@ -56,7 +56,7 @@ export const roleData: any[] = [
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
remark
:
'三级
用户
'
,
remark
:
'三级
权限
'
,
workspaceName
:
'数据平台治理部'
,
},
{
...
...
@@ -71,7 +71,7 @@ export const roleData: any[] = [
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
remark
:
'四级
用户
'
,
remark
:
'四级
权限
'
,
workspaceName
:
'数据平台治理部'
,
},
];
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment