importOrgInfo.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <ion-view view-title="企业信息导入">
  2. <div class="bar bar-header" style="background-image: none;background-color: #5BABE6;">
  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. <span>注:企业信息模板下载:<href a="">《溧水经济开发区企业信息导入模板.xls》</href></span>
  9. <form>
  10. <div ng-repeat="list in formList" ng-init="outerIndex=$index"
  11. ng-class="{'hole-row':true,'row-margin':list.rowMargin}">
  12. <div class="input-title" style="padding-left: 5%;">
  13. {{list.title}}
  14. </div>
  15. <div class="input-box">
  16. <!--上传证明材料-->
  17. <div ng-if="list.type=='upload'"
  18. style="width:100%;">
  19. <a href="" class="upload-add" ng-click="addImage(outerIndex)">+</a>
  20. <span ng-if="list.remarkType=='normal'" style="font-size:12px;color:#BFC2D3;"></span>
  21. </div>
  22. <ion-scroll ng-if="list.type=='upload'"
  23. 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'))"
  24. scroll="true" has-bouncing="true" direction="x" scrollbar-x="false"
  25. delegate-handle="scrollimage" class="photo_div"
  26. style="margin-right:10px;overflow-x:hidden;overflow-y:hidden;height: auto;">
  27. <div ng-repeat="image in list.imagelist track by $index"
  28. ng-init="imageIndex=$index">
  29. <span ng-bind="image.title" style="width:100%;height:85px;color:#8C8E9B" class="back-img"></span>
  30. <span style="padding-left: 20px;color:#3B8BD0;"
  31. ng-click="deletePhoto(imageIndex,outerIndex)">删除</span>
  32. <br>
  33. </div>
  34. </ion-scroll>
  35. <input type="file" name="file" id="file" ng-model="changeFile" multiple="multiple"
  36. style="display:none"/>
  37. </div>
  38. </div>
  39. </form>
  40. </ion-content>
  41. <ion-footer-bar class="footer_buttonWrap">
  42. <span class="footer_button" style="font-size: 18px;" ng-click="sendOrgInfoToDB()">导入</span>
  43. </ion-footer-bar>
  44. </ion-view>