12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!DOCTYPE HTML>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="X-UA-Compatible" content="chrome=1">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>7x24呼叫中心</title>
- <script type="text/javascript" src="./javascripts/jquery-1.7.2.min.js"></script>
- <script type="text/javascript" src="./javascripts/jquery.json.min.js"></script>
- <script type="text/javascript" src="./javascripts/bootstrap-datetimepicker.min.js"></script>
- <script type="text/javascript" src="./javascripts/bootstrap.min.js"></script>
- <script type="text/javascript" src="./javascripts/global.js"></script>
- <script type="text/javascript" src="./javascripts/app.js"></script>
- <script type="text/javascript" src="./javascripts/softphonebar.js"></script>
- <script type="text/javascript" src="./javascripts/phone.js"></script>
- <script type="text/javascript" src="./javascripts/utils.js"></script>
- <script type="text/javascript" src="./javascripts/cnToSpell.js"></script>
- </head>
- <body style="margin: 0;">
- <div id="softphone-bar" class="base_style">
- <div id="phone_bar">
- <div class="input-append">
- <input id="dialout_input" class="span2" type="text" style="display: none;font-size: 15px;width: 120px;height: 20px;padding: 0px 6px 0px 5px;" onkeydown="if(event.keyCode==13){holly.softphonebar.softphonebar_dialout($('#dialout_input').val());}">
- <button id="DialEnable" class="btn btn-primary" type="button" onclick="holly.softphonebar.softphonebar_dialout($('#dialout_input').val());" style="display:none">
- 呼叫
- </button>
- </div>
- <div class="btn-group">
- <button id="HoldEnable" type="button" class="btn btn-primary" style="display:none;" onclick="holly.phone.phone_hold();">
- <i class="icon-pause icon-white"></i>保持
- </button>
- <button id="HoldGetEnable" type="button" class="btn btn-primary" onclick="holly.phone.phone_unhold();" style="display:none;" >
- <i class="icon-play icon-white"></i>恢复
- </button>
- <button id="TransferEnable" type="button" class="btn btn-primary" style="display:none" onclick="holly.phone.phone_openTransferOrConsult('softphone_transfer');">
- <i class="icon-arrow-right icon-white"></i>转接
- </button>
- <!--<button id="TransferEnable" type="button" class="btn btn-primary" style="display:none" onclick="holly.phone.phone_transfer('34000212','skillgroup');">-->
- <!--<i class="icon-arrow-right icon-white"></i>转接-->
- <!--</button>-->
- <button id="ConsultTransferEnable" type="button" class="btn btn-primary" style="display:none" onclick="holly.phone.phone_transfer('9123456', 'number');">
- <i class="icon-arrow-right icon-white"></i>转接
- </button>
- <button id="ConsultEnable" type="button" class="btn btn-primary" style="display:none" onclick="holly.phone.phone_openTransferOrConsult('softphone_consult');">
- <i class="icon-random icon-white"></i>咨询
- </button>
- <button id="InvestigateEnable" type="button" class="btn btn-primary" style="display:none" onclick="holly.phone.phone_investigate();">
- <i class="icon-share icon-white"></i>转调查
- </button>
- <button id="ThreeWayCallEnable" class="btn btn-primary" style="display:none">
- <i class="icon-plus icon-white"></i>三方
- </button>
- <button id="ConsultThreeWayCallEnable" type="button" class="btn btn-primary" style="display: none" onclick="holly.phone.phone_threewaycall('9123456');">
- <i class="icon-plus icon-white"></i>三方
- </button>
- <button id="StopConsultEnable" type="button" class="btn btn-danger" style="display:none" onclick="holly.phone.phone_stopConsult();">
- <i class="icon-random icon-white"></i>结束咨询
- </button>
- <button id="HangupEnable" type="button" class="btn btn-danger" onclick="holly.softphonebar.softphonebar_hangup();"
- style="display:none;">
- <i class="icon-arrow-down icon-white"></i>挂机
- </button>
- </div>
- </div>
- <div class="state_group">
- <div id="softphone_timer" class="fr state_time">00:00:00</div>
- <img class="fr state_line" src="./img/line.png" />
- <div id="softphone_dropdown" class="fr state_dropdown"><b id="softphone_dropdown_caret" class="caret"></b></div>
- <div id="softphone_phonestate" class="fr state">失效</div>
- </div>
- <div class="input-append" >
- <button id="softphoneBarKick" type="button" class="btn btn-primary" style="display:none;">
- 签出
- </button>
- <button id="softphoneBarPick" type="button" class="btn btn-primary" style="display:none;">
- 签入
- </button>
- </div>
- <div id="softphone_otherstate" class="customer_db"></div>
- <div id ="softphone-bar-bgdiv" class="softphone-transfer-bg-div"></div>
- <div id="softphone_consult" class="softphone-transfer-div"></div>
- <div id="softphone_transfer" class="softphone-transfer-div"></div>
- <div id="icc_event"></div>
- </div>
- <script type="text/javascript">
- /*登录*/
- function login(agentId,extNo){
- hollyglobal.agentId=agentId;
- hollyglobal.extNo=extNo;
- holly.app._initSoftbarPhone();
- }
- </script>
- </body>
- </html>
|