UU跑腿标准版

qcedit.aspx 47KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="qcedit.aspx.cs" Inherits="HySoft.BaseCallCenter.Web.qualitymanage.qcedit" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head id="Head1" runat="server">
  5. <title>质检评分</title>
  6. <link href="../../scripts/ui/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
  7. <link href="../images/style.css" rel="stylesheet" type="text/css" />
  8. <script type="text/javascript" src="../../scripts/jquery/jquery-1.8.3.min.js"></script>
  9. <script type="text/javascript" src="../../scripts/jquery/jquery.form.js"></script>
  10. <script type="text/javascript" src="../../scripts/jquery/jquery.validate.min.js"></script>
  11. <script type="text/javascript" src="../../scripts/jquery/messages_cn.js"></script>
  12. <script type="text/javascript" src="../../scripts/ui/js/ligerBuild.min.js"></script>
  13. <script type="text/javascript" src="../../scripts/function.js"></script>
  14. <script src="../scripts/ui/js/core/base.js" type="text/javascript"></script>
  15. <script src="../scripts/ui/js/plugins/ligerDialog.js" type="text/javascript"></script>
  16. <script src="../scripts/ui/js/plugins/ligerDrag.js" type="text/javascript"></script>
  17. <script src="../scripts/ui/js/plugins/ligerSpinner.js" type="text/javascript"></script>
  18. <script src="../scripts/ui/js/plugins/ligerTree.js" type="text/javascript"></script>
  19. <script src="../scripts/ui/js/plugins/ligerComboBox.js" type="text/javascript"></script>
  20. <link href="../scripts/ui/skins/Tab/css/tab.css" rel="stylesheet" type="text/css" />
  21. <link href="../scripts/ui/skins/Tab/css/grid.css" rel="stylesheet" type="text/css" />
  22. <script src="../scripts/ui/js/plugins/ligerGrid.js" type="text/javascript"></script>
  23. <script src="../scripts/ui/js/plugins/ligerLayout.js" type="text/javascript"></script>
  24. <script src="../scripts/ui/js/plugins/ligerTree.js" type="text/javascript"></script>
  25. <script src="../scripts/ui/js/plugins/ligerMenu.js" type="text/javascript"></script>
  26. <script type="text/javascript">
  27. $(function () {
  28. LoadReport();
  29. });
  30. function LoadReport() {
  31. $("#pageloading").show();
  32. var timeno = new Date().getTime();
  33. $.ajax({
  34. type: 'get',
  35. url: 'ajax/qcedit.ashx?action=indexlist&id=' + document.getElementById("txtId").value + "&timeno=" + timeno,
  36. dataType: 'html',
  37. success: function (res) {
  38. try {
  39. document.getElementById("divDataItems").innerHTML = res;
  40. $("#pageloading").hide();
  41. } catch (e) {
  42. document.getElementById("pageloading").innerHTML = e.message;
  43. }
  44. addlog(0);
  45. }
  46. });
  47. }
  48. function SetValue(obj, sc) {
  49. if (/[^\d]/.test(obj.value)) {
  50. document.getElementById(obj.id).value = 0;
  51. }
  52. else {
  53. try {
  54. if (parseInt(obj.value) > parseInt(sc))
  55. document.getElementById(obj.id).value = sc;
  56. }
  57. catch (e)
  58. { }
  59. }
  60. }
  61. function SetScore(categoryid, childcategoryid, indexid) {
  62. var categoryscore = 0;
  63. var allscore = 0;
  64. var arr = document.getElementsByName("txtscore");
  65. var spancategoryscore = document.getElementById("spanscore_" + categoryid);
  66. var spanallscore = document.getElementById("spanallscore");
  67. for (var i = 0; i < arr.length; i++) {
  68. var obj = arr[i];
  69. var id = obj.id.split('_')[0]+"_"+obj.id.split('_')[1];
  70. var score = obj.value;
  71. try {
  72. if (obj.id == tsid) {
  73. if (parseInt(score) > parseInt(tscore)) {
  74. alert("评分不能大于评分标准!");
  75. break;
  76. }
  77. }
  78. allscore += parseInt(score);
  79. }
  80. catch (e)
  81. { }
  82. var cid = "txtscore_" + categoryid;
  83. if (id == cid) {
  84. try {
  85. categoryscore += parseInt(score);
  86. }
  87. catch (e)
  88. { }
  89. }
  90. }
  91. spancategoryscore.innerHTML = categoryscore;
  92. spanallscore.innerHTML = allscore;
  93. }
  94. function validate() {
  95. $.ligerDialog.waitting('评分提交中...');
  96. var callrecordid = document.getElementById("txtId").value;
  97. var userid = document.getElementById("txtUserId").value;
  98. var username = escape(document.getElementById("txtUserName").value);
  99. var arr = document.getElementsByName("txtscore");
  100. var question = escape(document.getElementById("txtQuestion").value);
  101. var advise = escape(document.getElementById("txtAdvise").value);
  102. var xmlinfo = "";
  103. var count = arr.length;
  104. for (var i = 0; i < count; i++) {
  105. var obj = arr[i];
  106. var id = obj.id.split('_')[3];
  107. var score = obj.value;
  108. if (i == (count - 1)) {
  109. xmlinfo += id + ":" + score + "";
  110. }
  111. else {
  112. xmlinfo += id + ":" + score + ";";
  113. }
  114. }
  115. document.getElementById("txtXMLInfo").value = xmlinfo;
  116. var timeno = new Date().getTime();
  117. $.ajax({
  118. type: 'get',
  119. url: "ajax/qcedit.ashx?action=savedata&id=" + callrecordid + "&userid=" + userid
  120. + "&username=" + username + "&xmlinfo=" + xmlinfo + "&timeno=" + timeno
  121. + "&question=" + question + "&advise=" + advise,
  122. dataType: 'html',
  123. success: function (res) {
  124. try {
  125. var arr = res.split('|');
  126. if (arr[0] == "1") {
  127. SaveInfo("success", arr[1]);
  128. $.ligerDialog.closeWaitting();
  129. }
  130. else {
  131. $.ligerDialog.closeWaitting();
  132. $.ligerDialog.error(arr[1]);
  133. }
  134. } catch (e) {
  135. $.ligerDialog.error(e.message);
  136. }
  137. $.ligerDialog.closeWaitting();
  138. }
  139. });
  140. }
  141. function CloseThis() {
  142. var dialog = frameElement.dialog;
  143. parent.ReLoadList();
  144. dialog.close();
  145. }
  146. function SaveInfo(res) {
  147. switch (res) {
  148. case 'success':
  149. $.ligerDialog.success('保存成功', function (yes) { CloseThis(); });
  150. break;
  151. case 'warn':
  152. $.ligerDialog.error('保存失败,请确认数据正确性');
  153. break;
  154. case 'error':
  155. $.ligerDialog.error('系统错误,请联系开发商');
  156. break;
  157. default:
  158. break;
  159. }
  160. }
  161. function addlog(type)
  162. {
  163. var id = document.getElementById("txtId").value;
  164. var userid = document.getElementById("txtUserId").value;
  165. var username = document.getElementById("txtUserName").value;
  166. try {
  167. $.post("ajax/qcedit.ashx?action=addlog&type=" + type + "&id=" + id + "&optid=" + userid + "&optby=" + escape(username), function (data) {
  168. if (data == "success") {
  169. //$.ligerDialog.success('成功');
  170. //日志添加成功
  171. }
  172. else if (data == "error") {
  173. //$.ligerDialog.error('失败');
  174. //日志添加失败
  175. }
  176. else {
  177. //日志添加异常
  178. //$.ligerDialog.error(data);
  179. }
  180. });
  181. }
  182. catch (e) { }
  183. }
  184. function DownVoice() {
  185. addlog();
  186. document.getElementById("frameTelList").src = document.getElementById("WindowsMediaPlayer1").URL;
  187. }
  188. </script>
  189. </head>
  190. <body class="mainbody" scroll="auto" style="margin-top: 0px;">
  191. <form id="form1" runat="server"><div class="l-loading" style="display: block" id="pageloading">指标加载中...
  192. </div>
  193. <div id="contentTab">
  194. <div class="tab_con" style="display: block;">
  195. <table class="form_table">
  196. <col width="100px" />
  197. <col />
  198. <col width="100px" />
  199. <col />
  200. <tbody>
  201. <tr>
  202. <th style="border-right: 1px dotted #cccccc;">
  203. <span>电话号码:</span><asp:HiddenField ID="txtXMLInfo" Value="" runat="server" /><asp:HiddenField ID="txtId" Value="0" runat="server" /><asp:HiddenField ID="txtUserId" Value="0" runat="server" /><asp:HiddenField ID="txtUserName" Value="" runat="server" />
  204. </th>
  205. <td style="border-right: 1px dotted #cccccc;">
  206. &nbsp;<asp:Label ID="lblCallNumber" runat="server" Text=""></asp:Label>
  207. </td>
  208. <th style="border-right: 1px dotted #cccccc;">
  209. <span>通话时间:</span>
  210. </th>
  211. <td>
  212. &nbsp;<asp:Label ID="lblBeginTime" runat="server" Text=""></asp:Label>
  213. </td>
  214. </tr>
  215. <tr>
  216. <th style="border-right: 1px dotted #cccccc; border-top: 1px dotted #cccccc;">
  217. <span>呼叫方向:</span>
  218. </th>
  219. <td style="border-top: 1px dotted #cccccc; border-right: 1px dotted #cccccc;">
  220. &nbsp;<asp:Label ID="lblCallType" runat="server" Text=""></asp:Label>
  221. </td>
  222. <th style="border-right: 1px dotted #cccccc; border-top: 1px dotted #cccccc;">
  223. <span>通话时长:</span>
  224. </th>
  225. <td style="border-top: 1px dotted #cccccc;">
  226. &nbsp;<asp:Label ID="lblTalkLongTime" runat="server" Text=""></asp:Label>
  227. </td>
  228. </tr>
  229. <tr>
  230. <th style="border-right: 1px dotted #cccccc; border-top: 1px dotted #cccccc;">
  231. <span>坐席工号:</span>
  232. </th>
  233. <td style="border-top: 1px dotted #cccccc; border-right: 1px dotted #cccccc;">
  234. &nbsp;<asp:Label ID="lblUserCode" runat="server" Text=""></asp:Label>
  235. </td>
  236. <th style="border-right: 1px dotted #cccccc; border-top: 1px dotted #cccccc;">
  237. <span>坐席姓名:</span>
  238. </th>
  239. <td style="border-top: 1px dotted #cccccc;">
  240. &nbsp;<asp:Label ID="lblUserName" runat="server" Text=""></asp:Label>
  241. </td>
  242. </tr>
  243. <tr>
  244. <th style="border-right: 1px dotted #cccccc; border-top: 1px dotted #cccccc;">
  245. <span>听取录音:</span>
  246. </th>
  247. <td colspan="3" style="border-top: 1px dotted #cccccc; padding: 0px;">
  248. <object id="WindowsMediaPlayer1" style="width: 100%; height: 50px" classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6"
  249. viewastext>
  250. <param name="URL" value='<%=GetSrc() %>'>
  251. <param name="rate" value="1">
  252. <param name="balance" value="0">
  253. <param name="currentPosition" value="0">
  254. <param name="defaultFrame" value="">
  255. <param name="playCount" value="1">
  256. <param name="autoStart" value="-1">
  257. <param name="currentMarker" value="0">
  258. <param name="invokeURLs" value="0">
  259. <param name="baseURL" value="">
  260. <param name="volume" value="50">
  261. <param name="mute" value="0">
  262. <param name="uiMode" value="full">
  263. <param name="stretchToFit" value="0">
  264. <param name="windowlessVideo" value="-1">
  265. <param name="enabled" value="-1">
  266. <param name="enableContextMenu" value="0">
  267. <param name="fullScreen" value="0">
  268. <param name="SAMIStyle" value="">
  269. <param name="SAMILang" value="">
  270. <param name="SAMIFilename" value="">
  271. <param name="captioningID" value="">
  272. <param name="enableErrorDialogs" value="-1">
  273. <param name="_cx" value="4233">
  274. <param name="_cy" value="4392">
  275. </object>
  276. </td>
  277. </tr>
  278. <tr>
  279. <th style="border-right: 1px dotted #cccccc; border-top: 1px dotted #cccccc;">
  280. <span>下载录音:</span>
  281. </th>
  282. <td colspan="3" style="border-top: 1px dotted #cccccc;">
  283. <input id="btnSearch" type="button" value="下载" class="btnSearch" onclick="DownVoice();" />
  284. <iframe id="frameTelList" src="" width="0" height="0" style="display: none;" frameborder="0">
  285. </iframe>
  286. </td>
  287. </tr>
  288. </tbody>
  289. </table>
  290. </div>
  291. <div id="divDataItems" style="width: 100%;">
  292. <table border="0" cellpadding="0" cellspacing="0" width="100%" align='center'>
  293. <tr style="text-align: center;">
  294. <td style="height: 22px; background-color: #D5EDFE; border-left: 1px solid #CCCCCC;
  295. border-right: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  296. padding: 3px 3px 3px 3px; text-align: center;" colspan="2">
  297. 分类
  298. </td>
  299. <td style="height: 22px; background-color: #D5EDFE; border-left: 1px solid #CCCCCC;
  300. border-right: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  301. padding: 3px 3px 3px 3px; text-align: center;">
  302. 指标
  303. </td>
  304. <td style="height: 22px; width:60px; background-color: #D5EDFE; border-left: 1px solid #CCCCCC;
  305. border-right: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  306. padding: 3px 3px 3px 3px; text-align: center;">
  307. 分值
  308. </td>
  309. <td style="height: 22px; width:80px; background-color: #D5EDFE; border-left: 1px solid #CCCCCC;
  310. border-right: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  311. padding: 3px 3px 3px 3px; text-align: center;">
  312. 评分
  313. </td>
  314. </tr>
  315. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  316. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  317. <td rowspan="9" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  318. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  319. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  320. 服务亲和力&nbsp;
  321. </td>
  322. <td rowspan="4" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  323. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  324. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  325. 语音语调&nbsp;
  326. </td>
  327. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  328. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  329. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  330. 语调平淡&nbsp;
  331. </td>
  332. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  333. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  334. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  335. &nbsp;
  336. </td>
  337. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  338. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  339. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  340. &nbsp;
  341. </td>
  342. </tr>
  343. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  344. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  345. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  346. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  347. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  348. 吐字清晰&nbsp;
  349. </td>
  350. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  351. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  352. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  353. &nbsp;
  354. </td>
  355. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  356. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  357. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  358. &nbsp;
  359. </td>
  360. </tr>
  361. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  362. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  363. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  364. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  365. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  366. 音量、语速适中&nbsp;
  367. </td>
  368. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  369. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  370. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  371. &nbsp;
  372. </td>
  373. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  374. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  375. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  376. &nbsp;
  377. </td>
  378. </tr>
  379. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  380. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  381. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  382. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  383. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  384. 普通话标准&nbsp;
  385. </td>
  386. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  387. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  388. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  389. &nbsp;
  390. </td>
  391. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  392. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  393. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  394. &nbsp;
  395. </td>
  396. </tr>
  397. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  398. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  399. <td rowspan="2" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  400. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  401. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  402. 服务态度&nbsp;
  403. </td>
  404. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  405. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  406. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  407. 亲切、耐心&nbsp;
  408. </td>
  409. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  410. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  411. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  412. &nbsp;
  413. </td>
  414. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  415. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  416. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  417. &nbsp;
  418. </td>
  419. </tr>
  420. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  421. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  422. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  423. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  424. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  425. 积极主动、认真、征求询问&nbsp;
  426. </td>
  427. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  428. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  429. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  430. &nbsp;
  431. </td>
  432. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  433. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  434. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  435. &nbsp;
  436. </td>
  437. </tr>
  438. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  439. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  440. <td rowspan="3" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  441. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  442. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  443. 规范用语&nbsp;
  444. </td>
  445. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  446. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  447. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  448. 使用标准开始语、结束语和特殊情况的规范用语&nbsp;
  449. </td>
  450. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  451. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  452. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  453. &nbsp;
  454. </td>
  455. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  456. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  457. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  458. &nbsp;
  459. </td>
  460. </tr>
  461. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  462. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  463. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  464. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  465. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  466. 使用礼貌性语言&nbsp;
  467. </td>
  468. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  469. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  470. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  471. &nbsp;
  472. </td>
  473. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  474. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  475. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  476. &nbsp;
  477. </td>
  478. </tr>
  479. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  480. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  481. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  482. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  483. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  484. 主动道歉&nbsp;
  485. </td>
  486. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  487. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  488. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  489. &nbsp;
  490. </td>
  491. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  492. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  493. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  494. &nbsp;
  495. </td>
  496. </tr>
  497. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  498. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  499. <td colspan="3" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  500. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  501. height: 18px; padding-top: 3px; padding-bottom: 3px; background-color: #e4d354;">
  502. 【服务亲和力】合计:&nbsp;
  503. </td>
  504. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  505. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  506. height: 18px; padding-top: 3px; padding-bottom: 3px; background-color: #e4d354;">
  507. &nbsp;
  508. </td>
  509. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  510. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  511. height: 18px; padding-top: 3px; padding-bottom: 3px; background-color: #e4d354;">
  512. &nbsp;
  513. </td>
  514. </tr>
  515. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  516. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  517. <td rowspan="7" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  518. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  519. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  520. 沟通技巧&nbsp;
  521. </td>
  522. <td rowspan="2" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  523. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  524. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  525. 倾听技巧&nbsp;
  526. </td>
  527. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  528. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  529. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  530. 不抢话或随意打断用户讲话&nbsp;
  531. </td>
  532. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  533. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  534. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  535. &nbsp;
  536. </td>
  537. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  538. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  539. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  540. &nbsp;
  541. </td>
  542. </tr>
  543. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  544. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  545. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  546. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  547. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  548. 适当回应&nbsp;
  549. </td>
  550. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  551. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  552. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  553. &nbsp;
  554. </td>
  555. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  556. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  557. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  558. &nbsp;
  559. </td>
  560. </tr>
  561. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  562. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  563. <td rowspan="3" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  564. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  565. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  566. 确认信息&nbsp;
  567. </td>
  568. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  569. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  570. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  571. 迅速理解用户需求&nbsp;
  572. </td>
  573. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  574. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  575. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  576. &nbsp;
  577. </td>
  578. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  579. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  580. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  581. &nbsp;
  582. </td>
  583. </tr>
  584. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  585. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  586. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  587. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  588. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  589. 针对问题关键点进行提问&nbsp;
  590. </td>
  591. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  592. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  593. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  594. &nbsp;
  595. </td>
  596. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  597. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  598. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  599. &nbsp;
  600. </td>
  601. </tr>
  602. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  603. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  604. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  605. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  606. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  607. 确认回答内容与用户理解一致&nbsp;
  608. </td>
  609. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  610. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  611. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  612. &nbsp;
  613. </td>
  614. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  615. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  616. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  617. &nbsp;
  618. </td>
  619. </tr>
  620. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  621. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  622. <td rowspan="2" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  623. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  624. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  625. 语言技巧&nbsp;
  626. </td>
  627. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  628. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  629. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  630. 口语&nbsp;
  631. </td>
  632. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  633. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  634. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  635. &nbsp;
  636. </td>
  637. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  638. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  639. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  640. &nbsp;
  641. </td>
  642. </tr>
  643. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  644. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  645. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  646. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  647. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  648. 语言流畅有条理性&nbsp;
  649. </td>
  650. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  651. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  652. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  653. &nbsp;
  654. </td>
  655. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  656. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  657. height: 18px; padding-top: 3px; padding-bottom: 3px;">
  658. &nbsp;
  659. </td>
  660. </tr>
  661. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  662. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  663. <td colspan="3" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  664. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  665. height: 18px; padding-top: 3px; padding-bottom: 3px; background-color: #e4d354;">
  666. 【沟通技巧】合计:&nbsp;
  667. </td>
  668. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  669. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  670. height: 18px; padding-top: 3px; padding-bottom: 3px; background-color: #e4d354;">
  671. &nbsp;
  672. </td>
  673. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  674. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  675. height: 18px; padding-top: 3px; padding-bottom: 3px; background-color: #e4d354;">
  676. &nbsp;
  677. </td>
  678. </tr>
  679. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  680. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  681. <td colspan="3" style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  682. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  683. height: 22px; padding-top: 3px; padding-bottom: 3px; background-color: #D5EDFE;">
  684. 总计:&nbsp;
  685. </td>
  686. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  687. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  688. height: 22px; padding-top: 3px; padding-bottom: 3px; background-color: #D5EDFE;">
  689. &nbsp;
  690. </td>
  691. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  692. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  693. height: 22px; padding-top: 3px; padding-bottom: 3px; background-color: #D5EDFE;">
  694. &nbsp;
  695. </td>
  696. </tr>
  697. </table>
  698. </div>
  699. <div style="width: 100%;">
  700. <table border="0" cellpadding="0" cellspacing="0" width="100%" align='center'>
  701. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  702. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  703. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  704. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px; width:35%;
  705. height: 60px; padding-top: 3px; padding-bottom: 3px; background-color: #D5EDFE;"" align="right">
  706. 存在问题&nbsp;
  707. </td>
  708. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  709. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  710. height: 60px; padding-top: 3px; padding-bottom: 3px; background-color: #D5EDFE;"" align="left">
  711. &nbsp;<asp:TextBox ID="txtQuestion" runat="server" TextMode="MultiLine" CssClass='normal' Columns="50" Rows="3"></asp:TextBox>
  712. </td>
  713. </tr>
  714. <tr align="center" valign="middle" onmouseover="this.style.backgroundColor='#F6F6F6'"
  715. onmouseout="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff">
  716. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  717. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px; width:35%;
  718. height: 60px; padding-top: 3px; padding-bottom: 3px; background-color: #D5EDFE;"" align="right">
  719. 修改建议&nbsp;
  720. </td>
  721. <td style="vertical-align: middle; border-top: 0px solid #CCCCCC; border-bottom: 1px solid #CCCCCC;
  722. border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; padding-left: 2px;
  723. height: 60px; padding-top: 3px; padding-bottom: 3px; background-color: #D5EDFE;"" align="left">
  724. &nbsp;<asp:TextBox ID="txtAdvise" runat="server" TextMode="MultiLine" CssClass='normal' Columns="50" Rows="3"></asp:TextBox>
  725. </td>
  726. </tr>
  727. </table>
  728. </div>
  729. <div class="foot_btn_box">
  730. <input id="btnSubmit"
  731. type="button" value="保存评分" class="btnSubmit" onclick="validate();" />
  732. </div>
  733. </div>
  734. </form>
  735. </body>
  736. </html>