1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <ion-view style="background-color:#fff" title="录入需求信息">
- <div class="bar bar-header" style="background-image: none;background-color: #5BABE6;">
- <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>
- <span class="DockingTheme_button" ng-click="saveTrainInfo()" style="background-color: transparent">保存</span>
- </div>
- <ion-content style="overflow-x:hidden;overflow-y:visible;" class="has-header" scroll="true">
- <form name="activitySchedule_form" action="" id="activitySchedule_form" class="activitySchedule_form">
- <!--需求信息-->
- <div ng-repeat="demandInfo in demandInfoList track by $index" style="clear: both;">
- <ul>
- <li>
- <span><sup>*</sup>需求名称</span>
- <input type="text" placeholder="请填写联系人" style="padding-right: 12px;" ng-model="demandInfoList.title"/>
- </li>
- <li>
- <span><sup>*</sup>需求标签</span>
- <i class="icon ion-ios-arrow-right activity_schedule_i" ng-click="showDemandLabelName()" style="z-index: 5;top: 0;"></i>
- <input type="text" ng-click="showDemandLabelName()" placeholder="请选择需求标签" style="padding-right: 12px;" ng-model="demandInfoList.demandLabelName" readonly="readonly"/>
- </li>
- <li style="height: auto;">
- <span><sup>*</sup>需求简介</span>
- <textarea placeholder="请填写需求简介" ng-model="demandInfoList.tagcontent" style="top: -1px;position: relative;"></textarea>
- </li>
- </ul>
- <ul style="margin-top: 7px;" class="upLoad_ul">
- <li>
- <span>上传需求图片<em>已添加<i>{{demandInfoimagelist.length}}</i>个</em></span>
- <a ng-click="showDemandImage()">+</a>
- </li>
- </ul>
- <ion-scroll scroll="true" has-bouncing="true" direction="x" scrollbar-x="false" delegate-handle="scrollimage" class="photo_div" ng-show="demandInfoimagelist.length>0" style="overflow-x:hidden;overflow-y:hidden;">
- <a class="photo_img" ng-repeat="image in demandInfoimagelist track by $index">
- <img src="{{image.photo_name | picturefilter}}" style="width:100%;height:85px;" class="back-img" ng-click="shouBigImage($index)"/>
- <span class="photo_delect delect_cammer" ng-click="deleteDemandPhoto($index)"></span>
- </a>
- </ion-scroll>
- </div>
- </form>
- </ion-content>
- </ion-view>
- <!--需求图片放大区域-->
- <div id="DemandRightDisplay" ng-show="bigImageDemand" class="popover-backdrop" >
- <ion-slide-box auto-play="false" does-continue="false" show-pager="true" delegate-handle="slide_detail">
- <ion-slide ng-repeat="image in demandInfoimagelist track by $index" style="background-color:#000;">
- <button class="pswp_button_arrow" ng-click="hideBigImage()"></button>
- <div class="pinch-zoom" style="width: 100%;height: 100%">
- <img class="img-responsive bigimage" src="{{image.original_name | picturefilter}}" ng-click="hideBigImage()"/>
- </div>
- </ion-slide>
- </ion-slide-box>
- </div>
|