【新增】插件git同步模块,用于同步项目内容,加速项目开发

【调整】前端暗色问题
This commit is contained in:
chudong
2025-05-14 16:50:56 +08:00
parent dc43da936b
commit e6947ec5c4
215 changed files with 19918 additions and 9710 deletions

View File

@@ -5,9 +5,11 @@ import { RouterView } from '@baota/router'
import { PlusOutlined } from '@vicons/antd'
import { Search } from '@vicons/carbon'
import { useController } from './useController'
import BaseComponent from '@components/baseComponent'
import { useRouter } from 'vue-router'
import BaseComponent from '@components/baseComponent'
import EmptyState from '@components/emptyState/index'
/**
* 工作流页面组件
*/
@@ -52,7 +54,7 @@ export default defineComponent({
headerLeft: () => (
<NButton type="primary" size="large" class="px-5" onClick={handleAddWorkflow}>
<PlusOutlined class="text-[var(--text-color-3)] w-[1.6rem]" />
<span class="px-2">{$t('t_0_1745227838699')}</span>
<span class="px-2">{$t('t_0_1747047213730')}</span>
</NButton>
),
headerRight: () => (
@@ -76,8 +78,14 @@ export default defineComponent({
></NInput>
),
content: () => (
<div class="rounded-lg bg-white">
<WorkflowTable size="medium" />
<div class="rounded-lg ">
<WorkflowTable size="medium">
{{
empty: () => (
<EmptyState addButtonText={$t('t_0_1747047213730')} onAddClick={handleAddWorkflow} />
),
}}
</WorkflowTable>
</div>
),
footerRight: () => (