123456789101112131415161718192021222324252627282930 |
- <ion-view style="background-color: #f2f2f2;" title="成员">
- <div class="bar bar-header" style="background-color: #fff;background-image: none;">
- <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
- <button class="button button-icon icon goback" ng-click="goback()"></button>
- <h1 class="bar_title">成员</h1>
- <button class="button ion-ios-search member-search" ng-click="goUserSearch()"></button>
- </div>
- <ion-content delegate-handle="calenderContent" class="has-header" overflow-scroll="false">
- <div class="new_build_category" ng-click="addResourceMember()" style="margin-bottom: 0;border-bottom: .5px solid #e6e6e7;">
- <i class="ion-plus" style=""></i>
- <h3>添加成员</h3>
- <small ng-bind="memberlist.length+'/200'"></small>
- </div>
- <ion-list show-delete="data.showDelete" show-reorder="data.showReorder" style="background-color: #fff;display: block;">
- <ion-item style="height: 53px;padding: 0;border: none;" ng-repeat="member in memberlist track by $index">
- <span style="display: inline-block;height:auto;position: relative;top: -7px;left: 13px;">
- <img ng-src="{{imgUrl+member.photo}}" onerror="javascript:this.src='./img/admin_picter.jpg';" width="40" height="40" style="border: 1px solid transparent;border-radius: 50%;" ng-click="go('publisher',{Id:member.userId})">
- </span>
- <span class="authority_SetName">
- <h3 class="authorityName_h3" style="width: auto;border: none;position: relative;left: 5px; height: 53px;line-height: 53px;margin: 0;float: left;" ng-bind="member.userName"></h3>
- <span class="delectCloudMember" ng-if="member.iscreator!=1" ng-click="deleteUser(member,$index)"></span>
- </span>
- </ion-item>
- </ion-list>
- <div class="recordListNone authorityNone" ng-if="memberlist.length==0">
- <p></p>
- <h6>暂无成员</h6>
- </div>
- </ion-content>
- </ion-view>
|