Просмотр исходного кода

来电弹屏,地图样式修改,通话记录添加是否回访

miaofuhao лет назад: 6
Родитель
Сommit
74df02bea6

+ 20 - 4
WebUI/CallCenterWeb.UI/TelCall/CallRecord.html

@@ -25,6 +25,9 @@
25 25
         .fr {
26 26
             float: right;
27 27
         }
28
+        .fl {
29
+            float: left;
30
+        }
28 31
         /*标头*/
29 32
 
30 33
         .th-box {
@@ -34,7 +37,7 @@
34 37
         }
35 38
 
36 39
         .th-bar {
37
-            height: 40px;
40
+            height: 80px;
38 41
         }
39 42
 
40 43
         .sc_btn {
@@ -50,6 +53,7 @@
50 53
             border-color: initial;
51 54
             border-image: initial;
52 55
             border-radius: 3px;
56
+            margin-top: 5px;
53 57
         }
54 58
 
55 59
         .seach-box ul {
@@ -57,7 +61,7 @@
57 61
         }
58 62
 
59 63
             .seach-box ul li {
60
-                margin-right: 5px;
64
+                margin-right: 50px;
61 65
             }
62 66
 
63 67
         .photo {
@@ -149,7 +153,7 @@
149 153
         <div class="th-box">
150 154
             <div class="th-bar">
151 155
                 <!--<a class="sc_btn btn-info" id="moves">批量删除</a>-->
152
-                <div class="seach-box fr">
156
+                <div class="seach-box fl">
153 157
                     <ul>
154 158
                         <li>时间:<input id="start" class="photo x-color laydate-icon" type="text" />-<input id="end" class="photo x-color laydate-icon" type="text" /></li>
155 159
                         <li>电话号码:<input id="tel" class="photo x-color" type="text" /></li>
@@ -169,8 +173,9 @@
169 173
                                 <option value="">全部</option>
170 174
                             </select>
171 175
                         </li>
176
+                       
172 177
                         <li>
173
-                            呼出方向:
178
+                            		呼出方向:
174 179
                             <select id="ss_hcfx" class=" selects calltype">
175 180
                                 <option value="">全部</option>
176 181
                                 <option value="0">呼入</option>
@@ -186,6 +191,14 @@
186 191
                                 <option value="3">三方通话</option>
187 192
                             </select>
188 193
                         </li>
194
+                         <li>
195
+                           是否回访:
196
+                            <select id="sf_hf" class=" selects calltype">
197
+                                <option value="">全部</option>
198
+                                <option value="2">是</option>
199
+                                <option value="0">否</option>
200
+                            </select>
201
+                        </li>
189 202
                         <li>
190 203
                             坐席:
191 204
                             <select style="width: 100px;" class="x-color select usercode" id="seat">
@@ -392,6 +405,8 @@
392 405
                         param.calltype = $("#ss_hcfx").val();
393 406
                         param.type = $("#callType").val();//type=通话类型
394 407
                         param.actiontype = $("#ss_HJLX").val();//呼叫类型
408
+                        param.tasktype = $("#sf_hf").val();//呼叫类型
409
+                        
395 410
                     } else if (stype == '2') {
396 411
                         param.usercode = $("#ss_seat").val();
397 412
                         param.tel = $("#ss_tel").val();
@@ -401,6 +416,7 @@
401 416
                         param.endtime = $("#ss_jssj").val();
402 417
                         param.type = $("#callType").val();//type=通话类型
403 418
                         param.actiontype = $("#ss_HJLX").val();//呼叫类型
419
+                        param.tasktype = $("#sf_hf").val();//呼叫类型
404 420
                     }
405 421
                     return param;
406 422
                 },

+ 2 - 1
WebUI/CallCenterWeb.UI/js/appeal/mapIndex.js

@@ -126,11 +126,12 @@ window.onload = function() {
126 126
 	}
127 127
 
128 128
 	var baiduParam = {
129
+		
129 130
 		oldPoint: null //记录旧值,用于地图拖拽失败后回到原来位置
130 131
 			,
131 132
 		Exceed_Error: "定位地址失败,您搜索或定位超出县级范围,请重新选择定位",
132 133
 		SelectRegion_Error: "定位地址失败,您搜索或定位超出县级范围,请先选择省市区",
133
-		Location_Div: "<div id='descConten'>已将坐标定位为<hr/>{address}<br/><small style='color: #858585;line-height: 24px;'>地址:{title}</small><br/><br/><input type='button' value='确定' id='saveLngLat' style=' background: rgb(135,205,208); border: none;color: white;height: 30px;width: 60px;border-radius: 4px;' ></div> ",
134
+		Location_Div: "<div id='descConten'>已将坐标定位为<hr/>{address}<br/><small style='color: #858585;line-height: 24px;'>地址:{title}</small><br/><br/><input type='button' value='确定' id='saveLngLat' style=' background: rgb(135,205,208); border: none;color: white;height: 30px;width: 60px;border-radius: 4px; display: none;' ></div> ",
134 135
 		Location_Sure_Div: "<img style='width:20px;top: 5px;position: relative;'  src='img/success.png' />已将坐标定位为<hr/>{address}<br/><small style='color: #858585;line-height: 24px;'>地址:{title}</small><br/><br/>"
135 136
 	}
136 137