new branch

This commit is contained in:
rayd1o
2026-03-07 13:06:37 +08:00
parent 3145ff083b
commit 4ada75ca14
64 changed files with 4324 additions and 35 deletions

View File

@@ -10,6 +10,7 @@ import {
SyncOutlined
} from '@ant-design/icons'
import axios from 'axios'
import AppLayout from '../../components/AppLayout/AppLayout'
interface BuiltInDataSource {
id: number
@@ -326,6 +327,8 @@ function DataSources() {
rowKey="id"
loading={loading}
pagination={false}
scroll={{ x: 'max-content' }}
tableLayout="fixed"
/>
),
},
@@ -352,6 +355,8 @@ function DataSources() {
rowKey="id"
loading={loading}
pagination={false}
scroll={{ x: 'max-content' }}
tableLayout="fixed"
/>
)}
</>
@@ -360,7 +365,7 @@ function DataSources() {
]
return (
<div>
<AppLayout>
<h2></h2>
<Tabs activeKey={activeTab} onChange={setActiveTab} items={tabItems} />
@@ -665,7 +670,7 @@ function DataSources() {
</Form>
)}
</Drawer>
</div>
</AppLayout>
)
}