1234567891011121314151617181920212223242526272829303132333435 |
- <ion-view style="background-color: #f2f2f2;" title="匹配成果">
- <div class="bar bar-header">
- <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
- <button class="button button-icon icon goback" ng-click="goback()"></button>
- <h3 class="DockingTheme_h3 resource_h3" ng-bind="name"></h3>
- <button class="button iosButton ion-ios-search" ng-click="matchSearch()"></button>
- </div>
- <ion-content class="has-header" delegate-handle="calenderContent" style="background-color:#fff;">
- <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>
- <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)">
- <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;">
- <div class="resourceList">
- <h3 class="pus_h1 resourceH3 new_push_h1" style="height: 39px;line-height: 30px;" ng-if="relative.type!=81">{{relative.title}}</h3>
- <h3 class="pus_h1 resourceH3 new_push_h1" style="height: 39px;line-height: 30px;" ng-if="relative.type==81">
- <span class="new_folder_span">{{relative.title}}</span>
- <b class="addlist_subtext addlist_subtext_on new_folder_flag" ng-if="relative.flag==1"></b>
- </h3>
- <span class="ownerResource">发布者:<small>{{relative.creatorname}}</small></span>
- <p class="lab_sub" style="width: 100%;float:left;top:0px;">
- <span class="lab_one"><i></i><small>{{relative.commcount}}</small></span>
- <span class="lab_two"><i></i><small>{{relative.visitcount}}</small></span>
- <span class="lab_three"><span class="favourate"><i></i><small>{{relative.favourcount}}</small></span></span>
- <span class="lab_five" ng-if="relative.publishTime!=undefined">{{relative.publishTime}}</span>
- <span class="lab_five" ng-if="relative.conntime!=undefined">{{relative.conntime}}</span>
- </p>
- </div>
- </a>
- <ion-infinite-scroll
- immediate-check="false"
- ng-if="isload"
- on-infinite="loadMore()"
- distance="10%" >
- </ion-infinite-scroll>
- </ion-content>
- </ion-view>
|