perf: 销售业绩: 小组多选
parent
619d5c25ed
commit
de6feb85f5
@ -1,25 +1,21 @@
|
|||||||
import { useContext } from 'react';
|
import { useContext } from 'react';
|
||||||
import { observer } from "mobx-react";
|
import { observer } from 'mobx-react';
|
||||||
import { stores_Context, APP_VERSION } from '../config';
|
import { stores_Context, APP_VERSION } from '../config';
|
||||||
import { Table } from 'antd';
|
import { Table } from 'antd';
|
||||||
import {
|
import { SlackOutlined, SketchOutlined, AntCloudOutlined, RedditOutlined, GithubOutlined } from '@ant-design/icons';
|
||||||
SlackOutlined,
|
|
||||||
SketchOutlined,
|
|
||||||
AntCloudOutlined,
|
|
||||||
RedditOutlined,
|
|
||||||
GithubOutlined
|
|
||||||
} from '@ant-design/icons';
|
|
||||||
|
|
||||||
export default observer((props) => {
|
export default observer((props) => {
|
||||||
// const { } = useContext(stores_Context);
|
// const { } = useContext(stores_Context);
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div>
|
<div>
|
||||||
<SketchOutlined/> <AntCloudOutlined/> <SlackOutlined/> <RedditOutlined/> <GithubOutlined/>
|
<SketchOutlined /> <AntCloudOutlined /> <SlackOutlined /> <RedditOutlined /> <GithubOutlined />
|
||||||
<div>欢迎! </div>
|
<div>欢迎! </div>
|
||||||
<div>当前版本: v<span>{APP_VERSION}</span></div>
|
<div>
|
||||||
<SketchOutlined/> <AntCloudOutlined/> <SlackOutlined/> <RedditOutlined/> <GithubOutlined/>
|
当前版本: v<span>{APP_VERSION}</span>
|
||||||
|
</div>
|
||||||
|
<SketchOutlined /> <AntCloudOutlined /> <SlackOutlined /> <RedditOutlined /> <GithubOutlined />
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue