2020-03-16 14:12:11 +08:00
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
|
|
|
|
|
|
|
import { BrowserRouter as Router, Route, Link, Switch } from "react-router-dom";
|
|
|
|
|
|
|
|
|
|
|
|
import Loading from '../../Loading';
|
|
|
|
|
|
|
|
|
|
|
|
import Loadable from 'react-loadable';
|
|
|
|
|
|
|
|
|
|
|
|
import { TPMIndexHOC } from '../tpm/TPMIndexHOC';
|
|
|
|
|
|
|
|
|
|
|
|
import { SnackbarHOC,getImageUrl } from 'educoder';
|
|
|
|
|
|
|
|
|
|
|
|
class Shixunnopage extends Component {
|
|
|
|
|
|
render() {
|
|
|
|
|
|
return (
|
2021-11-23 14:39:44 +08:00
|
|
|
|
<div className="newMain newTable clearfix">
|
2020-03-16 14:12:11 +08:00
|
|
|
|
<div className=" edu-txt-center mt60 mb60">
|
|
|
|
|
|
{/*mt100 mb100*/}
|
|
|
|
|
|
<img src={getImageUrl("images/warn/pic_500.jpg")} />
|
2021-11-23 14:39:44 +08:00
|
|
|
|
<p className="font-16 mt40 newImages">
|
|
|
|
|
|
<p>服务器异常,请稍后重试</p>
|
|
|
|
|
|
您可尝试<a href="javascript:location.reload();" className="color-blue">刷新页面</a>或<a href="/"
|
2020-03-16 14:12:11 +08:00
|
|
|
|
className="color-blue">返回首页</a>
|
2021-11-23 14:39:44 +08:00
|
|
|
|
,也可以通过
|
2020-03-16 14:12:11 +08:00
|
|
|
|
<a target="_blank"
|
2021-11-23 14:39:44 +08:00
|
|
|
|
href="https://qm.qq.com/cgi-bin/qm/qr?k=YVGUhY7uK8ovpyd7tG_lHe2qGZ63LOij&jump_from=webapi"
|
|
|
|
|
|
className="color-blue">QQ</a>向我们反馈
|
2020-03-16 14:12:11 +08:00
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{/*<div style="clear:both;"></div>*/}
|
|
|
|
|
|
{/*<div id="ajax-indicator" style="display:none;"><span>载入中...</span></div>*/}
|
|
|
|
|
|
{/*<div id="ajax-modal" style="display:none;"></div>*/}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default SnackbarHOC() (TPMIndexHOC ( Shixunnopage ));
|