liuyifan 6 lat temu
rodzic
commit
1ceeb8a9b9
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4 4
      CallCenterWeb.UI/callScreen/call.js

+ 4 - 4
CallCenterWeb.UI/callScreen/call.js

@@ -1540,18 +1540,18 @@ function getCallRecords (workOrderId) {
1540 1540
 //方向呼出
1541 1541
 function callType(val) {
1542 1542
     if (val == 0) {
1543
-        return '<div class="imgs">呼入</div>';
1543
+        return '<div>呼入</div>';
1544 1544
     } else {
1545
-        return '<div class="imgs">呼出</div>';
1545
+        return '<div>呼出</div>';
1546 1546
     }
1547 1547
 }
1548 1548
 
1549 1549
 //呼叫状态
1550 1550
 function states(val) {
1551 1551
     if (val == 0) {
1552
-        return '<div class="imgs">未接通</div>';
1552
+        return '<div>未接通</div>';
1553 1553
     } else {
1554
-        return '<div class="imgs">已接通</div>';
1554
+        return '<div>已接通</div>';
1555 1555
     }
1556 1556
 }
1557 1557