24 lines
975 B
JavaScript
24 lines
975 B
JavaScript
import React, { Component } from 'react';
|
||
import { TPMIndexHOC } from '../tpm/TPMIndexHOC';
|
||
import { SnackbarHOC, getImageUrl } from 'educoder';
|
||
|
||
class Shixunauthority extends Component {
|
||
render() {
|
||
return (
|
||
<div className="newMain clearfix">
|
||
<div className=" edu-txt-center mt60 mb60">
|
||
<img src={getImageUrl("images/warn/pic_403.jpg")} alt="" />
|
||
<p className="font-18 mt40">
|
||
您可以稍后尝试 <a href="/" className="color-blue">返回首页</a>
|
||
,或者
|
||
<a target="_blank" href="https://qm.qq.com/cgi-bin/qm/qr?k=YVGUhY7uK8ovpyd7tG_lHe2qGZ63LOij&jump_from=webapi"
|
||
className="color-blue">QQ反馈>></a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|
||
}
|
||
|
||
export default SnackbarHOC()(TPMIndexHOC(Shixunauthority));
|