myFav.html 1.2 KB

123456789101112131415161718192021
  1. <ion-view hide-tabs="true" view-title="我的喜好" style="background-color:#fafafa; ">
  2. <div class="bar bar-header" style="background-image: none;background-color: #5BABE6;">
  3. <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
  4. <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="goback()"></button>
  5. <h1 class="bar_title" style="color: #fff">我的喜好</h1>
  6. </div>
  7. <ion-content class="padding has-header" style="padding: 10px 0;overflow-x: hidden; overflow-y:visible;">
  8. <ion-list>
  9. <div class="interest_industry">感兴趣的产业</div>
  10. <ion-item ng-repeat="fav in favs" style="" class="industry_name" >
  11. <span style="display: inline-block; position: absolute;padding-left:15px;color: #272727;width:100%;" ng-click="checkModel(fav)">{{fav.name}}
  12. <label class="checkbox fav_label">
  13. <span ng-class="{'guide_check':true,'guide_on':fav.value}">
  14. <input type="checkbox" class="fav_check" ng-model="fav.value" ng-click="checkModel(fav)">
  15. </span>
  16. </label>
  17. </span>
  18. </ion-item>
  19. </ion-list>
  20. </ion-content>
  21. </ion-view>