1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <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="goback()"></button>
- <h1 class="bar_title" style="color: #fff">研发后补助审核导出</h1>
- </div>
- <ion-content class="has-header" scroll="true" delegate-handle="privateContent" style="max-width:20.5rem;margin: 0 auto">
- <!--<ion-content ng-class="{'task-android-header1':true,'task-ios-header':isIos}" scroll="true"
- delegate-handle="privateContent" >-->
- <div class="scroll" style="transform: translate3d(0px,0px,0px) scale(1);">
- <!-- 下拉框选项-->
- <ul class="bar bar-header" style="background-color:#f1f1f1; margin: 15px; padding-left: 25px; margin-left: 0px">
- <select
- ng-model="selectedtypes"
- ng-change="changeSelected(selectedtypes)"
- ng-options="x.type as x.title1 for x in rewardHollLists"
- style="height:25px;margin: 10px;border: none;font-size: 20px;background-color:#f1f1f1">
- </select>
- </ul>
- <div>
- <table class="table" style="width: 100%;margin-top: 0px">
- <tr>
- <th>企业名称</th>
- <th>拟补助金额(元)</th>
- <th>申报时间</th>
- <th>状态</th>
- </tr>
- <tr ng-repeat="item in checkList" >
- <td>
- <div style="text-align:left">
- <span ng-click="clickResource1(item)" ng-if="!showExportFlag"
- ng-class="{'submit-mark':true,'bg-blue':item.isselected}"
- style="">
- <i class="icon ion-checkmark-round"></i>
- </span>
- {{item.orgName}}
- </div>
- </td>
- <td>{{item.rewardmoney}}</td>
- <td>{{item.createtime}}</td>
- <td style="color: #1b9bff">
- {{item.demandstatus==0?"待审核":item.demandstatus==1?"审核成功":item.demandstatus==-2?'已退回':'已共享'}}
- </td>
- </tr>
- </table>
- </div>
- </div>
- </ion-content>
- <div class="submit-section button-fixed">
- <button ng-if="flag && !showExportFlag" ng-click="choiceAllResource1()" class="submit-button sbg-blue"
- style="width:40%">全选
- </button>
- <button ng-if="!flag && !showExportFlag" ng-click="choiceAllResource1()" class="submit-button sbg-blue"
- style="width:40%">全不选
- </button>
- <button ng-if="!showExportFlag" ng-click="exportResource()" class="submit-button sbg-blue" style="width:40%">
- 导出
- </button>
- </div>
- <!--<div class="tab-nav tabs" style="background-image: none;">
- <button style="width: 500px;margin-right:3px ;border-radius: 10px;background-color:#7583FD;color: #FFFFFF" >
- 全选
- </button>
- <button style="width: 500px;margin-left:3px ;border-radius: 10px;background-color:#7583FD;color: #FFFFFF">
- 导出
- </button>
- </div>-->
- </ion-view>
|