import React, { PureComponent } from 'react'; import { Tabs } from 'antd'; import style from "styled-components"; import { connect } from "dva"; import NoAuthority from '../../common/NoAuthority'; import declare from '../../utils/hoc/declare'; const store = require("store"); const { TabPane } = Tabs; @connect(state => ({ perId: state.user.currentUser.perId })) @declare export default class SecurityAssociationGrading extends PureComponent { constructor(props, context) { super(props, context); this.state = { }; } componentDidMount = () => { } render() { return ( {store.get("SecurityAssociationURL") !== undefined ? ( ) : ( )} ); } } const Container = style.div` padding:10px 24px 24px; width:100%; height:100%; `;