|
|
@@ -20,7 +20,7 @@ import RefreshLayout from "../../../components/RefreshLayout";
|
|
|
import {Skeleton, List} from 'antd';
|
|
|
import {getIntValue, getStrValue, isObjEmpty} from "../../../utils/common";
|
|
|
import {saveListState} from "../../../redux/actions/listState";
|
|
|
-
|
|
|
+import nodata_img from '../../../style/imgs/no_data.png';
|
|
|
let myApplypageIndex = 0;
|
|
|
let myApprovepageIndex = 0;
|
|
|
const mPageSize = 10
|
|
|
@@ -169,10 +169,19 @@ class Approvel extends Component {
|
|
|
}}>
|
|
|
<div className="swiper-wrapper">
|
|
|
<div className="swiper-slide" >
|
|
|
- {isMyapplyItems}
|
|
|
+ {
|
|
|
+ this.state.applyList.length > 0 ? isMyapplyItems
|
|
|
+ :
|
|
|
+ <div className="no_data"><img src={nodata_img} alt="" style={{width:'100%',height:'auto'}}/></div>
|
|
|
+ }
|
|
|
</div>
|
|
|
<div className="swiper-slide">
|
|
|
- {isMyapproveItems}
|
|
|
+ {
|
|
|
+ this.state.approvelList.length > 0 ? isMyapproveItems
|
|
|
+ :
|
|
|
+ <div className="no_data"><img src={nodata_img} alt=""
|
|
|
+ style={{width: '100%', height: 'auto'}}/></div>
|
|
|
+ }
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|