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
64136a47
Commit
64136a47
authored
Nov 11, 2024
by
baiyinhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改审计中心
parent
1a1266a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
29 deletions
+24
-29
audi.data.ts
src/views/auditLog/audi.data.ts
+18
-18
index.vue
src/views/auditLog/index.vue
+6
-11
No files found.
src/views/auditLog/audi.data.ts
View file @
64136a47
...
@@ -171,15 +171,6 @@ export const searchFormSchema: FormSchema[] = [
...
@@ -171,15 +171,6 @@ export const searchFormSchema: FormSchema[] = [
},
},
colProps
:
{
span
:
4
},
colProps
:
{
span
:
4
},
},
},
{
field
:
'timeRange'
,
label
:
'时间范围'
,
component
:
'RangePicker'
,
componentProps
:
{
placeholder
:
[
'开始时间'
,
'结束时间'
],
},
colProps
:
{
span
:
8
},
},
{
{
field
:
'objectType'
,
field
:
'objectType'
,
label
:
'对象类型'
,
label
:
'对象类型'
,
...
@@ -219,6 +210,15 @@ export const searchFormSchema: FormSchema[] = [
...
@@ -219,6 +210,15 @@ export const searchFormSchema: FormSchema[] = [
},
},
colProps
:
{
span
:
4
},
colProps
:
{
span
:
4
},
},
},
{
field
:
'timeRange'
,
label
:
'时间范围'
,
component
:
'RangePicker'
,
componentProps
:
{
placeholder
:
[
'开始时间'
,
'结束时间'
],
},
colProps
:
{
span
:
8
},
},
];
];
export
const
searchFormSchematab2
:
FormSchema
[]
=
[
export
const
searchFormSchematab2
:
FormSchema
[]
=
[
{
{
...
@@ -230,15 +230,6 @@ export const searchFormSchematab2: FormSchema[] = [
...
@@ -230,15 +230,6 @@ export const searchFormSchematab2: FormSchema[] = [
},
},
colProps
:
{
span
:
4
},
colProps
:
{
span
:
4
},
},
},
{
field
:
'timeRange'
,
label
:
'时间范围'
,
component
:
'RangePicker'
,
componentProps
:
{
placeholder
:
[
'开始时间'
,
'结束时间'
],
},
colProps
:
{
span
:
8
},
},
{
{
field
:
'dataSourceType'
,
field
:
'dataSourceType'
,
label
:
'数据源类型'
,
label
:
'数据源类型'
,
...
@@ -278,6 +269,15 @@ export const searchFormSchematab2: FormSchema[] = [
...
@@ -278,6 +269,15 @@ export const searchFormSchematab2: FormSchema[] = [
},
},
colProps
:
{
span
:
4
},
colProps
:
{
span
:
4
},
},
},
{
field
:
'timeRange'
,
label
:
'时间范围'
,
component
:
'RangePicker'
,
componentProps
:
{
placeholder
:
[
'开始时间'
,
'结束时间'
],
},
colProps
:
{
span
:
8
},
},
];
];
export
const
formSchema
:
FormSchema
[]
=
[
export
const
formSchema
:
FormSchema
[]
=
[
...
...
src/views/auditLog/index.vue
View file @
64136a47
...
@@ -19,12 +19,14 @@
...
@@ -19,12 +19,14 @@
// },
// },
{
{
icon: 'clarity:search-line',
icon: 'clarity:search-line',
label: '查看详情',
label: '',
tooltip: '查看详情',
onClick: handleView.bind(null, record),
onClick: handleView.bind(null, record),
},
},
{
{
icon: 'ant-design:delete-outlined',
icon: 'ant-design:delete-outlined',
// label: '删2222222222222222除',
// label: '删2222222222222222除',
tooltip: '删除',
color: 'error',
color: 'error',
popConfirm: {
popConfirm: {
title: '是否确认删除',
title: '是否确认删除',
...
@@ -101,10 +103,12 @@
...
@@ -101,10 +103,12 @@
import
{
getMenuListByPage
}
from
'@/api/system/menu/menu'
;
import
{
getMenuListByPage
}
from
'@/api/system/menu/menu'
;
import
{
Tabs
,
Descriptions
,
Alert
,
Modal
,
message
}
from
'ant-design-vue'
;
import
{
Tabs
,
Descriptions
,
Alert
,
Modal
,
message
}
from
'ant-design-vue'
;
import
{
tableListtab1
,
tableListtab2
}
from
'./mock'
;
import
{
tableListtab1
,
tableListtab2
}
from
'./mock'
;
import
{
useGo
}
from
'@/hooks/web/usePage'
;
defineOptions
({
name
:
'RoleManagement'
});
defineOptions
({
name
:
'RoleManagement'
});
const
filterStore
=
useFilterStore
();
const
filterStore
=
useFilterStore
();
const
route
=
useRoute
();
const
route
=
useRoute
();
const
go
=
useGo
();
const
{
createMessage
}
=
useMessage
();
const
{
createMessage
}
=
useMessage
();
const
tableData
=
ref
([]);
const
tableData
=
ref
([]);
const
tableDatatab2
=
ref
([]);
const
tableDatatab2
=
ref
([]);
...
@@ -236,16 +240,7 @@
...
@@ -236,16 +240,7 @@
/**查看详情按钮*/
/**查看详情按钮*/
function
handleView
()
{
function
handleView
()
{
Modal
.
confirm
({
go
(
'/system/account_detail'
);
title
:
'跳转到详情页面'
,
content
:
'是否查看详情?'
,
okText
:
'确认'
,
cancelText
:
'取消'
,
onOk
:
()
=>
{
console
.
log
(
'查看详情'
);
message
.
success
(
'查看成功'
);
},
});
}
}
/**数据权限按钮*/
/**数据权限按钮*/
...
...
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