From fd5fb85858502bc1261669311171b696a806d687 Mon Sep 17 00:00:00 2001 From: songjianet <1778651752@qq.com> Date: Fri, 15 Jul 2022 15:10:48 +0800 Subject: [PATCH] [Refactor][UI] Refactor audio log using NSpace component. (#10991) --- .../statistics/audit-log/index.module.scss | 26 --------- .../monitor/statistics/audit-log/index.tsx | 58 +++++++++---------- 2 files changed, 27 insertions(+), 57 deletions(-) delete mode 100644 dolphinscheduler-ui/src/views/monitor/statistics/audit-log/index.module.scss diff --git a/dolphinscheduler-ui/src/views/monitor/statistics/audit-log/index.module.scss b/dolphinscheduler-ui/src/views/monitor/statistics/audit-log/index.module.scss deleted file mode 100644 index e6b0dfe014..0000000000 --- a/dolphinscheduler-ui/src/views/monitor/statistics/audit-log/index.module.scss +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -.table-card { - margin-top: 8px; - - .pagination { - margin-top: 20px; - display: flex; - justify-content: center; - } -} diff --git a/dolphinscheduler-ui/src/views/monitor/statistics/audit-log/index.tsx b/dolphinscheduler-ui/src/views/monitor/statistics/audit-log/index.tsx index 6999321f9a..a3ec1d0762 100644 --- a/dolphinscheduler-ui/src/views/monitor/statistics/audit-log/index.tsx +++ b/dolphinscheduler-ui/src/views/monitor/statistics/audit-log/index.tsx @@ -24,14 +24,12 @@ import { NButton, NIcon, NDataTable, - NPagination, - NCard + NPagination } from 'naive-ui' import { SearchOutlined } from '@vicons/antd' import { useTable } from './use-table' import { useI18n } from 'vue-i18n' import Card from '@/components/card' -import styles from './index.module.scss' const AuditLog = defineComponent({ name: 'audit-log', @@ -80,8 +78,8 @@ const AuditLog = defineComponent({ const { t, requestTableData, onUpdatePageSize, onSearch, loadingRef } = this return ( - <> - + + - {{ - icon: () => ( - - - - ) - }} + + + - - - -
- + + + -
+ + + +
- + ) } })