SubsidyauditafteCheck.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <ion-view style="background-color:#fff" title="研发后补助审核">
  2. <div class="bar bar-header bar-header-blue">
  3. <div class="button button-icon icon pus_blue"></div>
  4. <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="goback()"></button>
  5. <h1 class="bar_title" style="color: #fff">研发后补助审核</h1>
  6. <span class="DockingTheme_button" ng-click="openActionSheet()" style="background-color: transparent" ng-if="defaultLan == 'Chinese'">管理</span>
  7. </div>
  8. <ul class="task-holl-title bar-header-blue">
  9. <li ng-repeat="titleList in rewardHollList" ng-class="{'taskholl-active':titleList.selected}"
  10. ng-click="changeSelected($index)">{{titleList.title}}
  11. </li>
  12. </ul>
  13. <ion-content ng-class="{'task-android-header1':true,'task-ios-header':isIos}" scroll="true"
  14. delegate-handle="privateContent" >
  15. <div ng-if="rewardHollList[0].selected">
  16. <ul class="task-holl-titles" >
  17. <li ng-repeat="titleList in rewardHollLists" style="width: 100%;text-align: center;padding: 5px" ng-class="{'taskholl-actives':titleList.selected}"
  18. ng-click="changeSelecteds($index,titleList.type)">{{titleList.title}}
  19. </li>
  20. </ul>
  21. <table class="table" style="width: 100%;margin-top: 10px">
  22. <tr>
  23. <th>企业名称</th>
  24. <th>拟补助金额(万元)</th>
  25. <th>申报时间</th>
  26. <th>状态</th>
  27. </tr>
  28. <tr ng-repeat="item in checkList" ng-click="goSubsidyauditafteDetail(item)">
  29. <td>{{item.orgName}}</td>
  30. <td>{{item.rewardmoney}}</td>
  31. <td>{{item.createtime}}</td>
  32. <td>{{item.demandstatus==0?"待审核":item.demandstatus==1?"审核成功":item.demandstatus==-2?'已退回':item.demandstatus==8?'待予以兑付':'兑付完成'}}</td>
  33. </tr>
  34. </table>
  35. <ion-infinite-scroll
  36. immediate-check="false"
  37. on-infinite="loadMore()"
  38. ng-if="!nomore"
  39. distance="1%">
  40. </ion-infinite-scroll>
  41. <div class="emptyDiscussDatelistWrap" style="top:15px;" ng-if="nomore">
  42. <p class="empty_p" ng-if="defaultLan == 'Chinese'">亲,没有更多了哦~</p>
  43. <p class="empty_p" ng-if="defaultLan == 'English'">Dear,no more~</p>
  44. </div>
  45. </div>
  46. <div ng-if="rewardHollList[1].selected">
  47. <div style="margin: 10px">
  48. <button class="button button-stable" style="min-height: 30px;" ng-click="selectFile()" style="cursor: progress">{{filesName}}</button>
  49. <button class="button button-calm" style="min-height: 30px" ng-disabled="myCheck" ng-click="ImportFile()">导入文件</button>
  50. <input type="file" name="file" id="file" multiple="multiple"
  51. style="display:none"/>
  52. <button class="button button-balanced" style="min-height: 30px" ng-click="handleDownload(selectedtypes)">下载模板</button>
  53. </div>
  54. <table class="table" style="width: 100%">
  55. <tr>
  56. <th >企业名称</th>
  57. <th>社会统一信用代码</th>
  58. </tr>
  59. <tr ng-repeat="item in tableData">
  60. <td>{{ item.orgName }}</td>
  61. <td>{{ item.orgCode }}</td>
  62. </tr>
  63. </table>
  64. <ion-infinite-scroll
  65. immediate-check="false"
  66. on-infinite="loadMore1()"
  67. ng-if="!nomore1"
  68. distance="1%">
  69. </ion-infinite-scroll>
  70. <div class="emptyDiscussDatelistWrap" style="top:15px;" ng-if="nomore1">
  71. <p class="empty_p" ng-if="defaultLan == 'Chinese'">亲,没有更多了哦~</p>
  72. <p class="empty_p" ng-if="defaultLan == 'English'">Dear,no more~</p>
  73. </div>
  74. </div>
  75. </ion-content>