diff --git a/dolphinscheduler-ui/src/views/projects/workflow/definition/index.module.scss b/dolphinscheduler-ui/src/views/projects/workflow/definition/index.module.scss index efae131f41..251e88f29e 100644 --- a/dolphinscheduler-ui/src/views/projects/workflow/definition/index.module.scss +++ b/dolphinscheduler-ui/src/views/projects/workflow/definition/index.module.scss @@ -15,29 +15,6 @@ * limitations under the License. */ -.content { - width: 100%; - - .card { - margin-bottom: 8px; - } - - .header { - display: flex; - justify-content: space-between; - align-items: center; - margin: 10px 0; - .right { - > .search { - .list { - float: right; - margin: 3px 0 3px 4px; - } - } - } - } -} - .table { table { width: 100%; @@ -79,37 +56,9 @@ } } -.batch-button { - position: absolute; - bottom: 10px; - left: 10px; - > div { - margin-right: 5px; - } -} - .formItem { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all; } - -.workflow-name { - :global { - div:first-child { - width: calc(100% - 32px); - - .n-button, - .n-button__content { - width: 100%; - span { - padding-bottom: 1px; - } - } - } - } -} -.width-100 { - width: 100%; -} diff --git a/dolphinscheduler-ui/src/views/projects/workflow/definition/timing/index.tsx b/dolphinscheduler-ui/src/views/projects/workflow/definition/timing/index.tsx index f2dc456e9d..3ce26e1bba 100644 --- a/dolphinscheduler-ui/src/views/projects/workflow/definition/timing/index.tsx +++ b/dolphinscheduler-ui/src/views/projects/workflow/definition/timing/index.tsx @@ -15,16 +15,15 @@ * limitations under the License. */ -import Card from '@/components/card' import { ArrowLeftOutlined } from '@vicons/antd' -import { NButton, NDataTable, NIcon, NPagination } from 'naive-ui' +import { NButton, NDataTable, NIcon, NPagination, NSpace } from 'naive-ui' import { defineComponent, onMounted, toRefs, watch } from 'vue' import { useI18n } from 'vue-i18n' import { useRouter } from 'vue-router' -import type { Router } from 'vue-router' import { useTable } from './use-table' +import Card from '@/components/card' import TimingModal from '../components/timing-modal' -import styles from '../index.module.scss' +import type { Router } from 'vue-router' export default defineComponent({ name: 'WorkflowDefinitionTiming', @@ -76,38 +75,37 @@ export default defineComponent({ const { loadingRef } = this return ( -
- -
- router.go(-1)}> - - - - -
+ + + router.go(-1)}> + + + + - -
- + -
+ + + +
-
+ ) } })