| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!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" id="appealAudit" style="width: 75%; float: left; padding: 0;">
- <label>
- 是
- <input type="radio" value="1" name="appealAuditRadio" style="vertical-align: -2px;"/>
- </label>
- <label style="margin-left: 10px">
- 否
- <input type="radio" value="2" name="appealAuditRadio" style="vertical-align: -2px;" />
- </label>
- <!-- <select name="" class="form-control" id="dealWithappeal">
- <option value="1">是</option>
- <option value="2">否</option>
- </select> -->
- </div>
- </li>
- <li class="form-group">
- <label for="customer_layer" class="col-md-2" style="float: left; line-height: 78px">原因:</label>
- <div class="col-md-9" id="appealAudit" style="width: 75%; float: left; padding: 0;">
- <textarea name="" rows="4" cols="" placeholder="" id="remark" style="width: 100%"></textarea>
- </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>
- <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: $("#appealAudit input[name='appealAuditRadio']:checked").val(),
- reason: $("#remark").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>
|