authorityName.html 2.0 KB

123456789101112131415161718192021222324252627282930313233
  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" ng-bind="name"></h1>
  6. <button class="button ShengButton" ng-click="editAuthority()"></button>
  7. </div>
  8. <ion-content delegate-handle="calenderContent" class="has-header" on-scroll="getScrollPosition()" overflow-scroll="false">
  9. <ion-refresher pulling-text="" on-refresh="doRefresh()"></ion-refresher>
  10. <span class="actionSheetCode">下拉展开邀请二维码</span>
  11. <ion-list show-delete="data.showDelete" show-reorder="data.showReorder" style="background-color: #fff;display: block;">
  12. <ion-item style="height: 53px;padding: 0;border: none;" ng-repeat="member in MemberList track by $index">
  13. <span style="display: inline-block;height:auto;position: relative;top: -7px;left: 13px;">
  14. <img ng-src="{{imgUrl+avaterPath+member.photo}}" onerror="javascript:this.src='./img/admin_picter.jpg';" width="40" height="40" style="border: 1px solid transparent;border-radius: 50%;">
  15. </span>
  16. <span class="authority_SetName">
  17. <h3 class="authorityName_h3" style="width: auto;border: none;position: absolute;left: 5px; height: 53px;line-height: 53px;margin: 0;" ng-bind="member.userName"></h3>
  18. </span>
  19. <h4 class="authorityName_h3" ng-if="member.iscreator==1" style="width: auto;font-size: 15px;color: #ccc;right: 4%;">创建者</h4>
  20. </ion-item>
  21. </ion-list>
  22. <div class="recordListNone authorityNone" ng-if="MemberList.length==0">
  23. <p></p>
  24. <h6>暂无成员</h6>
  25. </div>
  26. </ion-content>
  27. <div class="fixedTwo" ng-click="hiddenTwoCode()">
  28. <div class="fixedTwoImgWrap">
  29. <img ng-src="{{qrcodeurl}}" alt="邀请二维码" class="fixedTwoImg"/>
  30. <span>扫一扫加入我们</span>
  31. </div>
  32. </div>
  33. </ion-view>