weaver_trunk_cli/pc4mobx/esearch/util/NoRight.js

14 lines
455 B
JavaScript
Raw Normal View History

2024-05-15 16:50:21 +08:00
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>
)
}
}