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