SchemeConfig.jsx 1.23 KB
Newer Older
1 2 3 4 5 6 7
import { Tabs, Button } from 'antd';
import React from 'react';
import PageContainer from '@/components/BasePageContainer';
import styles from './SchemeConfig.less'
import TileConfig from './TileConfig/TileConfig';
import VectorData from './VectorData/VectorData';
import ProjectMessage from './projectMessage/projectMessage';
8 9
import SolutionConfig from './solutionConfig/solutionConfig';

10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
const { TabPane } = Tabs;

const SchemeConfig = () => {

    const callback = () => {

    }

    return (
        <PageContainer>
            <div className={styles.container}>
                <Tabs onChange={callback} type="card">
                    <TabPane tab="瓦片数据配置" key="1">
                        <TileConfig />
                    </TabPane>
                    <TabPane tab="矢量数据配置" key="2">
                        <VectorData />
                    </TabPane>
                    <TabPane tab="方案管理" key="3">
                        <ProjectMessage />
                    </TabPane>
                    <TabPane tab="方案配置" key="4">
32
                        <SolutionConfig/>
33 34 35 36 37 38 39 40 41
                    </TabPane>
                </Tabs>
            </div>

        </PageContainer>
    )

}
export default SchemeConfig;