123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <ion-view view-title="技术合同登记">
- <div class="toolbar-inside bar bar-header">
- <div class="icon ion-chevron-left toolbar-inside-lt" ng-click="goback()"></div>
- <div class="toolbar-inside-middle">
- <span>技术合同登记</span>
- </div>
- </div>
- <ion-content class="has-header" has-bouncing="false" scroll="true" delegate-handle="privateContent"
- style="max-width:20.5rem;margin: 0 auto;">
- <table class="table" style="width: 100%;margin-top: 10px">
- <tr>
- <th>合同名称</th>
- <th>合同金额(万)</th>
- <th>甲方名称</th>
- <th>甲方联系人</th>
- <th>乙方名称</th>
- <th>乙方联系人</th>
- <th>合同</th>
- <th>状态</th>
- </tr>
- <tr ng-repeat="item in checkList">
- <td>{{item.name}}</td>
- <td>{{item.amount}}</td>
- <td>{{item.firstName}}</td>
- <td>{{item.firstContact}}</td>
- <td>{{item.secondName}}</td>
- <td>{{item.secondContact}}</td>
- <td >
- <p ng-repeat="url in item.url"
- ng-click="shouBigImage(url)"
- style="color: #3B8BD0">{{url.title}}</p>
- </td>
- <td>
- {{item.status==1?"审核成功":item.status==2?'已退回':'待审核'}}
- </td>
- </tr>
- </table>
- </ion-content>
- <ion-footer-bar align-title="center" style="max-width: 20.5rem;margin: 0 auto" >
- <button class="button button-positive" style="margin: 0 auto" ng-click="oninputs('')">新建技术合同</button>
- </ion-footer-bar>
- </ion-view>
|