Bez popisu

provincialPlatformFeedback.html 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 class="Importent">是否满意:</th>
  26. <td id="issatisfie" style="font-size: 12px">
  27. <label style="margin-right: 10px">
  28. <input type="radio" value="1" name="issatisfie" style="vertical-align: -2px" />是
  29. </label>
  30. <label>
  31. <input type="radio" value="0" name="issatisfie" style="vertical-align: -2px" />否
  32. </label>
  33. </td>
  34. </tr>
  35. <tr>
  36. <th>反馈结果:</th>
  37. <td colspan="5">
  38. <textarea data-adaptheight id="result" maxlength="1000" name="" rows="4" cols=""></textarea>
  39. </td>
  40. </tr>
  41. <tr>
  42. <th>结案意见:</th>
  43. <td colspan="5">
  44. <textarea data-adaptheight id="finalopinion" maxlength="1000" name="" rows="4" cols=""></textarea>
  45. </td>
  46. </tr>
  47. </table>
  48. <div class="btn_box">
  49. <button class="btns Submit">提交</button>
  50. </div>
  51. </div>
  52. <script src="../js/adjustHeight.js"></script>
  53. <script>
  54. var wid = helper.request.queryString("wid");
  55. $(document).ready(function () {
  56. $(".Submit").click(function () {
  57. JA();
  58. });
  59. });
  60. //交办
  61. function JA() {
  62. $.post(
  63. huayi.config.callcenter_url + "Affairs/ForceFinishWorkOrder", {
  64. workorderid: wid,
  65. result: $("#result").val(), // 反馈结果
  66. finalopinion: $("#finalopinion").val(), // 结案意见
  67. issatisfie: $('#issatisfie input[name="issatisfie"]:checked').val(), // 是否满意
  68. token: $.cookie("token"),
  69. },
  70. function (result) {
  71. result = JSON.parse(result);
  72. if (result.state.toLowerCase() == "success") {
  73. var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  74. parent.layer.close(index); //再执行关闭
  75. parent.$("#orderlist").bootstrapTable("refresh");
  76. parent.layer.msg("操作成功");
  77. }
  78. }
  79. );
  80. }
  81. </script>
  82. </body>
  83. </html>