resourceMatch.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <ion-view style="background-color: #f2f2f2;" title="匹配成果">
  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. <h3 class="DockingTheme_h3 resource_h3" ng-bind="name"></h3>
  6. <button class="button iosButton ion-ios-search" ng-click="matchSearch()"></button>
  7. </div>
  8. <ion-content class="has-header" delegate-handle="calenderContent" style="background-color:#fff;">
  9. <ion-refresher pulling-text="下拉刷新" on-refresh="getRelativeResource()" class="home_refresh" refreshing-text="成功更新....." pulling-icon-color="#3385ff" refreshing-icon="ion-checkmark-circled" refreshing-icon-color="#3385ff"></ion-refresher>
  10. <a class="item item-thumbnail-right item-text-wrap push_home_a resourceContent" ng-repeat="relative in relativelist track by $index" style="min-height:96px !important;height: 96px;" ng-click="goResourceDetail(relative)">
  11. <img ng-src="{{imgUrl+relative.logo}}" onerror="javascript:this.src='./img/admin_picter.jpg';" style="width: 74px;;height:65px;position: absolute;top: 15px;left:12px;">
  12. <div class="resourceList">
  13. <h3 class="pus_h1 resourceH3 new_push_h1" style="height: 39px;line-height: 30px;" ng-if="relative.type!=81">{{relative.title}}</h3>
  14. <h3 class="pus_h1 resourceH3 new_push_h1" style="height: 39px;line-height: 30px;" ng-if="relative.type==81">
  15. <span class="new_folder_span">{{relative.title}}</span>
  16. <b class="addlist_subtext addlist_subtext_on new_folder_flag" ng-if="relative.flag==1"></b>
  17. </h3>
  18. <span class="ownerResource">发布者:<small>{{relative.creatorname}}</small></span>
  19. <p class="lab_sub" style="width: 100%;float:left;top:0px;">
  20. <span class="lab_one"><i></i><small>{{relative.commcount}}</small></span>
  21. <span class="lab_two"><i></i><small>{{relative.visitcount}}</small></span>
  22. <span class="lab_three"><span class="favourate"><i></i><small>{{relative.favourcount}}</small></span></span>
  23. <span class="lab_five" ng-if="relative.publishTime!=undefined">{{relative.publishTime}}</span>
  24. <span class="lab_five" ng-if="relative.conntime!=undefined">{{relative.conntime}}</span>
  25. </p>
  26. </div>
  27. </a>
  28. <ion-infinite-scroll
  29. immediate-check="false"
  30. ng-if="isload"
  31. on-infinite="loadMore()"
  32. distance="10%" >
  33. </ion-infinite-scroll>
  34. </ion-content>
  35. </ion-view>