authorityAddSuperAdmin.html 2.5 KB

123456789101112131415161718192021222324252627282930
  1. <ion-view style="background-color: #f2f2f2;">
  2. <div class="bar bar-header" style="background-color: #fff;background-image: none;">
  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. <h1 class="bar_title">添加成员</h1>
  6. <!--<button class="button ion-ios-search member-search" ng-click="goUserSearch()"></button>-->
  7. </div>
  8. <ion-content delegate-handle="calenderContent" class="has-header" overflow-scroll="false">
  9. <ion-list show-delete="data.showDelete" show-reorder="data.showReorder" style="background-color: #fff;display: block;">
  10. <ion-item style="height: 53px;padding: 0;border: none;" ng-repeat="member in memberlist track by $index">
  11. <span style="display: inline-block;height:auto;position: relative;top: -7px;left: 13px;">
  12. <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})">
  13. </span>
  14. <span class="authority_SetName">
  15. <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>
  16. <span class="delectCloudMember" ng-if="((member.iscreator!=1&&member.iscreator!=3)&&(identity==1||identity==3))||(identity==2&&member.iscreator==0)" ng-click="deleteUser(member,$index)"></span>
  17. <!--<h4 class="authorityName_h3" ng-if="member.iscreator==3" style="width: auto;font-size: 15px;color: #ccc;position: relative;float: left;">(系统管理员)</h4>-->
  18. <!--<h4 class="authorityName_h3" ng-if="member.iscreator==1" style="width: auto;font-size: 15px;color: #ccc;position: relative;float: left;">(所有者)</h4>-->
  19. <!--<h4 class="authorityName_h3" ng-if="member.iscreator==2" style="width: auto;font-size: 15px;color: #ccc;position: relative;float: left;">(管理员)</h4>-->
  20. </span>
  21. <span class="authority_addSpan" ng-if="member.parentid!=0&&member.isExisits==0" ng-click="addSuperAdmin(member,$index)">添加+</span>
  22. <span class="authority_addSpan authority_addSpan_Did" ng-if="member.parentid!=0&&member.isExisits==1" ng-click="delSuperAdmin(member,$index)">已添加</span>
  23. </ion-item>
  24. </ion-list>
  25. <div class="recordListNone authorityNone" ng-if="memberlist.length==0">
  26. <p></p>
  27. <h6>暂无成员</h6>
  28. </div>
  29. </ion-content>
  30. </ion-view>