hedit.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <div class="row tile">
  2. <div class="col-md-6 col-md-auto">
  3. <div>
  4. <h3 class="tile-title">修改</h3>
  5. <div class="tile-body">
  6. <form>
  7. <input type="hidden" name="vkey" value="{{.t.VerifyKey}}">
  8. <div class="form-group">
  9. <label class="control-label">域名</label>
  10. <input class="form-control" value="{{.h.Host}}" type="hidden" name="host" placeholder="域名">
  11. <input class="form-control" value="{{.h.Host}}" type="text" name="nhost" placeholder="域名">
  12. </div>
  13. <div class="form-group">
  14. <label class="control-label">内网目标</label>
  15. <input class="form-control" value="{{.h.Target}}" type="text" name="target"
  16. placeholder="内网隧道目标,例如10.1.50.203:22">
  17. </div>
  18. <div class="form-group" id="header">
  19. <label class="control-label">header头修改(冒号分隔,多个请换行填写)</label>
  20. <textarea class="form-control" rows="4" type="text" name="header"
  21. placeholder="Cache-Control: no-cache">{{.h.HeaderChange}}</textarea>
  22. </div>
  23. <div class="form-group" id="hostchange">
  24. <label class="control-label">host修改</label>
  25. <input class="form-control" value="{{.h.HostChange}}" type="text" name="hostchange"
  26. placeholder="host修改">
  27. </div>
  28. </form>
  29. </div>
  30. <div class="tile-footer">
  31. &nbsp;&nbsp;<button class="btn btn-success" href="#" id="add"><i
  32. class="fa fa-fw fa-lg fa-eye"></i>保存
  33. </button>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. </main>
  39. <script>
  40. $(function () {
  41. $("#add").on("click", function () {
  42. $.ajax({
  43. type: "POST",
  44. url: "/index/edithost",
  45. data: $("form").serializeArray(),
  46. success: function (res) {
  47. alert(res.msg)
  48. if (res.status) {
  49. history.back(-1)
  50. }
  51. }
  52. })
  53. })
  54. })
  55. </script>