yangkai 6 years ago
parent f94c699284
commit 3e7a68c5b6

@ -1,3 +1,8 @@
<style>
.table>tbody>tr>th, .table>tbody>tr>td {
border-top: 1px solid #ddd;
}
</style>
<div class="row margin-bottom">
<div class="col-xs-12">
<button class="btn btn-primary" ng-click="syncFunctions()">
@ -12,7 +17,7 @@
<a role="button" class="list-group-item" ng-class="{active:mod.module_name==tabModuleName}" ng-click="moduleTab(mod.module_name)" ng-repeat="mod in modFunctions.modules" ng-bind="mod.module_name+' - '+mod.remark"></a>
</div>
<div class="col-sm-9">
<table class="table table-hover">
<table class="table table-hover" style="border: 1px solid #ddd">
<tbody ng-if="'no_module'==tabModuleName">
<tr ng-repeat="func in modFunctions.no_module">
<th ng-bind="func.func_id+(func.remark?'('+func.remark+')':'')" title="{{func.remark}}"></th>

Loading…
Cancel
Save