indexlook.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <style>
  2. .tree-control .tree-input{min-height: 34px!important;padding-top: 5px;}
  3. .tree-control .tree-view .item-container:hover,
  4. .tree-control .tree-view .selected,
  5. .tree-control .tree-view .active{
  6. background-color: #428bca;
  7. background-image: linear-gradient(#428bca,#428bca)!important;
  8. background: #428bca;
  9. color: #fff;
  10. }
  11. .tree-control .tree-view .item-container:hover .expand,
  12. .tree-control .tree-view .selected .expand,
  13. .tree-control .tree-view .active .expand{
  14. border-left: 10px solid #fff;
  15. }
  16. .tree-control .tree-view .item-container:hover .expand-opened,
  17. .tree-control .tree-view .selected .expand-opened,
  18. .tree-control .tree-view .active .expand-opened{
  19. border-bottom: 0px solid transparent;
  20. border-left: 6px solid transparent;
  21. border-right: 6px solid transparent;
  22. border-top: 10px solid #fff;
  23. }
  24. </style>
  25. <div ng-controller="CustomformDetailCtrl">
  26. <tabset class="tabbable">
  27. <tab heading="审核" >
  28. <form ng-submit="vm.submit(vm.model,'sm')" >
  29. <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form" ng-if="vm.fields.length" form>
  30. <div class="col-xs-12 margin-top-30 margin-bottom-30">
  31. <button type="close" class="col-md-offset-10 btn btn-primary" ng-click="closeModel()" translate="form.button.CLOSE" >CLOSE</button>
  32. </div>
  33. </formly-form>
  34. </form>
  35. </tab>
  36. <tab heading="详情" >
  37. <form ng-submit="vm.submit(vm.model,'sm')" >
  38. <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form" ng-if="vm.fields.length" form>
  39. <div class="col-xs-12 margin-top-30 margin-bottom-30">
  40. </div>
  41. </formly-form>
  42. </form>
  43. </tab>
  44. </tabset>
  45. </div>