DatabaseConfig.jsx 1.28 KB
Newer Older
皮倩雯's avatar
皮倩雯 committed
1 2
import React, { useEffect } from 'react';
import { Card, notification } from 'antd';
3
import PageContainer from '@/components/BasePageContainer';
4
import SQLServerTable from './sqlServer/SQLServerTable';
皮倩雯's avatar
皮倩雯 committed
5
import DmTable from './dm/DmTable';
6 7 8
import OracleTable from './oracle/OracleTable';
import MongDBTable from './mongDB/MongDBTable';
import MySQLTable from './mysqltable/MySQLTable';
9
import MasterTable from './master/MasterTable';
10
import Redis from './redis/RedisTable';
11 12 13 14

const DatabaseConnectConfig = props => {
  return (
    <PageContainer>
15 16 17 18 19
      <div style={{ width: '100%', height: '100%', overflowY: 'scroll' }}>
        <Card>
          <div style={{ marginBottom: '15px' }}>
            <SQLServerTable />
          </div>
皮倩雯's avatar
皮倩雯 committed
20 21 22
          <div style={{ marginBottom: '15px' }}>
            <DmTable />
          </div>
23 24 25 26 27 28 29 30 31
          <div style={{ marginBottom: '15px' }}>
            <OracleTable />
          </div>
          <div style={{ marginBottom: '15px' }}>
            <MongDBTable />
          </div>
          <div style={{ marginBottom: '15px' }}>
            <MySQLTable />
          </div>
32 33 34
          <div style={{ marginBottom: '15px' }}>
            <Redis />
          </div>
35 36 37
          <MasterTable />
        </Card>
      </div>
38 39 40 41 42
    </PageContainer>
  );
};

export default DatabaseConnectConfig;