indexlook.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. </style>
  28. <div ng-controller="CustomformDetailCtrl">
  29. <tabset class="tabbable">
  30. <tab heading="审核">
  31. <form ng-submit="vm.submit(vm.model,'sm')">
  32. <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form" ng-if="vm.fields.length" form>
  33. <div class="col-xs-12 margin-top-30 margin-bottom-30">
  34. <button type="close" class="col-md-offset-10 btn btn-primary" ng-click="closeModel()" translate="form.button.CLOSE">CLOSE</button>
  35. </div>
  36. </formly-form>
  37. </form>
  38. </tab>
  39. <tab heading="详情">
  40. <form ng-submit="vm.submit(vm.model,'sm')">
  41. <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form" ng-if="vm.fields.length" form>
  42. <div class="col-xs-12 margin-top-30 margin-bottom-30">
  43. </div>
  44. </formly-form>
  45. </form>
  46. </tab>
  47. </tabset>
  48. </div>