manage.html 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <style>
  2. .tree-control .tree-input {
  3. min-height: 30px !important;
  4. padding-top: 5px;
  5. }
  6. .tree-control .tree-view .item-container:hover,
  7. .tree-control .tree-view .selected,
  8. .tree-control .tree-view .active {
  9. background-color: #428bca;
  10. background-image: linear-gradient(#428bca, #428bca) !important;
  11. background: #428bca;
  12. color: #fff;
  13. }
  14. .tree-control .tree-view .item-container:hover .expand,
  15. .tree-control .tree-view .selected .expand,
  16. .tree-control .tree-view .active .expand {
  17. border-left: 10px solid #fff;
  18. }
  19. .tree-control .tree-view .item-container:hover .expand-opened,
  20. .tree-control .tree-view .selected .expand-opened,
  21. .tree-control .tree-view .active .expand-opened {
  22. border-bottom: 0px solid transparent;
  23. border-left: 6px solid transparent;
  24. border-right: 6px solid transparent;
  25. border-top: 10px solid #fff;
  26. }
  27. /* .jry_selectHeight .dropdown-menu{
  28. height: 150px!important;
  29. } */
  30. .dropdown-menu {
  31. z-index: 9999;
  32. }
  33. .autosize{
  34. height: auto!important;
  35. }
  36. </style>
  37. <div ng-controller="workingFormCtrl">
  38. <!--{{title}}-->
  39. <div class="col-xs-12 panel">
  40. <section id="page-title-form">
  41. <div class="row">
  42. <div class="col-sm-8">
  43. <h1 class="mainTitle">{{vm.model.label}}<i tooltip={{vm.model.placeholder}}
  44. tooltip-placement="right"
  45. class="fa ti-help-alt margin-left-10 fontcolor-five pointfont"></i></h1>
  46. </div>
  47. </div>
  48. </section>
  49. </div>
  50. <form ng-submit="vm.submit(vm.model,'sm')" class="jry_selectHeight">
  51. <!-- <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form" ng-if="vm.fields.length">
  52. </formly-form> -->
  53. <div class="panel col-xs-12 col-0 bg-lightgrey">
  54. <formly-form model="vm.model " fields="vm.fields[0].fields " form="vm.form" options="vm.options ">
  55. </formly-form>
  56. </div>
  57. <div class="panel col-xs-12 col-0 bg-lightgrey margin-top-15" ng-if="vm.fields[1].fields">
  58. <formly-form model="vm.model " fields="vm.fields[1].fields" form="vm.form" options="vm.options ">
  59. </formly-form>
  60. </div>
  61. <div class="panel col-xs-12 col-0 bg-lightgrey margin-top-15" ng-if="vm.fields[2].fields">
  62. <formly-form model="vm.model " fields="vm.fields[2].fields " form="vm.form" options="vm.options ">
  63. </formly-form>
  64. </div>
  65. <div class="panel col-xs-12 col-0 bg-lightgrey margin-top-15" ng-if="vm.fields[3].fields">
  66. <formly-form model="vm.model " fields="vm.fields[3].fields " form="vm.form" options="vm.options ">
  67. </formly-form>
  68. </div>
  69. <div class="col-xs-12 margin-top-30 margin-bottom-30 text-center">
  70. <button type="submit" ladda="ldloading.sm" class="btn btn-addbutton addbutton"
  71. translate="form.button.SUBMIT" ng-if="vm.model.showSub=='true'">Submit</button>
  72. <button type="close" class="btn btn-removebutton removebutton" ng-click="closeModel()"
  73. translate="form.button.CLOSE">CLOSE </button>
  74. </div>
  75. </form>
  76. </div>