Commit 64136a47 authored by baiyinhao's avatar baiyinhao

修改审计中心

parent 1a1266a3
...@@ -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[] = [
......
...@@ -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('查看成功');
},
});
} }
/**数据权限按钮*/ /**数据权限按钮*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment