123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <ion-view style="background-color: #f2f2f2;">
- <ion-header-bar align-title="center">
- <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
- <button class="button button-icon icon goback" ng-click="goback()"></button>
- <h3 class="DockingTheme_h3">新建云文件夹</h3>
- <span class="DockingTheme_button" ng-click="saveCloudFolder()">保存</span>
- </ion-header-bar>
- <ion-content delegate-handle="calenderContent" class="has-header">
- <div class="calendarList-content" style="background-color: #f1f0f0;margin-top: 7px;">
- <ion-list class="calendarList-content-ul removeFoldersName">
- <ion-item>
- <form>
- <label style="width: 10%;height: 45px;line-height: 45px;display: inline-block;padding-left: 14px;background-color: #fff;color: #ccc;">名称</label>
- <input placeholder="" ng-model="cloudfolder.name" style="border: none;width:90%;height:45px;font-size: 15px;padding-left: 7%;float: right;">
- </form>
- </ion-item>
- </ion-list>
- </div>
- <div class="new_build_category" ng-click="creatAuthority()" style="margin-top: 7px;">
- <i class="ion-plus"></i>
- <h3 ng-if="AuthorityList.length!=0">添加权限</h3>
- <h3 ng-if="AuthorityList.length==0">新建权限</h3>
- <span class="folder_span">必填</span>
- </div>
- <!--<div class="new_build_category cloudSetAthority" ng-click="creatAuthority()" style="margin-top: 7px;" ui-sref="CloudAuthoritySet">-->
- <!--<h3>设置权限</h3>-->
- <!--<span class="folder_span"><b style="font-weight: normal;">0</b>/10</span>-->
- <!--<em class="ion-ios-arrow-right"></em>-->
- <!--</div>-->
- <!--<div class="item item-toggle toggle-large" style="height:auto;padding: 0;background-color: #fff;">-->
- <!--<ion-toggle ng-model="ttc.showcloud" ng-change="cloudToggle()" class="cloudSetCreat" ng-repeat="item in settingsList">-->
- <!--{{ item.text }}-->
- <!--</ion-toggle>-->
- <!--</div>-->
- <ul class="calendarList-content-ul">
- <li ng-click="chooseNewUndid(Authority,$index)" ng-repeat="Authority in AuthorityList track by $index">
- <h1 ng-bind="Authority.name" style="line-height: 53px;"></h1>
- <span ng-class="{'pay_list_c3':true, 'love_input_on':Authority.checked}">
- <input type="radio" checked="" style="position:absolute;top:50%;left:-29px;z-index: 55;display:none;opacity: 0;">
- </span>
- </li>
- <p class="new_category_none authorityNone" ng-if="AuthorityList.length==undefined||AuthorityList.length==0">
- <i></i>
- <span>你还没有权限快去新建权限</span>
- </p>
- </ul>
- </ion-content>
- </ion-view>
|