暫無描述

StrongLawsuit.html 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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 type="text/css">
  11. .isStandard,
  12. .bulletUnit {
  13. display: none;
  14. }
  15. .bulletUnit ul {
  16. list-style: none;
  17. margin: 0;
  18. padding: 0;
  19. }
  20. .bulletUnit ul li {
  21. float: left;
  22. margin-right: 20px;
  23. text-align: center;
  24. padding: 6px 0;
  25. }
  26. .bulletUnit li input {
  27. display: none;
  28. }
  29. .bulletUnit li label {
  30. margin: 0;
  31. font-weight: normal;
  32. display: block;
  33. width: 100%;
  34. border: 1px solid #ccc;
  35. padding: 2px 10px;
  36. cursor: pointer;
  37. }
  38. .bulletUnit li label:hover {
  39. /*border-color: #fe6604;*/
  40. }
  41. .bulletUnit .checkedDept {
  42. border-color: #fe6604;
  43. }
  44. select:disabled {
  45. background-color: #eee;
  46. }
  47. .reasons {
  48. display: none;
  49. height: 160px;
  50. }
  51. #reasons {
  52. height: 160px;
  53. }
  54. </style>
  55. </head>
  56. <body>
  57. <div class="Common">
  58. <table>
  59. <tr>
  60. <th class="Importent">是否向市民发送短信:</th>
  61. <td>
  62. <input checked="true" type="radio" value="0" name="issms" />否
  63. <input type="radio" value="1" name="issms" />是
  64. </td>
  65. </tr>
  66. <tr>
  67. <th class="Importent">结案意见:</th>
  68. <td><textarea name="" rows="4" cols="" id="finalopinion"></textarea></td>
  69. </tr>
  70. </table>
  71. <div class="btn_box">
  72. <button class="btns BC ">保存</button>
  73. </div>
  74. </div>
  75. <input type="hidden" name="depid" id="depID" value="" />
  76. <script src="../js/adjustHeight.js"></script>
  77. <script>
  78. var wid = helper.request.queryString("wid");
  79. var bulletinUnits = ''; //通报单位
  80. $(document).ready(function () {
  81. //保存
  82. $('.BC').click(function () {
  83. JA(bulletinUnits);
  84. });
  85. });
  86. //回退
  87. function JA(bUnits) {
  88. $.post(huayi.config.callcenter_url + 'WorkOrder/ForceFinishWorkOrder', {
  89. workorderid: wid,
  90. finalopinion: $("#finalopinion").val(),
  91. issms : $('input[name="issms"]:checked ').val(),
  92. issatisfie: 1,
  93. token: $.cookie("token")
  94. }, function (result) {
  95. result = JSON.parse(result);
  96. if (result.state.toLowerCase() == "success") {
  97. var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  98. parent.layer.close(index); //再执行关闭
  99. parent.$('#orderlist').bootstrapTable('refresh');
  100. parent.layer.msg("操作成功");
  101. }
  102. })
  103. }
  104. </script>
  105. </body>
  106. </html>