privilege.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <div id="component" class="row">
  2. <vc:create name="privilegeGroup"></vc:create>
  3. <div class="col-lg-9 animated fadeInRight">
  4. <div class="mail-box-header">
  5. <button class="btn btn-primary btn-sm float-right" data-toggle="tooltip" title="Refresh inbox"><i class="fa fa-plus"></i> 添加权限</button>
  6. <form method="get" action="index.html" class="float-right mail-search" style="margin-right:10px">
  7. <div class="input-group">
  8. <input type="text" class="form-control form-control-sm" name="search" placeholder="请输入权限名称">
  9. <div class="input-group-btn">
  10. <button type="submit" class="btn btn-sm btn-primary">
  11. 查询
  12. </button>
  13. </div>
  14. </div>
  15. </form>
  16. <h2>
  17. {{privilegeInfo._currentPgName}}
  18. </h2>
  19. </div>
  20. <div class="mail-box">
  21. <table class="table table-hover table-mail">
  22. <thead>
  23. <tr>
  24. <th>权限编码</th>
  25. <th>权限名称</th>
  26. <th>权限描述</th>
  27. <th>创建时间</th>
  28. <th>操作</th>
  29. </tr>
  30. </thead>
  31. <tbody>
  32. <tr v-for="privilege in privilegeInfo._privileges" class="read">
  33. <td class="check-mail">
  34. {{privilege.pId}}
  35. </td>
  36. <td class="mail-ontact">{{privilege.name}}</td>
  37. <td class="mail-subject">{{privilege.description}}</td>
  38. <td class="">{{vc.dateFormat(privilege.createTime)}}</td>
  39. <td class="text-right mail-date"><i class="glyphicon glyphicon-remove"></i></td>
  40. </tr>
  41. </tbody>
  42. </table>
  43. </div>
  44. </div>
  45. </div>