1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <style>
- .tree-control .tree-input{min-height: 34px!important;padding-top: 5px;}
- .tree-control .tree-view .item-container:hover,
- .tree-control .tree-view .selected,
- .tree-control .tree-view .active{
- background-color: #428bca;
- background-image: linear-gradient(#428bca,#428bca)!important;
- background: #428bca;
- color: #fff;
- }
- .tree-control .tree-view .item-container:hover .expand,
- .tree-control .tree-view .selected .expand,
- .tree-control .tree-view .active .expand{
- border-left: 10px solid #fff;
- }
- .tree-control .tree-view .item-container:hover .expand-opened,
- .tree-control .tree-view .selected .expand-opened,
- .tree-control .tree-view .active .expand-opened{
- border-bottom: 0px solid transparent;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-top: 10px solid #fff;
- }
- </style>
- <div ng-controller="CustomformDetailCtrl">
- <tabset class="tabbable">
- <tab heading="审核" >
- <form ng-submit="vm.submit(vm.model,'sm')" >
- <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form" ng-if="vm.fields.length" form>
- <div class="col-xs-12 margin-top-30 margin-bottom-30">
- <button type="close" class="col-md-offset-10 btn btn-primary" ng-click="closeModel()" translate="form.button.CLOSE" >CLOSE</button>
- </div>
- </formly-form>
- </form>
- </tab>
- <tab heading="详情" >
- <form ng-submit="vm.submit(vm.model,'sm')" >
- <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form" ng-if="vm.fields.length" form>
- <div class="col-xs-12 margin-top-30 margin-bottom-30">
- </div>
- </formly-form>
- </form>
- </tab>
- </tabset>
- </div>
|