unionIntroduction.html 5.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <ion-view style="background-color:#fff" view-title="武进区科技创新创业联盟">
  2. <!--<div class="bar bar-header resource_titleWrap" ng-if="code==4801&&type==5100">
  3. <i class="icon ion-ios-arrow-left" style="color:#fff;font-size:24px;display:inline-block;padding:10px;" ng-click="goback()"></i>
  4. </div>
  5. <div class="bar bar-header bar-header-blue" ng-if="!(code==4801&&type==5100)">
  6. <i class="icon ion-ios-arrow-left" style="color:#fff;font-size:24px;display:inline-block;padding:10px;" ng-click="goback()"></i>
  7. <h3 class="DockingTheme_h3">{{pageTitle}}</h3>
  8. </div>-->
  9. <div class="bar bar-header bar-header-blue">
  10. <div class="button button-icon icon pus_blue"></div>
  11. <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="goback()"></button>
  12. <h1 class="bar_title" style="color: #fff">武进区科技创新创业联盟</h1>
  13. </div>
  14. <br>
  15. <ion-content>
  16. <div>
  17. <div class="form-box">
  18. <div ng-repeat="list in formList" ng-init="outerIndex=$index"
  19. ng-class="{'hole-row':true,'row-margin':list.type=='upload'||list.type=='affiliatedOrg'}"
  20. ng-click="selectItems(outerIndex)"
  21. ng-show="formList[outerIndex-1].type!='toggle'||(formList[outerIndex-1].type=='toggle'&&formList[outerIndex-1].content=='是')||(formList[outerIndex-1].type=='toggle'&&formList[outerIndex-1].content=='10501')">
  22. <div class="input-title"
  23. ng-show="formList[outerIndex-1].type!='toggle'||(formList[outerIndex-1].type=='toggle'&&formList[outerIndex-1].content=='是')||(formList[outerIndex-1].type=='toggle'&&formList[outerIndex-1].content=='10501')">
  24. <sup ng-if='list.needed' style="color:red;">*</sup>{{list.title}}
  25. </div>
  26. <div class="input-box">
  27. <!--普通输入框-->
  28. <input ng-if="list.type=='input'" placeholder="{{list.placeholder}}" type="text"
  29. ng-model="list.content" style="width:100%;border-radius:3px;padding:0 3px;"/>
  30. <input ng-if="list.type=='input1'" placeholder="{{list.placeholder}}"
  31. ng-change="queryOrgName1(outerIndex,list)" type="text" ng-model="list.content"
  32. style="width:100%;border-radius:3px;padding:0 3px;"/>
  33. <input ng-if="list.type=='input2'" placeholder="{{list.placeholder}}"
  34. ng-change="queryOrgName2(outerIndex,list)" type="text" ng-model="list.content"
  35. style="width:100%;border-radius:3px;padding:0 3px;"/>
  36. <input ng-if="list.type=='select'" placeholder="{{list.placeholder}}"
  37. ng-disabled="list.type=='select'" type="text" ng-model="list.content"
  38. style="width:100%;border-radius:3px;padding:0 3px;"/>
  39. <textarea ng-if="list.type=='textarea'" class="add_list_txt" ng-model="list.content"
  40. placeholder="{{list.placeholder}}"
  41. style="font-size:12px;display:inline-block;vertical-align: top;width:100%;padding:5px 0;margin-top:0;border-bottom:none;"></textarea>
  42. <!--选择地区-->
  43. <!-- 选择项目箭头 -->
  44. <i ng-if="list.type=='select'" class=" ion-ios-arrow-down position-fix"></i>
  45. <!-- 模糊查询下拉列表 -->
  46. <ul ng-show="list.fuzzyQuery&&(isRelateUl1||isRelateUl2) && (list.content.length > 0) && (list.content.length < 8)"
  47. class="isRelateUl" style="overflow: visible;margin-left:5%">
  48. <li ng-repeat="org in orgList track by $index" style="overflow: visible;">
  49. <span ng-bind-html="ttt(org.name)" ng-click="setOrgName(org, list)">{{org.name}}</span>
  50. </li>
  51. </ul>
  52. <div ng-if="list.type=='upload'"
  53. style="width:100%;">
  54. <input id = "viceorgid" placeholder="{{list.placeholder}}" type="text" ng-model="list.content"
  55. style="width:100%;border-radius:3px;padding:0 3px;"/>
  56. <span style='color: blue' ng-click="addViceOrg(list)">添加</span>
  57. </div>
  58. <div ng-if="list.type=='upload'">
  59. <a ng-repeat="org in orgList track by $index"
  60. ng-init="imageIndex=$index">
  61. <ul ng-if="org != null">
  62. <li class="item">
  63. <span>{{org}}</span>
  64. <span style='text-align: right; color: burlywood' ng-click="deleteOrg($index)">删除</span>
  65. </li>
  66. </ul>
  67. </a>
  68. </div>
  69. <input type="file" name="file" id="file" accept="image/*" ng-model="changeFile" multiple
  70. style="display:none"/>
  71. </div>
  72. </div>
  73. </div>
  74. <div class="submit-section">
  75. <!--<button ng-click="submitForm()" ng-class="{'submit-button':true,'sbg-blue':isChecked}">提交认证</button>-->
  76. <button ng-click="submitForm()" class="submit-button sbg-blue">保存</button>
  77. </div>
  78. <br>
  79. <br>
  80. <br>
  81. <br>
  82. <br>
  83. <br>
  84. </div>
  85. </ion-content>
  86. </ion-view>
  87. <style>
  88. </style>