edit.html 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. <select class="form-control" name="type" id="type">
  11. <option {{if eq "tunnelServer" .t.Mode}}selected{{end}} value="tunnelServer">tcp隧道</option>
  12. <option {{if eq "udpServer" .t.Mode}}selected{{end}} value="udpServer">udp隧道</option>
  13. <option {{if eq "socks5Server" .t.Mode}}selected{{end}} value="socks5Server">socks5代理</option>
  14. <option {{if eq "httpProxyServer" .t.Mode}}selected{{end}} value="httpProxyServer">http代理
  15. <option {{if eq "hostServer" .t.Mode}}selected{{end}} value="hostServer">host客户端</option>
  16. </select>
  17. </div>
  18. <div class="form-group" id="port">
  19. <label class="control-label">监听的端口</label>
  20. <input class="form-control" value="{{.t.TcpPort}}" type="text" name="port"
  21. placeholder="公网服务器对外访问端口,例如8024">
  22. </div>
  23. <div class="form-group" id="target">
  24. <label class="control-label">内网目标(仅tcp、udp隧道模式需填写)</label>
  25. <input class="form-control" value="{{.t.Target}}" type="text" name="target"
  26. placeholder="内网隧道目标,例如10.1.50.203:22">
  27. </div>
  28. <div class="form-group" id="compress">
  29. <label class="control-label">数据压缩方式(所有模式均支持)</label>
  30. <select class="form-control" name="compress">
  31. <option {{if eq "" .t.Compress}}selected{{end}} value="">不压缩</option>
  32. <option {{if eq "snappy" .t.Compress}}selected{{end}} value="snappy">snappy压缩</option>
  33. </select>
  34. </div>
  35. <div class="form-group" id="compress">
  36. <label class="control-label">是否加密传输(所有模式均支持)</label>
  37. <select class="form-control" name="crypt">
  38. <option {{if eq false .t.Crypt}}selected{{end}} value="0">不加密</option>
  39. <option {{if eq true .t.Crypt}}selected{{end}} value="1">加密</option>
  40. </select>
  41. </div>
  42. <div class="form-group" id="compress">
  43. <label class="control-label">是否启用TCP复用(所有模式均支持)</label>
  44. <select class="form-control" name="mux">
  45. <option {{if eq false .t.Mux}}selected{{end}} value="0">不启用</option>
  46. <option {{if eq true .t.Mux}}selected{{end}} value="1">启用</option>
  47. </select>
  48. </div>
  49. <div class="form-group" id="u">
  50. <label class="control-label">验证用户名(仅socks5,web穿透支持)</label>
  51. <input class="form-control" value="{{.t.U}}" type="text" name="u"
  52. placeholder="不填则无需验证">
  53. </div>
  54. <div class="form-group" id="p">
  55. <label class="control-label">验证密码(仅socks5,web穿透支持)</label>
  56. <input class="form-control" value="{{.t.P}}" type="text" name="p"
  57. placeholder="不填则无需验证">
  58. </div>
  59. </form>
  60. </div>
  61. <div class="tile-footer">
  62. &nbsp;&nbsp;<button class="btn btn-success" href="#" id="add"><i
  63. class="fa fa-fw fa-lg fa-eye"></i>保存
  64. </button>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. </main>
  70. <script>
  71. var arr = []
  72. arr["all"] = ["type", "port", "compress", "u", "p", "target"]
  73. arr["tunnelServer"] = ["type", "port", "target", "u", "p", "compress"]
  74. arr["udpServer"] = ["type", "port", "target", "compress"]
  75. arr["socks5Server"] = ["type", "port", "compress", "u", "p"]
  76. arr["httpProxyServer"] = ["type", "port", "compress", "u", "p"]
  77. arr["hostServer"] = ["type", "compress", "u", "p"]
  78. function resetForm() {
  79. for (var i = 0; i < arr["all"].length; i++) {
  80. $("#" + arr["all"][i]).css("display", "none")
  81. }
  82. o = $("#type option:selected").val()
  83. for (var i = 0; i < arr[o].length; i++) {
  84. $("#" + arr[o][i]).css("display", "block")
  85. }
  86. }
  87. $(function () {
  88. resetForm()
  89. $("#type").on("change", function () {
  90. resetForm()
  91. })
  92. $("#add").on("click", function () {
  93. $.ajax({
  94. type: "POST",
  95. url: "/index/edit",
  96. data: $("form").serializeArray(),
  97. success: function (res) {
  98. alert(res.msg)
  99. if (res.status) {
  100. history.back(-1)
  101. }
  102. }
  103. })
  104. })
  105. })
  106. </script>