12345678910111213141516171819202122232425262728 |
- <ion-view view-title="{{notice.newtitle}}">
- <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">{{notice.newtitle}}</h1>
- <button class="button ion-ios-more roleActionSet" ng-if="canDoUpdate && isCreator" ng-click="openActionSheet()"></button>
- </div>
- <ion-content class="has-header successArrangeWrap">
- <div style="font-size: 20px;padding: 0 2%;font-weight: normal"><b>{{notice.newtitle}}</b></div>
- <div style="padding: 15px 2%;font-size: 18px;color: #999">{{notice.publishTime | datesubstring10}} {{platform}}</div>
- <div style="padding: 0 2%;">
- <div ng-bind-html="noticecontent"></div>
- </div>
- <div style="padding: 0 2%;font-size: 16px" ng-if="picturelistsingle.length > 0">附件:</div>
- <a style="padding-bottom: 50px;" ng-repeat="pic in picturelistsingle track by $index"><br>
- <span ng-bind="pic.title" style="width:100%;height:85px;padding-left: 2%;padding-right: 2%;" ng-click="shouBigImage(picturelistsingle, $index)"></span>
- </a>
- </ion-content>
- <div id="rightDisplay" ng-show="bigImage" 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 picturelist track by $index" style="background-color:#000;">
- <div class="pinch-zoom" style="width: 100%;height:100%;">
- <img class="img-responsive bigimage" src="{{imgUrl+image.sourceName}}" ng-click="hideBigImage()"/>
- </div>
- </ion-slide>
- </ion-slide-box>
- </div>
- </ion-view>
|