notificationDetail.html 1.8 KB

12345678910111213141516171819202122232425262728
  1. <ion-view view-title="{{notice.newtitle}}">
  2. <div class="bar bar-header" style="background-image: none;background-color: #3B8BD0;">
  3. <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
  4. <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="goback()"></button>
  5. <h1 class="bar_title" style="color: #fff">{{notice.newtitle}}</h1>
  6. <button class="button ion-ios-more roleActionSet" ng-if="canDoUpdate && isCreator" ng-click="openActionSheet()"></button>
  7. </div>
  8. <ion-content class="has-header successArrangeWrap">
  9. <div style="font-size: 20px;padding: 0 2%;font-weight: normal"><b>{{notice.newtitle}}</b></div>
  10. <div style="padding: 15px 2%;font-size: 18px;color: #999">{{notice.publishTime | datesubstring10}}&nbsp;&nbsp;{{platform}}</div>
  11. <div style="padding: 0 2%;">
  12. <div ng-bind-html="noticecontent"></div>
  13. </div>
  14. <div style="padding: 0 2%;font-size: 16px" ng-if="picturelistsingle.length > 0">附件:</div>
  15. <a style="padding-bottom: 50px;" ng-repeat="pic in picturelistsingle track by $index"><br>
  16. <span ng-bind="pic.title" style="width:100%;height:85px;padding-left: 2%;padding-right: 2%;" ng-click="shouBigImage(picturelistsingle, $index)"></span>
  17. </a>
  18. </ion-content>
  19. <div id="rightDisplay" ng-show="bigImage" class="popover-backdrop">
  20. <ion-slide-box auto-play="false" does-continue="false" show-pager="true" delegate-handle="slide_detail">
  21. <ion-slide ng-repeat="image in picturelist track by $index" style="background-color:#000;">
  22. <div class="pinch-zoom" style="width: 100%;height:100%;">
  23. <img class="img-responsive bigimage" src="{{imgUrl+image.sourceName}}" ng-click="hideBigImage()"/>
  24. </div>
  25. </ion-slide>
  26. </ion-slide-box>
  27. </div>
  28. </ion-view>