1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <ion-view view-title="产学研补助审核">
- <div class="bar bar-header" style="background-image: none;background-color: #3B8BD0;">
- <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
- <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="gobackcheck()"></button>
- <h1 class="bar_title" style="color: #fff">产学研补助审核</h1>
- </div>
- <ion-content class="has-header" style="padding-top:10px;">
- <div >
- <ul class="task-holl-titles" >
- <li ng-repeat="titleList in rewardHollLists" style="width: 100%;text-align: center;padding: 5px" ng-class="{'taskholl-actives':titleList.selected}"
- ng-click="changeSelecteds($index,titleList.type)">{{titleList.title}}
- </li>
- </ul>
- <table class="table" style="width: 100%;margin-top: 10px">
- <tr>
- <th>企业名称</th>
- <th>核定补助金额(万元)</th>
- <th>申报时间</th>
- <th>状态</th>
- </tr>
- <tr ng-repeat="item in checkList" ng-click="jumpToCooperateDetail(item)">
- <td>{{item.orgName}}</td>
- <td>{{item.rewardmoney}}</td>
- <td>{{item.createtime}}</td>
- <td>{{item.demandstatus==0?"待审核":item.demandstatus==1?"审核成功":item.demandstatus==-1?'已退回':item.demandstatus==8?'待予以兑付':'兑付完成'}}</td>
- </tr>
- </table>
- <ion-infinite-scroll
- immediate-check="false"
- on-infinite="loadMore()"
- ng-if="!nomore"
- distance="1%">
- </ion-infinite-scroll>
- <div class="emptyDiscussDatelistWrap" style="top:15px;" ng-if="nomore">
- <p class="empty_p" ng-if="defaultLan == 'Chinese'">亲,没有更多了哦~</p>
- <p class="empty_p" ng-if="defaultLan == 'English'">Dear,no more~</p>
- </div>
- </div>
- </ion-content>
- </ion-view>
|