1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <ion-view style="background-color:#fff;">
- <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>
- <!--<small class="isReadNum"><em class="ion-plus-round"></em>新建通知</small>-->
- </div>
- <ion-content style="background-color:#f7f7f7;overflow-x:hidden;overflow-y:visible;" class="has-header">
- <!--活动名称与状态-->
- <div class="activityFloor noticeFloorHeader">
- <h2><em>[活动]</em>{{title}}</h2>
- <small ng-if="status==1">报名剩余{{days}}天</small>
- <small ng-if="status==2" class="hasGameOver">报名已截止</small>
- <small ng-if="status==3">活动进行中</small>
- <small ng-if="status==4" class="hasGameOver">已结束</small>
- </div>
- <ul>
- <li class="noticeListFloor" ng-repeat="noti in notifylist track by $index">
- <div class="noticeFloor">
- <img ng-src="{{imgUrl+noti.firstpic}}" ng-if="noti.firstpic!=undefined&¬i.firstpic.length>0">
- <h4 ng-bind="noti.title"></h4>
- <span class="single_newTime noNoticBg" ng-bind="noti.updatetime | datesubstring10"></span>
- <p ng-bind="noti.context"></p>
- <ul class="avWrap">
- <!--<li class="av1">
- <button>编辑</button>
- </li>-->
- <li class="av2" ng-click="deledtNotify(noti.notifyid,$index)">
- <button>删除</button>
- </li>
- </ul>
- </div>
- </li>
- </ul>
- </ion-content>
- <!--<div class="notice_button" ng-click="showAction()" ng-if="true">
- <i class="ion-plus-round"></i>
- <small>通知</small>
- </div>-->
- </ion-view>
|