|
@@ -7,6 +7,7 @@ import Information from '../Information'
|
|
|
import ChartItem from "./ChartItem";
|
|
|
import Notify from '@commonComp/Notify';
|
|
|
import {readyKeepHistory} from '@utils/tools';
|
|
|
+import loadingIcon from '@common/images/loading.gif';
|
|
|
|
|
|
class AssessResult extends Component {
|
|
|
constructor(props) {
|
|
@@ -145,6 +146,7 @@ class AssessResult extends Component {
|
|
|
<div className={style['printShow']}>
|
|
|
<Information></Information>
|
|
|
</div>
|
|
|
+ {!(data&&data.length>0)?<p className={style['loading']}><img src={loadingIcon} alt='loading...'/></p>:''}
|
|
|
{data && data.map((it, i) => {
|
|
|
return this.handoutTypes(it, i);
|
|
|
})}
|