| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!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="../js/bootstrap-select/css/bootstrap-select.css" rel="stylesheet" />-->
- <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <link rel="stylesheet" href="../css/notification/css/notifucation.css" />
- <link rel="stylesheet" href="../css/notification/css/addNotifucation.css">
- <title></title>
- <style type="text/css">
- ul li{
- list-style: none;
- }
- </style>
- </head>
- <body>
- <div class="container" style="margin-left: 15px;">
- <div class="tab_contents" id="tab_user_contents">
- <ul class="project_items form-horizontal showtabs">
- <li class="form-group">
- <label for="customer_layer" class="col-md-2" style="float: left;">审核申诉:</label>
- <div class="col-md-9" style="width: 75%; float: left; padding: 0;">
- <select name="" class="form-control" id="dealWithappeal">
- <option value="0">是否审核申诉</option>
- <option value="1">是</option>
- <option value="2">否</option>
- </select>
- </div>
- </li>
- </ul>
- <div class="form-group clearfix" style="text-align: center;">
- <div class="col-md-offset-5 col-md-10">
- <button class="project_save btn btn-primary" id="save_btns" type="submit">保存</button>
- </div>
- </div>
- </div>
- </div>
- <input type="hidden" id="PID" />
- <input type="hidden" id="Dpment" />
- <script type="text/javascript">
- $(function(){
- var id = helper.request.queryString("ids");
- $('#save_btns').click(function() {
- $.post(huayi.config.callcenter_url + 'Appeal/DealAppeal', {
- nid:id,
- state: $("#dealWithappeal").val(),
- "token": $.cookie("token"),
- }, function(result) {
- result = $.parseJSON(result);
- if(result.state.toLowerCase() == "success") {
- var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
- parent.layer.close(index); //再执行关闭
- parent.layer.msg("处理成功!");
- parent.$('#table1').bootstrapTable('refresh');
- }
- })
- })
- })
- </script>
- </body>
- </html>
|