quarterlyImport.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <ion-view view-title="季报导入">
  2. <div class="bar bar-header" style="background-image: none;background-color: #3B8BD0;">
  3. <div class="button button-icon icon pus_blue" ng-click="goback()"></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. </div>
  7. <ion-content style="background-color:#f2f2f2;overflow-x:hidden;overflow-y:visible;" class="has-header">
  8. <form>
  9. <div ng-repeat="list in formList" ng-init="outerIndex=$index"
  10. ng-class="{'hole-row':true,'row-margin':list.rowMargin}">
  11. <div class="input-title" style="padding-left: 5%;">
  12. {{list.title}}
  13. </div>
  14. <div class="input-box">
  15. <!--上传证明材料-->
  16. <div ng-if="list.type=='upload'"
  17. style="width:100%;">
  18. <a href="" class="upload-add" ng-click="addImage(outerIndex)">+</a>
  19. <span ng-if="list.remarkType=='normal'" style="font-size:12px;color:#BFC2D3;"></span>
  20. </div>
  21. <ion-scroll ng-if="list.type=='upload'"
  22. ng-show="(list.imagelist.length>0&&formList[outerIndex-1].type!='toggle')||list.imagelist.length>0&&((formList[outerIndex-1].type=='toggle'&&formList[outerIndex-1].content=='是')||(formList[outerIndex-1].type=='toggle'&&formList[outerIndex-1].content=='10501'))"
  23. scroll="true" has-bouncing="true" direction="x" scrollbar-x="false"
  24. delegate-handle="scrollimage" class="photo_div"
  25. style="margin-right:10px;overflow-x:hidden;overflow-y:hidden;height: auto;">
  26. <div ng-repeat="image in list.imagelist track by $index"
  27. ng-init="imageIndex=$index">
  28. <span ng-bind="image.title" style="width:100%;height:85px;color:#8C8E9B" class="back-img"></span>
  29. <span style="padding-left: 20px;color:#3B8BD0;"
  30. ng-click="deletePhoto(imageIndex,outerIndex)">删除</span>
  31. <br>
  32. </div>
  33. </ion-scroll>
  34. <input type="file" name="file" id="file" ng-model="changeFile" multiple="multiple"
  35. style="display:none"/>
  36. </div>
  37. </div>
  38. </form>
  39. </ion-content>
  40. <ion-footer-bar class="footer_buttonWrap">
  41. <span class="footer_button" style="font-size: 18px;" ng-click="sendAnalysisToDB()">导入</span>
  42. </ion-footer-bar>
  43. </ion-view>