Kaynağa Gözat

县级12345回访默认满意

miaofuhao 7 yıl önce
ebeveyn
işleme
0e6f1af301
1 değiştirilmiş dosya ile 6 ekleme ve 5 silme
  1. 6 5
      WebUI/CallCenterWeb.UI/CommonHtml/Back.html

+ 6 - 5
WebUI/CallCenterWeb.UI/CommonHtml/Back.html

@@ -42,10 +42,10 @@
42 42
 			<tr>
43 43
 				<th class="Importent">回访结果:</th>
44 44
 				<td>
45
-					<select class="select_" id='issatisfie'>
46
-						<option value="0">不满意</option>
47
-						<option value="1">满意</option>
48
-					</select>
45
+					<input type="radio" name="issatisfie" value="1" checked="checked">
46
+					满意&nbsp;&nbsp;&nbsp;&nbsp;
47
+					<input type="radio" name="issatisfie" value="0"> 
48
+					不满意
49 49
 				</td>
50 50
 			</tr>
51 51
 			<tr>
@@ -91,12 +91,13 @@
91 91
 			});
92 92
 			//回访
93 93
 			function JA() {
94
+				alert($("input[name='issatisfie']:checked").val());
94 95
 				$.post(huayi.config.callcenter_url + 'WorkOrder/VisitWorkOrder', {
95 96
 					workorderid: wid,
96 97
 					visituser:$("#visituser").val(),//回访人
97 98
 					result:$("#result").val(),//回访内容
98 99
 					type:$("#type").val(),
99
-					issatisfie:$("#issatisfie").val(),
100
+					issatisfie:$("input[name='issatisfie']:checked").val(),
100 101
 					state: State,
101 102
 					visitid:a,
102 103
 					token: $.cookie("token")