Bez popisu

jcsuperviseSend.html 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <script src="../Script/Common/huayi.load.js"></script>
  6. <script src="../Script/Common/huayi.config.js"></script>
  7. <link href="../css/layer/need/layer.css" />
  8. <link rel="stylesheet" href="../css/init.css" />
  9. <title>监察督办反馈</title>
  10. <style>
  11. .input {
  12. background-color: #fff;
  13. background-image: none;
  14. border: 1px solid #ccc;
  15. border-radius: 1px;
  16. color: inherit;
  17. padding: 6px 12px;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="Common">
  23. <table>
  24. <tr>
  25. <th>监督监察编号:</th>
  26. <td>
  27. <input type="text" id="Code" class="form-control" />
  28. </td>
  29. </tr>
  30. <tr>
  31. <th>标题:</th>
  32. <td>
  33. <input type="text" id="Title" class="form-control" />
  34. </td>
  35. </tr>
  36. <tr>
  37. <th>等级:</th>
  38. <td>
  39. <input type="text" id="Level" class="form-control" />
  40. </td>
  41. </tr>
  42. </table>
  43. <div class="btn_box">
  44. <button class="btns Submit">提交</button>
  45. </div>
  46. </div>
  47. <script src="../js/adjustHeight.js"></script>
  48. <script>
  49. var wid = helper.request.queryString("wid");
  50. $(document).ready(function () {
  51. $(".Submit").click(function () {
  52. JA();
  53. });
  54. });
  55. // 反馈
  56. function JA() {
  57. $.post(
  58. huayi.config.callcenter_url + "Affairs/jcsupervise_send", {
  59. workorderid: wid,
  60. Code: $("#Code").val(), // 监察督查编号
  61. Title: $("#Title").val(), // B标题
  62. Level: $("#Level").val(), // 等级
  63. token: $.cookie("token"),
  64. },
  65. function (result) {
  66. result = JSON.parse(result);
  67. var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  68. parent.layer.close(index); //再执行关闭
  69. parent.$("#orderlist").bootstrapTable("refresh");
  70. parent.layer.msg("操作成功");
  71. }
  72. );
  73. }
  74. </script>
  75. </body>
  76. </html>