activityNoticeManger.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <ion-view style="background-color:#fff;">
  2. <div class="bar bar-header" style="background-image: none;background-color: #5BABE6;">
  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">通知管理</h1>
  6. <!--<small class="isReadNum"><em class="ion-plus-round"></em>新建通知</small>-->
  7. </div>
  8. <ion-content style="background-color:#f7f7f7;overflow-x:hidden;overflow-y:visible;" class="has-header">
  9. <!--活动名称与状态-->
  10. <div class="activityFloor noticeFloorHeader">
  11. <h2><em>[活动]</em>{{title}}</h2>
  12. <small ng-if="status==1">报名剩余{{days}}天</small>
  13. <small ng-if="status==2" class="hasGameOver">报名已截止</small>
  14. <small ng-if="status==3">活动进行中</small>
  15. <small ng-if="status==4" class="hasGameOver">已结束</small>
  16. </div>
  17. <ul>
  18. <li class="noticeListFloor" ng-repeat="noti in notifylist track by $index">
  19. <div class="noticeFloor">
  20. <img ng-src="{{imgUrl+noti.firstpic}}" ng-if="noti.firstpic!=undefined&&noti.firstpic.length>0">
  21. <h4 ng-bind="noti.title"></h4>
  22. <span class="single_newTime noNoticBg" ng-bind="noti.updatetime | datesubstring10"></span>
  23. <p ng-bind="noti.context"></p>
  24. <ul class="avWrap">
  25. <!--<li class="av1">
  26. <button>编辑</button>
  27. </li>-->
  28. <li class="av2" ng-click="deledtNotify(noti.notifyid,$index)">
  29. <button>删除</button>
  30. </li>
  31. </ul>
  32. </div>
  33. </li>
  34. </ul>
  35. </ion-content>
  36. <!--<div class="notice_button" ng-click="showAction()" ng-if="true">
  37. <i class="ion-plus-round"></i>
  38. <small>通知</small>
  39. </div>-->
  40. </ion-view>