| | |
| | | import PageDrawer from "../components/PageDrawer"; |
| | | import { PAGE_DRAWER_WIDTH, OPERATE_MODE, DEFAULT_PAGE_SIZE } from '@/config/setting'; |
| | | import * as Common from '@/utils/common'; |
| | | // import { MissionEmpty } from "./MissionEmpty"; |
| | | import MissionShow from "./MissionShow"; |
| | | import { MissionListContent } from "./MissionListContent"; |
| | | import EmptyDataLoader from "../components/EmptyDataLoader"; |
| | | |
| | | const MissionList = () => { |
| | | |
| | |
| | | if (!data?.length && !hasFilters) { |
| | | return ( |
| | | <> |
| | | {/* <MissionEmpty> */} |
| | | <MissionShow open={!!matchShow} id={matchShow?.params.id} /> |
| | | {/* <DealArchivedList /> */} |
| | | {/* </MissionEmpty> */} |
| | | <EmptyDataLoader> |
| | | <Typography |
| | | variant="body2" |
| | | align="center" |
| | | color="text.secondary" |
| | | gutterBottom |
| | | > |
| | | sss |
| | | </Typography> |
| | | <MissionShow open={!!matchShow} id={matchShow?.params.id} /> |
| | | </EmptyDataLoader> |
| | | </> |
| | | ); |
| | | } |