14 lines
455 B
JavaScript
14 lines
455 B
JavaScript
import {WeaLocaleProvider,WeaAlertPage} from 'ecCom';
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
|
|
export default class NoRight extends React.Component {
|
|
render(){
|
|
return (
|
|
<WeaAlertPage ecId={`${this && this.props && this.props.ecId || ''}_WeaAlertPage@sfd47n`}>
|
|
<div>
|
|
{getLabel(2012,'对不起,您暂时没有权限!')}
|
|
</div>
|
|
</WeaAlertPage>
|
|
)
|
|
}
|
|
} |