|
|
@@ -22,14 +22,28 @@
|
|
22
|
22
|
<ul class="project_items form-horizontal showtabs">
|
|
23
|
23
|
<li class="form-group">
|
|
24
|
24
|
<label for="customer_layer" class="col-md-2" style="float: left;">审核申诉:</label>
|
|
25
|
|
- <div class="col-md-9" style="width: 75%; float: left; padding: 0;">
|
|
26
|
|
- <select name="" class="form-control" id="dealWithappeal">
|
|
27
|
|
- <option value="0">是否审核申诉</option>
|
|
|
25
|
+ <div class="col-md-9" id="appealAudit" style="width: 75%; float: left; padding: 0;">
|
|
|
26
|
+ <label>
|
|
|
27
|
+ 是
|
|
|
28
|
+ <input type="radio" value="1" name="appealAuditRadio" style="vertical-align: -2px;"/>
|
|
|
29
|
+ </label>
|
|
|
30
|
+ <label style="margin-left: 10px">
|
|
|
31
|
+ 否
|
|
|
32
|
+ <input type="radio" value="2" name="appealAuditRadio" style="vertical-align: -2px;" />
|
|
|
33
|
+ </label>
|
|
|
34
|
+
|
|
|
35
|
+ <!-- <select name="" class="form-control" id="dealWithappeal">
|
|
28
|
36
|
<option value="1">是</option>
|
|
29
|
37
|
<option value="2">否</option>
|
|
30
|
|
- </select>
|
|
|
38
|
+ </select> -->
|
|
31
|
39
|
</div>
|
|
32
|
40
|
</li>
|
|
|
41
|
+ <li class="form-group">
|
|
|
42
|
+ <label for="customer_layer" class="col-md-2" style="float: left; line-height: 78px">原因:</label>
|
|
|
43
|
+ <div class="col-md-9" id="appealAudit" style="width: 75%; float: left; padding: 0;">
|
|
|
44
|
+ <textarea name="" rows="4" cols="" placeholder="" id="remark" style="width: 100%"></textarea>
|
|
|
45
|
+ </div>
|
|
|
46
|
+ </li>
|
|
33
|
47
|
</ul>
|
|
34
|
48
|
<div class="form-group clearfix" style="text-align: center;">
|
|
35
|
49
|
<div class="col-md-offset-5 col-md-10">
|
|
|
@@ -38,15 +52,14 @@
|
|
38
|
52
|
</div>
|
|
39
|
53
|
</div>
|
|
40
|
54
|
</div>
|
|
41
|
|
- <input type="hidden" id="PID" />
|
|
42
|
|
- <input type="hidden" id="Dpment" />
|
|
43
|
55
|
<script type="text/javascript">
|
|
44
|
56
|
$(function(){
|
|
45
|
57
|
var id = helper.request.queryString("ids");
|
|
46
|
58
|
$('#save_btns').click(function() {
|
|
47
|
59
|
$.post(huayi.config.callcenter_url + 'Appeal/DealAppeal', {
|
|
48
|
60
|
nid:id,
|
|
49
|
|
- state: $("#dealWithappeal").val(),
|
|
|
61
|
+ state: $("#appealAudit input[name='appealAuditRadio']:checked").val(),
|
|
|
62
|
+ reason: $("#remark").val(),
|
|
50
|
63
|
"token": $.cookie("token"),
|
|
51
|
64
|
}, function(result) {
|
|
52
|
65
|
result = $.parseJSON(result);
|