12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <ion-view style="background-color:#fff" view-title="武进区科技创新创业联盟">
- <!--<div class="bar bar-header resource_titleWrap" ng-if="code==4801&&type==5100">
- <i class="icon ion-ios-arrow-left" style="color:#fff;font-size:24px;display:inline-block;padding:10px;" ng-click="goback()"></i>
- </div>
- <div class="bar bar-header bar-header-blue" ng-if="!(code==4801&&type==5100)">
- <i class="icon ion-ios-arrow-left" style="color:#fff;font-size:24px;display:inline-block;padding:10px;" ng-click="goback()"></i>
- <h3 class="DockingTheme_h3">{{pageTitle}}</h3>
- </div>-->
- <div class="bar bar-header bar-header-blue">
- <div class="button button-icon icon pus_blue"></div>
- <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="goback()"></button>
- <h1 class="bar_title" style="color: #fff">武进区科技创新创业联盟</h1>
- </div>
- <br>
- <ion-content>
- <div>
- <div class="form-box">
- <div ng-repeat="list in formList" ng-init="outerIndex=$index"
- ng-class="{'hole-row':true,'row-margin':list.type=='upload'||list.type=='affiliatedOrg'}"
- ng-click="selectItems(outerIndex)"
- 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')">
- <div class="input-title"
- 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')">
- <sup ng-if='list.needed' style="color:red;">*</sup>{{list.title}}
- </div>
- <div class="input-box">
- <!--普通输入框-->
- <input ng-if="list.type=='input'" placeholder="{{list.placeholder}}" type="text"
- ng-model="list.content" style="width:100%;border-radius:3px;padding:0 3px;"/>
- <input ng-if="list.type=='input1'" placeholder="{{list.placeholder}}"
- ng-change="queryOrgName1(outerIndex,list)" type="text" ng-model="list.content"
- style="width:100%;border-radius:3px;padding:0 3px;"/>
- <input ng-if="list.type=='input2'" placeholder="{{list.placeholder}}"
- ng-change="queryOrgName2(outerIndex,list)" type="text" ng-model="list.content"
- style="width:100%;border-radius:3px;padding:0 3px;"/>
- <input ng-if="list.type=='select'" placeholder="{{list.placeholder}}"
- ng-disabled="list.type=='select'" type="text" ng-model="list.content"
- style="width:100%;border-radius:3px;padding:0 3px;"/>
- <textarea ng-if="list.type=='textarea'" class="add_list_txt" ng-model="list.content"
- placeholder="{{list.placeholder}}"
- style="font-size:12px;display:inline-block;vertical-align: top;width:100%;padding:5px 0;margin-top:0;border-bottom:none;"></textarea>
- <!--选择地区-->
- <!-- 选择项目箭头 -->
- <i ng-if="list.type=='select'" class=" ion-ios-arrow-down position-fix"></i>
- <!-- 模糊查询下拉列表 -->
- <ul ng-show="list.fuzzyQuery&&(isRelateUl1||isRelateUl2) && (list.content.length > 0) && (list.content.length < 8)"
- class="isRelateUl" style="overflow: visible;margin-left:5%">
- <li ng-repeat="org in orgList track by $index" style="overflow: visible;">
- <span ng-bind-html="ttt(org.name)" ng-click="setOrgName(org, list)">{{org.name}}</span>
- </li>
- </ul>
- <div ng-if="list.type=='upload'"
- style="width:100%;">
- <input id = "viceorgid" placeholder="{{list.placeholder}}" type="text" ng-model="list.content"
- style="width:100%;border-radius:3px;padding:0 3px;"/>
- <span style='color: blue' ng-click="addViceOrg(list)">添加</span>
- </div>
- <div ng-if="list.type=='upload'">
- <a ng-repeat="org in orgList track by $index"
- ng-init="imageIndex=$index">
- <ul ng-if="org != null">
- <li class="item">
- <span>{{org}}</span>
- <span style='text-align: right; color: burlywood' ng-click="deleteOrg($index)">删除</span>
- </li>
- </ul>
- </a>
- </div>
- <input type="file" name="file" id="file" accept="image/*" ng-model="changeFile" multiple
- style="display:none"/>
- </div>
- </div>
- </div>
- <div class="submit-section">
- <!--<button ng-click="submitForm()" ng-class="{'submit-button':true,'sbg-blue':isChecked}">提交认证</button>-->
- <button ng-click="submitForm()" class="submit-button sbg-blue">保存</button>
- </div>
- <br>
- <br>
- <br>
- <br>
- <br>
- <br>
- </div>
- </ion-content>
- </ion-view>
- <style>
- </style>
|