Aucune description

provincialPlatformReport.html 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. .fjnr {
  20. padding: 0 !important;
  21. border: none !important;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="Common">
  27. <table>
  28. <tr>
  29. <th>推送意见:</th>
  30. <td colspan="5">
  31. <textarea data-adaptheight id="content" name="" rows="4" cols=""></textarea>
  32. </td>
  33. </tr>
  34. </table>
  35. <div class="btn_box">
  36. <button class="btns Submit">提交</button>
  37. </div>
  38. </div>
  39. <script src="../js/adjustHeight.js"></script>
  40. <script>
  41. var wid = helper.request.queryString("wid");
  42. $(document).ready(function () {
  43. $(".Submit").click(function () {
  44. JA();
  45. });
  46. });
  47. //交办
  48. function JA() {
  49. $.post(
  50. huayi.config.callcenter_url + "Affairs/PhshWorkOrder", {
  51. workorderid: wid,
  52. content: $("#content").val(), //退回原因
  53. token: $.cookie("token"),
  54. },
  55. function (result) {
  56. result = JSON.parse(result);
  57. if (result.state.toLowerCase() == "success") {
  58. var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  59. parent.layer.close(index); //再执行关闭
  60. parent.$("#orderlist").bootstrapTable("refresh");
  61. parent.layer.msg("操作成功");
  62. }
  63. }
  64. );
  65. }
  66. </script>
  67. </body>
  68. </html>