123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <ion-view view-title="季报导入">
- <div class="bar bar-header" style="background-image: none;background-color: #3B8BD0;">
- <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
- <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="goback()"></button>
- <h1 class="bar_title" style="color: #fff">季报导入</h1>
- </div>
- <ion-content style="background-color:#f2f2f2;overflow-x:hidden;overflow-y:visible;" class="has-header">
- <form>
- <div ng-repeat="list in formList" ng-init="outerIndex=$index"
- ng-class="{'hole-row':true,'row-margin':list.rowMargin}">
- <div class="input-title" style="padding-left: 5%;">
- {{list.title}}
- </div>
- <div class="input-box">
- <!--上传证明材料-->
- <div ng-if="list.type=='upload'"
- style="width:100%;">
- <a href="" class="upload-add" ng-click="addImage(outerIndex)">+</a>
- <span ng-if="list.remarkType=='normal'" style="font-size:12px;color:#BFC2D3;"></span>
- </div>
- <ion-scroll ng-if="list.type=='upload'"
- 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'))"
- scroll="true" has-bouncing="true" direction="x" scrollbar-x="false"
- delegate-handle="scrollimage" class="photo_div"
- style="margin-right:10px;overflow-x:hidden;overflow-y:hidden;height: auto;">
- <div ng-repeat="image in list.imagelist track by $index"
- ng-init="imageIndex=$index">
- <span ng-bind="image.title" style="width:100%;height:85px;color:#8C8E9B" class="back-img"></span>
- <span style="padding-left: 20px;color:#3B8BD0;"
- ng-click="deletePhoto(imageIndex,outerIndex)">删除</span>
- <br>
- </div>
- </ion-scroll>
- <input type="file" name="file" id="file" ng-model="changeFile" multiple="multiple"
- style="display:none"/>
- </div>
- </div>
- </form>
- </ion-content>
- <ion-footer-bar class="footer_buttonWrap">
- <span class="footer_button" style="font-size: 18px;" ng-click="sendAnalysisToDB()">导入</span>
- </ion-footer-bar>
- </ion-view>
|