123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <ion-view style="background-color:#fff" title="研发后补助审核">
- <div class="bar bar-header bar-header-blue">
- <div class="button button-icon icon pus_blue"></div>
- <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="goback()"></button>
- <h1 class="bar_title" style="color: #fff">研发后补助审核</h1>
- <span class="DockingTheme_button" ng-click="openActionSheet()" style="background-color: transparent" ng-if="defaultLan == 'Chinese'">管理</span>
- </div>
- <ul class="task-holl-title bar-header-blue">
- <li ng-repeat="titleList in rewardHollList" ng-class="{'taskholl-active':titleList.selected}"
- ng-click="changeSelected($index)">{{titleList.title}}
- </li>
- </ul>
- <ion-content ng-class="{'task-android-header1':true,'task-ios-header':isIos}" scroll="true"
- delegate-handle="privateContent" >
- <div ng-if="rewardHollList[0].selected">
- <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="goSubsidyauditafteDetail(item)">
- <td>{{item.orgName}}</td>
- <td>{{item.rewardmoney}}</td>
- <td>{{item.createtime}}</td>
- <td>{{item.demandstatus==0?"待审核":item.demandstatus==1?"审核成功":item.demandstatus==-2?'已退回':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>
- <div ng-if="rewardHollList[1].selected">
- <div style="margin: 10px">
- <button class="button button-stable" style="min-height: 30px;" ng-click="selectFile()" style="cursor: progress">{{filesName}}</button>
- <button class="button button-calm" style="min-height: 30px" ng-disabled="myCheck" ng-click="ImportFile()">导入文件</button>
- <input type="file" name="file" id="file" multiple="multiple"
- style="display:none"/>
- <button class="button button-balanced" style="min-height: 30px" ng-click="handleDownload(selectedtypes)">下载模板</button>
- </div>
- <table class="table" style="width: 100%">
- <tr>
- <th >企业名称</th>
- <th>社会统一信用代码</th>
- </tr>
- <tr ng-repeat="item in tableData">
- <td>{{ item.orgName }}</td>
- <td>{{ item.orgCode }}</td>
- </tr>
- </table>
- <ion-infinite-scroll
- immediate-check="false"
- on-infinite="loadMore1()"
- ng-if="!nomore1"
- distance="1%">
- </ion-infinite-scroll>
- <div class="emptyDiscussDatelistWrap" style="top:15px;" ng-if="nomore1">
- <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>
|