123456789101112131415161718192021222324252627282930313233343536 |
- <ion-view style="background-color: #f2f2f2;">
- <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>
- <span class="DockingTheme_button" ng-click="editAuthority()">保存</span>
- </div>
- <ion-content delegate-handle="calenderContent" class="has-header">
- <form style="height:45px;background-color: #fff;margin: 6px 0;width:100%;" ng-if="locknum==0">
- <span style="display: inline-block;height: 100%;line-height:45px;width: auto;color: #ccc;padding-left: 15px;float: left;">权限名称</span>
- <input placeholder="权限名称" style="height: 100%;border: none;width:auto;padding-left: 13px;float: left;" ng-model="authority.name" maxlength="20">
- </form>
- <form style="height:45px;background-color: #fff;margin: 6px 0;width:100%;" ng-if="locknum>0">
- <span style="display: inline-block;height: 100%;line-height:45px;width: auto;color: #ccc;padding-left: 15px;float: left;">权限名称</span>
- <input placeholder="权限名称" style="height: 100%;border: none;width:auto;padding-left: 13px;float: left;font-size: 15px;color: #ccc;background-color: rgb(255, 255, 255);" readonly="true" ng-model="authority.name" maxlength="20">
- </form>
- <div class="new_build_category" ng-click="addMember()" style="margin-bottom: 0;border-bottom: .5px solid #e6e6e7;">
- <i class="ion-plus" style=""></i>
- <h3>添加成员</h3>
- <small ng-bind="MemberList.length+'人'"></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:5px;left: 13px;float: left;clear: both;">
- <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%;">
- </span>
- <div class="authority_SetName">
- <h3 class="authorityName_h3" style="width: auto;border: none;position:relative;left: 5px; height:53px;line-height:53px;margin: 0;" ng-bind="member.userName"></h3>
- <span class="delectCloudMember" ng-if="$index>=locknum&&$index!=0" ng-click="delectCloudMember($index)"></span>
- </div>
- <h4 class="authorityName_h3" ng-if="member.iscreator==1&&$index==0" style="width: auto;font-size: 15px;color: #ccc;right: 4%;">创建者</h4>
- </ion-item>
- </ion-list>
- </ion-content>
- </ion-view>
|