1
0

hlist.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <div class="row">
  2. <div class="col-md-12">
  3. <div class="tile">
  4. <div class="tile-body">
  5. <table class="table table-hover table-bordered" id="sampleTable">
  6. <thead>
  7. <tr>
  8. <th>客户端key</th>
  9. <th>host</th>
  10. <th>内网目标</th>
  11. <th>操作</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. </tbody>
  16. </table>
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. </main>
  22. <script type="text/javascript">
  23. function del(host) {
  24. if (confirm("确定要删除数据吗?")) {
  25. $.ajax({
  26. type: "POST",
  27. url: "/index/delhost",
  28. data: {"host": host},
  29. success: function (res) {
  30. alert(res.msg)
  31. if (res.status) {
  32. document.location.reload();
  33. }
  34. }
  35. })
  36. }
  37. }
  38. function add() {
  39. window.location.href = "/index/addhost?vkey={{.vkey}}"
  40. }
  41. function edit(host) {
  42. window.location.href = "/index/edithost?host=" + host
  43. }
  44. $(document).ready(function () {
  45. var table = $('#sampleTable').DataTable({
  46. dom: 'Bfrtip',
  47. processing: true,
  48. serverSide: true,
  49. autoWidth: false,
  50. ordering: false,
  51. ajax: {
  52. url: window.location,
  53. type: 'POST'
  54. },
  55. dom: '<"top"fl><"toolbar">rt<"bottom"ip><"clear">',
  56. columns: [ //这个是显示到界面上的个数据 格式为 {data:'显示的字段名'}
  57. {data: 'Vkey'},
  58. {data: 'Host'},
  59. {data: 'Target'},
  60. {data: 'Target'},
  61. ],
  62. bFilter: false,
  63. columnDefs: [{
  64. targets: -1,
  65. render: function (data, type, row, meta) {
  66. return '<div class="btn-group" role="group" aria-label="..."> ' +
  67. '<button onclick="del(\'' + row.Host + '\')" type="button" class="btn btn-danger btn-sm">删除</button>' +
  68. '<button onclick="edit(\'' + row.Host + '\')" type="button" class="btn btn-primary btn-sm">编辑查看</button> '
  69. + ' </div>'
  70. }
  71. }
  72. ],
  73. buttons: []
  74. });
  75. $("#sampleTable_length").html('<button class="btn btn-primary" onclick="add()" type="button">新增</button>')
  76. })
  77. ;
  78. </script>