| | |
| | | import React, {Component} from 'react' |
| | | import PropTypes from 'prop-types' |
| | | import { is, fromJS } from 'immutable' |
| | | import { BackTop, Card, Col, Row } from 'antd' |
| | | import { BackTop, Card, Col, Row, Icon } from 'antd' |
| | | import Api from '@/api' |
| | | import Loading from '@/components/loading' |
| | | import zhCN from '@/locales/zh-CN/main.js' |
| | | import enUS from '@/locales/en-US/main.js' |
| | | // import Loading from '@/components/loading' |
| | | import zhCN from '@/locales/zh-CN/role.js' |
| | | import enUS from '@/locales/en-US/role.js' |
| | | import './index.scss' |
| | | |
| | | export default class RoleManage extends Component { |
| | |
| | | render() { |
| | | return ( |
| | | <div className="rolemanage"> |
| | | {!this.state.searchlist && <Loading />} |
| | | {/* {!this.state.searchlist && <Loading />} */} |
| | | <Row gutter={16}> |
| | | <Col span={6}> |
| | | <Card title="Card title" bordered={false}> |
| | | <Card |
| | | title={<span className="role-title"><Icon type="bank" /> {this.state.dict['role.title']}</span>} |
| | | bordered={false}> |
| | | Card content |
| | | </Card> |
| | | </Col> |