seninel部署
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
3.8KB

  1. <div class="row" style="margin-left: 1px; margin-top:10px; height: 50px;">
  2. <div class="col-md-6" style="margin-bottom: 10px;">
  3. <span style="font-size: 30px;font-weight: bold;">{{app}}</span>
  4. </div>
  5. <div class="col-md-6">
  6. <button class="btn btn-outline-primary" style="float: right; margin-right: 10px;" ng-disabled="!macInputModel" ng-click="addNewApi()">
  7. <i class="fa fa-plus"></i>&nbsp;&nbsp;新增 API 分组</button>
  8. </div>
  9. </div>
  10. <div class="separator"></div>
  11. <div class="container-fluid">
  12. <div class="row" style="margin-top: 20px; margin-bottom: 20px;">
  13. <div class="col-md-12">
  14. <div class="card">
  15. <div class="inputs-header">
  16. <span class="brand" style="font-size: 13px;">API 分组管理</span>
  17. <button class="btn btn-primary" style="float: right; margin-right: 10px; height: 30px;font-size: 12px;" ng-click="getApis()">刷新</button>
  18. <input class="form-control witdh-200" placeholder="关键字" ng-model="searchKey">
  19. <div class="control-group" style="float:right;margin-right: 10px;margin-bottom: -10px;">
  20. <selectize id="gsInput" class="selectize-input-200" config="macsInputConfig" options="macsInputOptions" ng-model="macInputModel"
  21. placeholder="机器"></selectize>
  22. </div>
  23. </div>
  24. <!--.tools-header -->
  25. <div class="card-body" style="padding: 0px 0px;">
  26. <table class="table" style="border-left: none; border-right:none;margin-top: 10px;">
  27. <thead>
  28. <tr style="background: #F3F5F7;">
  29. <td>
  30. API 名称
  31. </td>
  32. <td>
  33. 匹配模式
  34. </td>
  35. <td>
  36. 匹配串
  37. </td>
  38. <td>
  39. 操作
  40. </td>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. <tr dir-paginate="api in apis | filter: searchKey | itemsPerPage: apisPageConfig.pageSize" current-page="apisPageConfig.currentPageIndex"
  45. pagination-id="entriesPagination">
  46. <td ng-if="api.firstFlag==0" rowspan="{{api.itemSize}}" style="vertical-align: middle;">{{api.apiName}}</td>
  47. <td>
  48. <span ng-if="api.matchStrategy == 0">精确</span>
  49. <span ng-if="api.matchStrategy == 1">前缀</span>
  50. <span ng-if="api.matchStrategy == 2">正则</span>
  51. </td>
  52. <td>{{api.pattern}}</td>
  53. <td ng-if="api.firstFlag==0" rowspan="{{api.itemSize}}" style="vertical-align: middle;">
  54. <button class="btn btn-xs btn-outline-primary" type="button" ng-click="editApi(api)" style="font-size: 12px; height:25px;">编辑</button>
  55. <button class="btn btn-xs btn-outline-danger" type="button" ng-click="deleteApi(api)" style="font-size: 12px; height:25px;">删除</button>
  56. </td>
  57. </tr>
  58. </tbody>
  59. </table>
  60. </div>
  61. <!-- .card-body -->
  62. <div class="pagination-footer">
  63. <dir-pagination-controls boundary-links="true" template-url="app/views/pagination.tpl.html" pagination-id="entriesPagination"
  64. on-page-change="">
  65. </dir-pagination-controls>
  66. <div class="tools" style="">
  67. <span>共 {{apisPageConfig.totalCount}} 条记录, </span>
  68. <span>
  69. 每页
  70. <input class="form-control" ng-model="apisPageConfig.pageSize"> 条记录
  71. </span>
  72. <!--<span>第 {{apisPageConfig.currentPageIndex}} / {{apisPageConfig.totalPage}} 页</span>-->
  73. </div>
  74. <!-- .tools -->
  75. </div>
  76. <!-- pagination-footer -->
  77. </div>
  78. <!-- .card -->
  79. </div>
  80. <!-- .col-md-12 -->
  81. </div>
  82. <!-- -->
  83. </div>
  84. <!-- .container-fluid -->