| 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>
- </head>
- <body>
- <div class="Common">
- <table >
- <tr>
- <th>
- 重办超时时间:
- <td>
- <input type="text" id="startTime" class="laydate-icon" style="height: 32px;">
- </td>
- </th>
- </tr>
-
- <tr>
- <th class="Importent">督办意见:</th>
- <td colspan="7"><textarea data-adaptheight id="result" name="" rows="" cols=""></textarea></td>
- </tr>
- </table>
- <div class="btn_box">
- <button class="btns BC">保存</button>
- </div>
- </div>
- <script src="../js/adjustHeight.js"></script>
- <script src="../css/laydate/laydate.js"></script>
- <script>
- laydate.skin('blue');
- laydate({
- elem: '#startTime',
- event: 'focus'
- });
- var wid = helper.request.queryString("wid");
- $(document).ready(function() {
- $('.BC').click(function() {
- if($('#result').val()==""){
- layer.msg("内容不能为空");
- }else{
-
- JA();
- }
-
- })
- });
- //重办
- function JA() {
- $.post(huayi.config.callcenter_url + 'WorkOrder/ReloadWorkOrder', {
- workorderid: wid,
- newlimittime:$("#startTime").val(),
- overseeopinion:$("#result").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.load();
- parent.layer.msg("操作成功");
- }
- })
- }
- </script>
- </body>
- </html>
|