| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link href="../css/layer/need/layer.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <title>省平台申请延时</title>
- <style>
- .input {
- background-color: #fff;
- background-image: none;
- border: 1px solid #ccc;
- border-radius: 1px;
- color: inherit;
- padding: 6px 12px;
- }
- </style>
- </head>
- <body>
- <div class="Common">
- <table>
- <tr>
- <th class="Importent">是否满意:</th>
- <td id="issatisfie" style="font-size: 12px">
- <label style="margin-right: 10px">
- <input type="radio" value="1" name="issatisfie" style="vertical-align: -2px" />是
- </label>
- <label>
- <input type="radio" value="0" name="issatisfie" style="vertical-align: -2px" />否
- </label>
- </td>
- </tr>
- <tr>
- <th>反馈结果:</th>
- <td colspan="5">
- <textarea data-adaptheight id="result" maxlength="1000" name="" rows="4" cols=""></textarea>
- </td>
- </tr>
- <tr>
- <th>结案意见:</th>
- <td colspan="5">
- <textarea data-adaptheight id="finalopinion" maxlength="1000" name="" rows="4" cols=""></textarea>
- </td>
- </tr>
- </table>
- <div class="btn_box">
- <button class="btns Submit">提交</button>
- </div>
- </div>
- <script src="../js/adjustHeight.js"></script>
- <script>
- var wid = helper.request.queryString("wid");
- $(document).ready(function () {
- $(".Submit").click(function () {
- JA();
- });
- });
- //交办
- function JA() {
- $.post(
- huayi.config.callcenter_url + "Affairs/ForceFinishWorkOrder", {
- workorderid: wid,
- result: $("#result").val(), // 反馈结果
- finalopinion: $("#finalopinion").val(), // 结案意见
- issatisfie: $('#issatisfie input[name="issatisfie"]:checked').val(), // 是否满意
- token: $.cookie("token"),
- },
- function (result) {
- result = JSON.parse(result);
- if (result.state.toLowerCase() == "success") {
- var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
- parent.layer.close(index); //再执行关闭
- parent.$("#orderlist").bootstrapTable("refresh");
- parent.layer.msg("操作成功");
- }
- }
- );
- }
- </script>
- </body>
- </html>
|