123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <style>
- /* .tree-control .tree-input {
- min-height: 30px!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>
|