/** * 疫情防控 */ import React, { PureComponent } from "react"; import { Tabs, Modal, Alert } from "antd"; import style from "styled-components"; import { connect } from "dva"; import NoAuthority from "../../common/NoAuthority"; const store = require("store"); const { TabPane } = Tabs; @connect((state) => ({ })) export default class Epidemic extends PureComponent { constructor(props, context) { super(props, context); this.state = { }; } componentDidMount = () => {}; render() { if (this.props.showModal) { return ""; } return ( {store.get("EpidemicURL") !== undefined ? ( ) : ( )} {/* {store.get("saas") !== undefined ? ( */} ); } } const Container = style.div` padding:10px 24px 24px; width:100%; height:100%; `;