CloudFolderCreate.html 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <ion-view style="background-color: #f2f2f2;">
  2. <ion-header-bar align-title="center">
  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. <h3 class="DockingTheme_h3">新建云文件夹</h3>
  6. <span class="DockingTheme_button" ng-click="saveCloudFolder()">保存</span>
  7. </ion-header-bar>
  8. <ion-content delegate-handle="calenderContent" class="has-header">
  9. <div class="calendarList-content" style="background-color: #f1f0f0;margin-top: 7px;">
  10. <ion-list class="calendarList-content-ul removeFoldersName">
  11. <ion-item>
  12. <form>
  13. <label style="width: 10%;height: 45px;line-height: 45px;display: inline-block;padding-left: 14px;background-color: #fff;color: #ccc;">名称</label>
  14. <input placeholder="" ng-model="cloudfolder.name" style="border: none;width:90%;height:45px;font-size: 15px;padding-left: 7%;float: right;">
  15. </form>
  16. </ion-item>
  17. </ion-list>
  18. </div>
  19. <div class="new_build_category" ng-click="creatAuthority()" style="margin-top: 7px;">
  20. <i class="ion-plus"></i>
  21. <h3 ng-if="AuthorityList.length!=0">添加权限</h3>
  22. <h3 ng-if="AuthorityList.length==0">新建权限</h3>
  23. <span class="folder_span">必填</span>
  24. </div>
  25. <!--<div class="new_build_category cloudSetAthority" ng-click="creatAuthority()" style="margin-top: 7px;" ui-sref="CloudAuthoritySet">-->
  26. <!--<h3>设置权限</h3>-->
  27. <!--<span class="folder_span"><b style="font-weight: normal;">0</b>/10</span>-->
  28. <!--<em class="ion-ios-arrow-right"></em>-->
  29. <!--</div>-->
  30. <!--<div class="item item-toggle toggle-large" style="height:auto;padding: 0;background-color: #fff;">-->
  31. <!--<ion-toggle ng-model="ttc.showcloud" ng-change="cloudToggle()" class="cloudSetCreat" ng-repeat="item in settingsList">-->
  32. <!--{{ item.text }}-->
  33. <!--</ion-toggle>-->
  34. <!--</div>-->
  35. <ul class="calendarList-content-ul">
  36. <li ng-click="chooseNewUndid(Authority,$index)" ng-repeat="Authority in AuthorityList track by $index">
  37. <h1 ng-bind="Authority.name" style="line-height: 53px;"></h1>
  38. <span ng-class="{'pay_list_c3':true, 'love_input_on':Authority.checked}">
  39. <input type="radio" checked="" style="position:absolute;top:50%;left:-29px;z-index: 55;display:none;opacity: 0;">
  40. </span>
  41. </li>
  42. <p class="new_category_none authorityNone" ng-if="AuthorityList.length==undefined||AuthorityList.length==0">
  43. <i></i>
  44. <span>你还没有权限快去新建权限</span>
  45. </p>
  46. </ul>
  47. </ion-content>
  48. </ion-view>