| 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/WorkOrder/Search.css" rel="stylesheet">
- <link href="../css/init.css" rel="stylesheet" />
- <title>工单回访</title>
- </head>
- <body>
- <div class="shade_content workOrderEnd">
- <div class="dgxx_table size-13">
- <table id="deal_table" class="_table1 table table-bordered table-hover " border="0" cellspacing="0" cellpadding="0" style="width: 100%;">
-
-
-
-
- <tr>
- <th>回访内容:</th>
- <td colspan="3">
- <div>
- <textarea id="cont" class="form-control" name="" rows="3" style="width:100%; resize: none;"></textarea>
- </div>
- </td>
- </tr>
-
- </table>
- </div>
- <div class="clearfix wh_btn">
- <input type="button" value="确定" class="btn btn-primary btn-sm" id="clgd" />
- </div>
- </div>
- <script src="../js/autosize/autosize.js"></script>
- <!-- <script src="../js/WorkOrder/WorkOrderEnd.js"></script> -->
- <!-- <script>
- $(document).ready(function() {
- autosize($('textarea'));
- var ID = helper.request.queryString("oid"); //工单ID
-
-
- //点击确定
- $("#clgd").click(function() {
-
- dealWorkOrder(ID);
- });
-
- })
-
-
-
-
-
- //处理
- function dealWorkOrder(oid) {
-
- $.post(huayi.config.callcenter_url + 'WorkOrder/RBakWorkOrder', {
- orderid: oid, //否 strubg 工单ID
- cont: $("#cont").val(), //否 处理内容
- token: $.cookie("token")
- }, function(result) {
- result = $.parseJSON(result);
- var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
- parent.layer.close(index); //再执行关闭
- parent.$('#workorderlist').bootstrapTable('refresh');
- parent.$('.Closed').trigger('click');
- parent.layer.msg("工单处理成功!");
-
- top.workcount();
- }
- })
- }
- </script> -->
- </body>
- </html>
|