123456789101112131415161718192021222324252627 |
- <ion-view view-title="发布的公告">
- <ion-nav-buttons side="right">
- <button class="button button-clear" ng-click="toadd()" ng-show="createstate==1">
- <i class="icon ion-android-add"></i>
- </button>
- </ion-nav-buttons>
- <ion-content>
- <div ng-if="loading" class="center init-load action-sheet-backdrop">
- <ion-spinner icon="android"></ion-spinner>
- </div>
- <div ng-if="!loading">
- <div class="list">
- <div class="item item-avatar item-icon-right" ng-repeat="data in Notice" ng-click="todetails(data.id)">
- <img ng-src="../../../img/panda.png" ng-click="showcardinfo({{data.usrid.id}})">
- <span>{{data.title}}</span>
- <p>{{data.content}}</p>
- <p>{{data.update_dd == null ? data.create_dd : data.update_dd | date:'MM-dd'}}
- <span ng-hide="(data.readtimes == 0 || data.readtimes == null) || (data.commenttimes == 0 || data.commenttimes == null)">|</span>
- <span ng-hide="data.readtimes == 0 || data.readtimes == null">{{data.readtimes}}看</span>
- <span ng-hide="data.commenttimes == 0 || data.commenttimes == null">{{data.commenttimes}}评</span>
- </p>
- <i class="icon ion-chevron-right icon-accessory"></i>
- </div>
- </div>
- </div>
- </ion-content>
- </ion-view>
|