labelResourceListModal.html 5.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <ion-modal-view style="background-color:#fff;" title="{{labelTitle}} 相关资源" class="modal-content">
  2. <div class="bar bar-header bar-header-blue" style="">
  3. <div class="button button-icon icon pus_blue"></div>
  4. <!--<button class="button button-icon icon goback whiteGoBack noneContent" ng-click="goback()"></button>-->
  5. <h1 class="bar_title" style="color: #fff">{{labelTitle}} 相关资源</h1>
  6. <div class="button button-icon icon top-button-close" ng-click="labelResourceListModal.hide()">
  7. <i class="icon ion-android-close"></i>
  8. </div>
  9. </div>
  10. <ion-content class="has-header" scroll="true" delegate-handle="privateContent" style="padding-top:10px;">
  11. <ion-refresher pulling-text="" on-refresh="refreshData()" class="home_refresh tabs_refresh" refreshing-text="" pulling-icon-color="#3385ff" refreshing-icon="ion-checkmark-circled" refreshing-icon-color="#3385ff"></ion-refresher>
  12. <!--<div class="searchHomeChatWrapFloor" ng-if="isShowSearchButton">-->
  13. <!--<div class="searchFriend" ng-click="showSearchButtonLeft()">-->
  14. <!--<span> <i class="ion-ios-search"></i>搜索</span>-->
  15. <!--</div>-->
  16. <!--</div>-->
  17. <!--<div class="searchHomeChatWrapFloor" ng-if="!isShowSearchButton">-->
  18. <!--<div class="searchFriend">-->
  19. <!--<span style="width: 100%;">-->
  20. <!--<i class="ion-ios-search" style="position: absolute;left: 12px;top: 5px;z-index: 5;"></i>-->
  21. <!--&lt;!&ndash;<input placeholder="搜索" class="showSearchInput" ng-model="keyfilter.key" ng-change="fixKey()" ng-focus="showFunc()" autofocus="autofocus" autocomplete="on">&ndash;&gt;-->
  22. <!--<input placeholder="搜索" class="showSearchInput" ng-model="keyfilter.key" ng-keypress="($event.which === 13)?getPersonData():0" ng-focus="showFunc()" autofocus="autofocus" autocomplete="on">-->
  23. <!--<i class="icon ion-close-circled placeholder-icon" style="right:7px;position: absolute;top: 5px;" ng-click="clearSearch()"></i>-->
  24. <!--</span>-->
  25. <!--</div>-->
  26. <!--</div>-->
  27. <!--记录-->
  28. <ion-list ng-if="searchtype==4" class="list resourcelistDiv calendarList-content-ul" style="background-color: #fff;display: block;position: relative;top:0px;">
  29. <ion-item class="item item-thumbnail-right item-text-wrap push_home_a resourceContent item-content" ng-repeat="record in allList track by $index" style="height: 95.1px;" ng-click="goDockingdetails(record)">
  30. <img ng-src="{{imgUrl+record.orglogo | imgfilter}}" onerror="javascript:this.src='./img/admin_picter.jpg';" style="width: 74px;;height:65px;position: absolute;top: 15px;left:12px;">
  31. <div class="resourceList">
  32. <h3 class="pus_h1 resourceH3 new_push_h1" style="height: 39px;line-height: 30px;" ng-bind-html="badge(record.title)"></h3>
  33. <span class="ownerResource">发布者:<small>{{record.userModel.username}}</small></span>
  34. <p class="lab_sub" style="width: 100%;float:left;top:0px;">
  35. <span class="lab_one"><i></i><small>{{record.commcount}}</small></span>
  36. <span class="lab_two"><i></i><small>{{record.visitcount}}</small></span>
  37. <span class="lab_three"><span class="favourate"><i></i><small>{{record.favourcount}}</small></span></span>
  38. <span class="lab_five">{{record.createtime | datesubstring10}}</span>
  39. </p>
  40. </div>
  41. </ion-item>
  42. </ion-list>
  43. <!--资源-->
  44. <ion-list ng-if="searchtype==2" class="list resourcelistDiv" style="background-color: #fff;display: block;position: relative;top:0px;">
  45. <ion-item class="item item-thumbnail-right item-text-wrap push_home_a resourceContent" ng-repeat="resource in allList track by $index" style="height: 75.1px;">
  46. <img ng-src="{{resource.logo == undefined?'':resource.logo | imgfilter}}" onerror="javascript:this.src='./img/admin_picter.jpg';" style="width: 74px;;height:65px;position: absolute;top: 15px;left:12px;">
  47. <div class="resourceList" ng-click="goResourceDetail(resource)">
  48. <h3 class="pus_h1 resourceH3 new_push_h1" style="height: 39px;line-height: 30px;" ng-bind-html="ttt(resource.title)"></h3>
  49. <span class="ownerResource">发布者:<small>{{resource.username}}</small></span>
  50. <p class="lab_sub" style="width: 100%;float:left;top:0px;">
  51. <span class="lab_one"><i></i><small>{{resource.commcount}}</small></span>
  52. <span class="lab_two"><i></i><small>{{resource.visitcount}}</small></span>
  53. <span class="lab_three"><span class="favourate"><i></i><small>{{resource.favourcount}}</small></span></span>
  54. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  55. <span class="lab_five">{{resource.publishtime}}</span>
  56. </p>
  57. </div>
  58. <!--</a>-->
  59. <!--<ion-option-button class="button-assertive" ng-click="shareSheetAction()">分享</ion-option-button>-->
  60. </ion-item>
  61. </ion-list>
  62. <div ng-if="allList.length == 0 " style="width: 100%;height:120px;position: relative;top:75px;">
  63. <i class="emptySource" ></i>
  64. <p class="empty_p">无相关内容</p>
  65. </div>
  66. </ion-content>
  67. </ion-modal-view>
  68. <style>
  69. .top-button-close{
  70. color:#fff;
  71. }
  72. </style>