| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!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>监督监察编号:</th>
- <td>
- <input type="text" id="Code" class="form-control" />
- </td>
- </tr>
- <tr>
- <th>标题:</th>
- <td>
- <input type="text" id="Title" class="form-control" />
- </td>
- </tr>
- <tr>
- <th>等级:</th>
- <td>
- <input type="text" id="Level" class="form-control" />
- </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/jcsupervise_send", {
- workorderid: wid,
- Code: $("#Code").val(), // 监察督查编号
- Title: $("#Title").val(), // B标题
- Level: $("#Level").val(), // 等级
- token: $.cookie("token"),
- },
- function (result) {
- result = JSON.parse(result);
- var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
- parent.layer.close(index); //再执行关闭
- parent.$("#orderlist").bootstrapTable("refresh");
- parent.layer.msg("操作成功");
- }
- );
- }
- </script>
- </body>
- </html>
|