Teclcontract.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <ion-view view-title="技术合同登记">
  2. <div class="toolbar-inside bar bar-header">
  3. <div class="icon ion-chevron-left toolbar-inside-lt" ng-click="goback()"></div>
  4. <div class="toolbar-inside-middle">
  5. <span>技术合同登记</span>
  6. </div>
  7. </div>
  8. <ion-content class="has-header" has-bouncing="false" scroll="true" delegate-handle="privateContent"
  9. style="max-width:20.5rem;margin: 0 auto;">
  10. <table class="table" style="width: 100%;margin-top: 10px">
  11. <tr>
  12. <th>合同名称</th>
  13. <th>合同金额(万)</th>
  14. <th>甲方名称</th>
  15. <th>甲方联系人</th>
  16. <th>乙方名称</th>
  17. <th>乙方联系人</th>
  18. <th>合同</th>
  19. <th>状态</th>
  20. </tr>
  21. <tr ng-repeat="item in checkList">
  22. <td>{{item.name}}</td>
  23. <td>{{item.amount}}</td>
  24. <td>{{item.firstName}}</td>
  25. <td>{{item.firstContact}}</td>
  26. <td>{{item.secondName}}</td>
  27. <td>{{item.secondContact}}</td>
  28. <td >
  29. <p ng-repeat="url in item.url"
  30. ng-click="shouBigImage(url)"
  31. style="color: #3B8BD0">{{url.title}}</p>
  32. </td>
  33. <td>
  34. {{item.status==1?"审核成功":item.status==2?'已退回':'待审核'}}
  35. </td>
  36. </tr>
  37. </table>
  38. </ion-content>
  39. <ion-footer-bar align-title="center" style="max-width: 20.5rem;margin: 0 auto" >
  40. <button class="button button-positive" style="margin: 0 auto" ng-click="oninputs('')">新建技术合同</button>
  41. </ion-footer-bar>
  42. </ion-view>