wastepaper.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <ion-view style="background-color: #f2f2f2;">
  2. <div class="bar bar-header">
  3. <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
  4. <button class="button button-icon icon goback" ng-click="goback()"></button>
  5. <h1 class="title calendar_h1" style="width: auto;color: #2b2b2b;">废纸篓</h1>
  6. <button class="button ShengButton" style="background-color: transparent;border: none;" ng-click="AllRemove()"></button>
  7. </div>
  8. <ion-content delegate-handle="calenderContent" class="has-header">
  9. <div ng-repeat="record in recordList" class="wastepaperDiv" >
  10. <div class="list_title">
  11. <span class="f-year" ng-bind="record.date | formatdate"></span>
  12. </div>
  13. <ion-list class="list_ul" show-delete="data.showDelete" show-reorder="data.showReorder">
  14. <ion-item ng-repeat="rec in record.reclist track by $index" ng-click="checkStatus(record,rec,$index)">
  15. <span ng-class="{'pay_list_c2':true, 'love_input_on':rec.value}">
  16. <input type="radio" checked="" style="position:absolute;top:50%;left:-29px;z-index: 55;display:none;opacity: 0;" ng-model="item.value">
  17. </span>
  18. <div class="item-content">
  19. <span><img ng-src="{{rec.image | picturefilter}}" onerror="javascript:this.src='./img/admin_picter.jpg';" width="50" height="50" style="border: 1px solid transparent;border-radius: 50%;"></span>
  20. <h3 ng-bind="rec.title"></h3>
  21. <small class="flag_i" ng-if="rec.flag==1"></small>
  22. <em ng-bind="rec.conntime | substrdate"></em>
  23. <i class="ion-ios-arrow-right"></i>
  24. </div>
  25. </ion-item>
  26. </ion-list>
  27. </div>
  28. <div ng-if="recordList.length == 0" style="width:100%;height:120px;position:relative;top: 125px;">
  29. <i id="Fans_focus" ></i>
  30. <p class="empty_p">还没有废弃内容</p>
  31. </div>
  32. </ion-content>
  33. <ion-footer-bar style="background-color:#f7f7f7;display:none;height: 48px; line-height: 48px;" id="collect-bottom">
  34. <span ng-click="cancel()" id="collect-cancel" style="">取消</span>
  35. <div ng-click="restore()" id="collect-delect">还原({{selectNum}})</div>
  36. </ion-footer-bar>
  37. </ion-view>