Nenhuma Descrição

callScreen.html 40KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>来电弹屏</title>
  6. <script src="../Script/Common/huayi.load.js"></script>
  7. <script src="../Script/Common/huayi.config.js"></script>
  8. <link href="./../css/plugins/jasny/jasny-bootstrap.min.css" rel="stylesheet">
  9. <link href="./../js/bootstrap-select/css/bootstrap-select.css" rel="stylesheet" />
  10. <link rel="stylesheet" href="./../js/zTree/zTreeStyle.css" />
  11. <link rel="stylesheet" href="./css/call.css" />
  12. <link rel="stylesheet" href="../js/comboSelect/combo.select.css" />
  13. <style>
  14. body,
  15. html,
  16. .wrapper {
  17. height: 100%;
  18. }
  19. .ldtp-con {
  20. display: block;
  21. }
  22. .minBacha {
  23. position: absolute;
  24. top: 0;
  25. right: 80px;
  26. z-index: 10;
  27. overflow: hidden;
  28. }
  29. .minBacha>div {
  30. float: left;
  31. height: 35px;
  32. width: 35px;
  33. margin-left: 2px;
  34. }
  35. .minBacha>div a {
  36. display: block;
  37. height: 100%;
  38. width: 100%;
  39. text-align: center;
  40. background-position: center center;
  41. background-color: #2f4050;
  42. opacity: .5;
  43. }
  44. .minBacha>div a:hover {
  45. opacity: 1;
  46. }
  47. .minClosed>a {
  48. background: url("./../img/min.png") no-repeat;
  49. }
  50. .Bacha>a {
  51. background: url("./../img/gb.png") no-repeat;
  52. }
  53. .lblcount {
  54. position: absolute;
  55. right: 5px;
  56. top: 7px;
  57. }
  58. .first {
  59. z-index: 1000;
  60. }
  61. .khzl {
  62. font-size: 12px;
  63. border: 0;
  64. margin: 35px auto;
  65. color: #fff;
  66. }
  67. .khzl ul li {
  68. color: initial;
  69. }
  70. .khzl tr {
  71. border: 0;
  72. }
  73. .khzl th {
  74. padding: 5px 8px 5px 0;
  75. text-align: right;
  76. width: 40%;
  77. font-weight: normal;
  78. border: 0;
  79. }
  80. .khzl tbody>tr>td,
  81. .khzl tbody>tr>th {
  82. border: 0;
  83. }
  84. .khzl tbody>tr>td input {
  85. border: 0;
  86. outline: none;
  87. background: #243747;
  88. padding-left: 5px;
  89. width: 100%;
  90. }
  91. .khzl tbody>tr>td .combo-select {
  92. border: 0;
  93. outline: none;
  94. }
  95. .khzl tbody>tr>td .combo-arrow {
  96. display: none;
  97. }
  98. .khbtn {
  99. /*background: #97a0a8;*/
  100. color: #1ab394;
  101. font-size: 14px;
  102. vertical-align: middle;
  103. }
  104. .hei-list {
  105. width: 400px;
  106. margin: 0 auto;
  107. }
  108. .heiTop {
  109. height: 35px;
  110. background: #1ab394;
  111. color: #fff;
  112. line-height: 35px;
  113. padding: 0 15px;
  114. border-top-left-radius: 3px;
  115. border-top-right-radius: 3px;
  116. }
  117. .heiTop .htl {
  118. float: left;
  119. margin: 0;
  120. }
  121. .heiTop .bacha {
  122. float: right;
  123. font-size: 18px;
  124. cursor: pointer;
  125. margin: 0;
  126. }
  127. .heiCon {
  128. width: 100%;
  129. background: #fff;
  130. text-align: center;
  131. padding: 25px 15px;
  132. height: auto;
  133. overflow-y: auto;
  134. border: 1px solid #eee;
  135. }
  136. #time-word {
  137. border: 1px solid #1ab394;
  138. padding: 5px 0 5px 10px;
  139. width: 120px;
  140. outline: none;
  141. color: #000;
  142. }
  143. .chooses {
  144. margin-top: 10px;
  145. }
  146. .btns {
  147. background: #1ab394;
  148. color: #fff;
  149. padding: 3px 10px;
  150. outline: none;
  151. font-size: 12px;
  152. margin-left: 15px;
  153. border: 0;
  154. border-radius: 3px;
  155. box-sizing: border-box;
  156. }
  157. .bianji {
  158. display: inline-block;
  159. height: 16px;
  160. vertical-align: middle;
  161. margin-right: 5px;
  162. }
  163. #citySel {
  164. width: 100%;
  165. }
  166. .bianji.edi {
  167. background: url(./../img/xgai.png) no-repeat;
  168. }
  169. .bianji.sav {
  170. background: url(./../img/bbc.png) no-repeat;
  171. }
  172. .bianji.canc {
  173. background: url(./../img/quxi.png) no-repeat;
  174. }
  175. .t-shade {
  176. position: fixed;
  177. top: 0;
  178. left: 0;
  179. width: 100%;
  180. height: 100%;
  181. background: rgba(0, 0, 0, 0.48);
  182. z-index: 10004;
  183. display: none;
  184. }
  185. .shade_k {
  186. z-index: 10005;
  187. width: 40%;
  188. height: 130px;
  189. margin: 10% auto;
  190. background-color: #fff;
  191. box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
  192. border-radius: 5px;
  193. }
  194. .shade_title {
  195. padding: 0 80px 0 20px;
  196. height: 42px;
  197. line-height: 42px;
  198. border-bottom: 1px solid #eee;
  199. font-size: 16px;
  200. color: #FFFFFF;
  201. overflow: hidden;
  202. background-color: rgb(26, 179, 148);
  203. border-radius: 2px 2px 0 0;
  204. position: relative;
  205. }
  206. .setwin {
  207. position: absolute;
  208. right: 15px;
  209. top: 5px;
  210. font-size: 20px;
  211. line-height: initial;
  212. }
  213. .setwin a {
  214. font-size: 20px;
  215. color: #fff;
  216. }
  217. .shade_content {
  218. overflow-y: auto;
  219. position: relative;
  220. padding-bottom: 50px;
  221. padding: 10px;
  222. }
  223. .ldcr-bottom .detail-con ul li .active a {
  224. color: #f95a83 !important;
  225. }
  226. .ldcr-bottom .detail-con ul li .active+.explancon {
  227. display: block !important;
  228. }
  229. .searchbtn {
  230. width: 2.5em;
  231. height: 24px;
  232. border-radius: 5px;
  233. position: absolute;
  234. background-color: #e43926;
  235. background-image: url(./../img/searIcon.png);
  236. background-repeat: no-repeat;
  237. background-position: center center;
  238. cursor: pointer;
  239. }
  240. #menuContent,
  241. #menuContent_market {
  242. background: #fff;
  243. position: absolute;
  244. width: 100%;
  245. border: 1px solid #ccc;
  246. right: 0;
  247. top: 34px;
  248. z-index: 10;
  249. /* display: none;*/
  250. overflow-y: auto;
  251. }
  252. #organizer,
  253. #organizer_market {
  254. height: 25px;
  255. width: 100%;
  256. display: inline-block;
  257. position: relative;
  258. }
  259. #treeDemo li {
  260. width: 100%;
  261. }
  262. .bootstrap-select>.dropdown-toggle.bs-placeholder {
  263. background-color: #ffffff!important;
  264. border-color: #e5e6e7!important;
  265. }
  266. .filter-option {
  267. color: #676b6d;
  268. }
  269. .bootstrap-select>.dropdown-toggle.btn-default {
  270. background-color: #ffffff!important;
  271. border-color: #e5e6e7!important;
  272. color: #555;
  273. }
  274. #fkdep_market {
  275. display: nones;
  276. }
  277. .testInput-list {
  278. position: absolute;
  279. z-index: 999;
  280. border: 1px solid rgb(204, 204, 204);
  281. background-color: rgb(255, 255, 255);
  282. z-index: 99999;
  283. padding-left: 0;
  284. width: 100%;
  285. display: none;
  286. height: 200px;
  287. overflow-y: auto;
  288. }
  289. .testInput-list li {
  290. padding: 5px;
  291. color: #000;
  292. }
  293. .testInput-list li:hover {
  294. background-color: #E43926;
  295. color: #fff;
  296. }
  297. #testInput_ {
  298. outline: none;
  299. border: 1px solid #ccc;
  300. padding-left: 10px;
  301. outline-color: #fff;
  302. }
  303. .e43 {
  304. color: #e43926;
  305. }
  306. .ld-sercon button.bton[disabled] {
  307. background-color: #999;
  308. }
  309. .combo-input.text-input {
  310. font-family: "宋体"!important;
  311. }
  312. #con_startTime,
  313. #con_endTime,
  314. #old_startTime,
  315. #old_endTime {
  316. width: 128px!important;
  317. }
  318. .treeList {
  319. border: 1px solid #e5e6e7!important;
  320. border-top: 0;
  321. height: 400px!important;
  322. }
  323. #TreeDemo li {
  324. float: initial;
  325. }
  326. #typeclass {
  327. background: #fff;
  328. }
  329. .treeList1 {
  330. border: 1px solid #e5e6e7 !important;
  331. border-top: 0;
  332. height: 400px !important;
  333. }
  334. #TreeDemo1 li {
  335. float: initial;
  336. }
  337. .addTree1 {
  338. background: #fff;
  339. position: absolute;
  340. width: 180px;
  341. border: 1px solid darkgrey;
  342. z-index: 10;
  343. display: none;
  344. height: 100px;
  345. overflow-y: auto;
  346. }
  347. .inps2,
  348. .inps3,
  349. .inps4 {
  350. display: none;
  351. }
  352. .time-box {}
  353. .time-box_flbox {
  354. display: none;
  355. }
  356. .customerService tbody tr th {
  357. padding-left: 20px;
  358. }
  359. .customerService tbody tr th {
  360. padding-left: 20px;
  361. }
  362. .tub {
  363. position: absolute;
  364. right: 10px;
  365. top: 15px;
  366. }
  367. .add_bj {
  368. display: inline-block;
  369. -webkit-border-radius: 5px;
  370. -moz-border-radius: 5px;
  371. border-radius: 5px;
  372. text-align: center;
  373. padding: 5px 10px;
  374. font-size: 12px;
  375. cursor: pointer;
  376. background: #1ab394;
  377. color: #fff;
  378. margin-top: 15px;
  379. }
  380. #typeclass_market1m {
  381. background: #FFFFFF;
  382. }
  383. .market tr th{
  384. padding-left: 30px;
  385. }
  386. .ld-sercon input {
  387. /* width: 128px; */
  388. height: 36px;
  389. }
  390. .form-group {
  391. margin:0;
  392. }
  393. .customerService tr {
  394. height:40px;
  395. }
  396. .customerService th {
  397. width: 100px;
  398. }
  399. .complainDiv2{
  400. display: none;
  401. }
  402. .workOrderIdColorRed{
  403. color: #FF0000;
  404. }
  405. .workOrderIdColorGreen{
  406. color: #008000;
  407. }
  408. .imgs {
  409. color: rgb(0, 128, 0);
  410. cursor: pointer;
  411. }
  412. .imgs a:hover {
  413. color: #e43926;
  414. }
  415. .W100 .th-inner {
  416. width:100px !important;
  417. }
  418. .W160 .th-inner {
  419. width:160px !important;
  420. }
  421. .W220 .th-inner {
  422. width:220px !important;
  423. }
  424. .W220{
  425. width:220px !important;
  426. }
  427. </style>
  428. <script>
  429. function clearInter() {
  430. clearInterval(timer);
  431. }
  432. //通话中执行变化
  433. var timer, n = 0;
  434. function calling() {
  435. $(".td-call").show();
  436. n = 0;
  437. clearInterval(timer);
  438. timer = setInterval(function() {
  439. n++;
  440. var m = parseInt(n / 60 % 60);
  441. var s = parseInt(n % 60);
  442. $(".thsc").text(toDub(m) + ":" + toDub(s));
  443. }, 1000);
  444. }
  445. function toDub(i) {
  446. return i < 10 ? "0" + i : "" + i;
  447. }
  448. </script>
  449. </head>
  450. <body class="gray-bg">
  451. <div class="wrapper wrapper-content animated fadeInRight">
  452. <!--来电弹屏开始-->
  453. <div class="ldtp-con clearfix animated fadeInDown ">
  454. <div style="display: none;" class="mfhtel"></div>
  455. <div class="hei-list">
  456. <div class="heiTop clearFix">
  457. <p class="htl">黑名单</p>
  458. <p class="bacha" title="关闭">x</p>
  459. </div>
  460. <div class="heiCon">
  461. <div class="heit">
  462. <span style="font-size: 14px;">输入拉黑时长:</span>
  463. <input type="text" id="time-word" />
  464. </div>
  465. <div class="chooses">
  466. <label class="radio-inline">
  467. <input type="radio" name="time" value="1" checked="checked" style="margin-top: 3px;"> 天
  468. </label>
  469. <label class="radio-inline">
  470. <input type="radio" name="time" value="2" style="margin-top: 3px;" />时
  471. </label>
  472. <label class="radio-inline">
  473. <input type="radio" name="time" value="3" style="margin-top: 3px;" />分
  474. </label>
  475. <label class="radio-inline">
  476. <input type="radio" name="time" value="4" style="margin-top: 3px;" />永久
  477. </label>
  478. </div>
  479. <p style="margin-top: 15px;"><button type="button" id="bc" class="btns">保存</button></p>
  480. </div>
  481. </div>
  482. <!--左侧内容-->
  483. <div class="ldtp-cl col-sm-3">
  484. <div class="head-pic">
  485. <div class="hp-box">
  486. <img src="./../img/txpic.png" alt="头像好像去了外星球!" style="width: 100%;height: 100%;" />
  487. <input type="hidden" class="hidTel" value="" />
  488. <input type="hidden" class="hidCallID" />
  489. <input type="hidden" class="hidActionID" />
  490. </div>
  491. <ul>
  492. <li><span style="font-size: 25px;" class="tel"></span></li>
  493. <li><span style="font-size: 15px;" class="khgsd"></span></li>
  494. <!--<li class="nikeName"><i></i><span class="ldname">未知</span><i></i></li>-->
  495. <li style="color: #4cd964;">当前通话时长:<span class="thsc">00:00</span></li>
  496. <li class="lahei">
  497. <div class="la-before"><i class="push"></i> 移至黑名单</div>
  498. <div class="la-after" style="display: none;">
  499. <p class="la-shichang">拉黑截止时间:<span class="blackTime"></span></p>
  500. </div>
  501. <div class="retur" style="display: none;"><i class="qxlh"></i> 取消黑名单</div>
  502. </li>
  503. <li class="td-call clearfix" style="display:none;">
  504. <a class="take" style="float:none;" href="javascript:;" title="转满意度"><i></i></a>
  505. <!--<a class="drop" href="javascript:;"><i></i></a>-->
  506. </li>
  507. </ul>
  508. </div>
  509. <table class="table khzl">
  510. <tr>
  511. <th>姓名:</th>
  512. <td>
  513. <input type="text" value="" class="ldname khmc" />
  514. <input type="hidden" value="" id="khid" />
  515. </td>
  516. </tr>
  517. <tr>
  518. <th>区域:</th>
  519. <td>
  520. <input type="text" value="" id="kharea"/>
  521. </td>
  522. </tr>
  523. <tr>
  524. <th>省份:</th>
  525. <td>
  526. <input type="text" id="shengshi" readonly="readonly" autocomplete="off">
  527. <div class="time-box time-box_flbox" style="position: relative;">
  528. <input type="hidden" class="khprovince">
  529. <input type="hidden" class="khcity">
  530. <div class="addTree1 treeList">
  531. <ul id="TreeDemo" class="ztree"></ul>
  532. </div>
  533. </div>
  534. </td>
  535. </tr>
  536. <tr>
  537. <th>联系电话:</th>
  538. <td><input type="text" value="" class="ldtel1" /></td>
  539. </tr>
  540. <tr>
  541. <th>来电时间:</th>
  542. <td><span class="ldtime" style="padding-left: 5px;"></span></td>
  543. </tr>
  544. <tr>
  545. <td></td>
  546. <td>
  547. <span class="edit"><i class="bianji edi"></i><a class="khbtn">编辑</a></span>
  548. <span class="save"> <i class="bianji sav"></i><a class="khbtn">保存</a></span>
  549. <span class="cancel"><i class="bianji canc"></i><a class="khbtn">取消</a></span></td>
  550. </tr>
  551. </table>
  552. </div>
  553. <!--右侧内容-->
  554. <div class="ldtp-cr col-sm-9">
  555. <ul class="ld-service clearfix">
  556. <li style="border-bottom:1px solid #f95a83;" itemtype="0" class="cr-click">新增工单</li>
  557. <li style="border-bottom:1px solid #243747;" itemtype="1">历史记录</li>
  558. <li style="border-bottom:1px solid #69cbd0;" itemtype="2" >历史工单</li>
  559. </ul>
  560. <div class="ld-sercon">
  561. <div class="complain" style="display: block;">
  562. <div class="Pre-second second-con addgd">
  563. <div class="common">
  564. <div class="form-group col-md-12 clearfix">
  565. <label class="col-md-2 workOrderTypeText">工单类型:</label>
  566. <div id="order_isover" class="col-md-6 r_order_type">
  567. <label class="radio-inline">
  568. <input type="radio" name="type" value="1" checked="checked"> 咨询
  569. </label>
  570. <label class="radio-inline">
  571. <input type="radio" name="type" value="2" > 投诉
  572. </label>
  573. <label class="radio-inline">
  574. <input type="radio" name="type" value="3" > 重复
  575. </label>
  576. </div>
  577. </div>
  578. <table class="customerService">
  579. <tbody>
  580. <tr>
  581. <th><i style="color: #FF0000">*&nbsp;</i>姓名:</th>
  582. <td>
  583. <div class="form-group">
  584. <input type="text" class="form-control" id="name" />
  585. </div>
  586. </td>
  587. <th><i style="color: #FF0000">*&nbsp;</i>电话:</th>
  588. <td>
  589. <div class="form-group">
  590. <input type="text" class="form-control" id="tel" />
  591. </div>
  592. </td>
  593. </tr>
  594. <tr>
  595. <th>省:</th>
  596. <td style="position: relative;">
  597. <div class="form-group">
  598. <select class="form-control" id="source">
  599. <option value ="">请选择</option>
  600. </select>
  601. </div>
  602. </td>
  603. <th>市:</th>
  604. <td style="position: relative;">
  605. <div class="form-group">
  606. <select class="form-control" id="type">
  607. <option value ="">请选择</option>
  608. </select>
  609. </div>
  610. </td>
  611. <!-- <th>区/县:</th>
  612. <td style="position: relative;">
  613. <div class="form-group">
  614. <select class="form-control" id="keyid">
  615. <option value ="">请选择</option>
  616. </select>
  617. </div>
  618. </td> -->
  619. <th>详细地址:</th>
  620. <td>
  621. <div class="form-group">
  622. <input type="text" class="form-control" id="addressDescription" />
  623. </div>
  624. </td>
  625. </tr>
  626. <tr>
  627. <th>产品代码:</th>
  628. <td>
  629. <div class="form-group">
  630. <select class="form-control" id="productType">
  631. <option value ="">请选择</option>
  632. </select>
  633. </div>
  634. </td>
  635. <th>产品名称:</th>
  636. <td>
  637. <div class="form-group">
  638. <input type="text" class="form-control" id="productName" />
  639. </div>
  640. </td>
  641. <th>规格:</th>
  642. <td>
  643. <div class="form-group">
  644. <input type="text" class="form-control" id="specification" />
  645. </div>
  646. </td>
  647. <th>生产日期:</th>
  648. <td>
  649. <div class="form-group">
  650. <input type="text" class="form-control" id="productDate" placeholder="时间格式YYYY.MM.DD"/>
  651. </div>
  652. </td>
  653. </tr>
  654. <tr>
  655. <th>产品编码:</th>
  656. <td>
  657. <div class="form-group">
  658. <input type="text" class="form-control" id="productNumber" />
  659. </div>
  660. </td>
  661. <th>生产厂家:</th>
  662. <td>
  663. <!--<div class="form-group">
  664. <select class="form-control" id="productFactory">
  665. <option value ="">请选择</option>
  666. </select>
  667. </div>-->
  668. <div class="form-group">
  669. <input type="text" class="form-control" id="productFactory" list="productFactoryDataList" placeholder="请输入"/>
  670. <datalist id="productFactoryDataList">
  671. </datalist>
  672. </div>
  673. </td>
  674. <th>问题代码:</th>
  675. <td>
  676. <div class="form-group">
  677. <select class="form-control" id="problemCode">
  678. <option value ="">请选择</option>
  679. </select>
  680. </div>
  681. </td>
  682. <th><i style="color: #FF0000">*&nbsp;</i>质量问题:</th>
  683. <td>
  684. <!--<div class="form-group">
  685. <select class="form-control" id="qualityProblem">
  686. <option value ="">请选择</option>
  687. </select>
  688. </div>-->
  689. <div class="form-group">
  690. <input type="text" class="form-control" id="qualityProblem" />
  691. </div>
  692. </td>
  693. </tr>
  694. <tr>
  695. <th>工单级别:</th>
  696. <td>
  697. <div class="form-group">
  698. <select class="form-control" id="dealTimely">
  699. </select>
  700. </div>
  701. </td>
  702. <th class="reasonTitle">原因:</th>
  703. <td class="reasonInput">
  704. <div class="form-group">
  705. <select class="form-control" id="reason">
  706. <option value ="">请选择</option>
  707. </select>
  708. </div>
  709. </td>
  710. </tr>
  711. <tr class="isOverWrapper">
  712. <th>立即办理</th>
  713. <td>
  714. <div id="isOver" class="col-md-6 r_order_type">
  715. <label class="radio-inline" for="over-no">
  716. <input id="over-no" type="radio" name="isOver" value="0" checked="checked">
  717. </label>
  718. <label class="radio-inline" for="over-yes">
  719. <input id="over-yes" type="radio" name="isOver" value="1">
  720. </label>
  721. </div>
  722. </td>
  723. </tr>
  724. <tr class="isAssignWrapper">
  725. <th>是否指派:</th>
  726. <td>
  727. <div id="isAssign" class="col-md-6 r_order_type">
  728. <label class="radio-inline">
  729. <input type="radio" name="isAssign" value="1" checked="checked"> 指派
  730. </label>
  731. <label class="radio-inline">
  732. <input type="radio" name="isAssign" value="0" > 不指派
  733. </label>
  734. </div>
  735. </td>
  736. <th class="comaddressTitle">大区:</th>
  737. <td style="position: relative;" class="comaddressSelect">
  738. <div class="form-group">
  739. <select class="form-control" id="customer_comaddress">
  740. <option value ="">请选择</option>
  741. </select>
  742. </div>
  743. </td>
  744. <th class="submitterTitle">提交人:</th>
  745. <td style="position: relative;" class="submitterSelect">
  746. <div class="form-group">
  747. <select class="form-control" id="customer_submitter">
  748. <option value ="">请选择</option>
  749. </select>
  750. </div>
  751. </td>
  752. </tr>
  753. <!-- <tr>
  754. <th>提交内容:</th>
  755. <td>
  756. <div class="form-group">
  757. <input type="text" class="form-control" id="cont" />
  758. </div>
  759. </td>
  760. </tr>-->
  761. <!--<tr>
  762. <th>工单来源:</th>
  763. <td>
  764. <div class="form-group">
  765. <select name="" class="form-control" id="DicValueList"></select>
  766. </div>
  767. </td>
  768. <th>工单类型:</th>
  769. <td>
  770. <div class="form-group">
  771. <select name="" class="form-control orderType"></select>
  772. </div>
  773. </td>
  774. <th class="complainDiv2 snRmove">咨询类型:</th>
  775. <td class="complainDiv2 snRmove">
  776. <div class="form-group">
  777. <select name="" class="form-control complaintType2"></select>
  778. </div>
  779. </td>
  780. <th class="complainDiv">投诉类型:</th>
  781. <td class="complainDiv">
  782. <div class="form-group">
  783. <select name="" class="form-control complaintType1"></select>
  784. </div>
  785. </td>
  786. </tr>
  787. <tr>
  788. <th>产品名称:</th>
  789. <td>
  790. <div class="form-group">
  791. <input type="text" class="form-control" id="productname" />
  792. </div>
  793. </td>
  794. <th>产品类别:</th>
  795. <td style="position: relative;">
  796. <div class="form-group">
  797. <select name="" class="form-control productType" id="productType"></select>
  798. </div>
  799. </td>
  800. <th>生产批号:</th>
  801. <td>
  802. <div class="form-group">
  803. <input type="text" class="form-control" id="batchNumber" />
  804. </div>
  805. </td>
  806. <th>购买地址:</th>
  807. <td>
  808. <div class="form-group">
  809. <input type="text" class="form-control" id="buyAddress" />
  810. </div>
  811. </td>
  812. </tr>
  813. <tr>
  814. <th class="snRmove">样品寄回:</th>
  815. <td style="position: relative;" class="snRmove">
  816. <label style="vertical-align: middle;font-weight: normal; margin-right:20px;"><input style="vertical-align: middle" type="radio" name="sendBack" id="sendBack" value="0" checked="checked" />否</label>
  817. <label style="vertical-align: middle;font-weight: normal;"><input style="vertical-align: middle" type="radio" name="sendBack" id="sendBack" value="1" />是</label>
  818. </td>
  819. </tr>
  820. <tr>
  821. </tr>-->
  822. <tr>
  823. <th>备注:</th>
  824. <td colspan="7">
  825. <textarea name="" rows="5" cols="" placeholder="" id="remark" style="margin-top:10px;"></textarea>
  826. </td>
  827. </tr>
  828. <tr>
  829. <td colspan="7" style="text-align: center;">
  830. <button class="btns customerSubmit">新建</button>
  831. <button class="btns customerSubmitRepeat" style="display: none;">提交</button>
  832. </td>
  833. </tr>
  834. <tr></tr>
  835. <tr>
  836. <th>电话号码:</th>
  837. <td>
  838. <input type="text" class="form-control" id="SMSPhone" />
  839. </td>
  840. <th>短信内容:</th>
  841. <td colspan="3">
  842. <textarea rows="4" cols="" placeholder="" id="SMSCont"></textarea>
  843. <button class="btns SMSSubmit">发送短信</button>
  844. </td>
  845. <td>
  846. </td>
  847. </tr>
  848. </tbody>
  849. </table>
  850. </div>
  851. </div>
  852. </div>
  853. <div class="complain" style="display:none;">
  854. <div class="ld-sercon-con clearfix">
  855. <div class="Ps-chaxun">
  856. <span>查询: <input type="text" id="old_startTime" class="laydate-icon" />&nbsp;——&nbsp;<input type="text" id="old_endTime" class="laydate-icon" /></span>
  857. <span class="searchbtn"></span>
  858. </div>
  859. <div class="table-responsive col-sm-12 tbold" style="padding-left: 0;">
  860. <table id="oldlist" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
  861. <thead>
  862. <tr>
  863. <th data-field="CallNumber">电话号码</th>
  864. <th data-field="CallState" data-formatter="GetCallState">呼叫状态</th>
  865. <th data-field="DealType" data-formatter="formatterDealType" data-align="center">处理方式</th>
  866. <th data-field="UserCode">坐席工号</th>
  867. <th data-field="UserName">坐席姓名</th>
  868. <th data-field="BeginTime">开始时间</th>
  869. <th data-field="TalkStartTime">通话开始时间</th>
  870. <th data-field="TalkEndTime">通话结束时间</th>
  871. <th data-field="TalkLongTime">通话时长(s)</th>
  872. <th data-field="FilePath" data-formatter="setCode">录音</th>
  873. </tr>
  874. </thead>
  875. <tbody class="list"></tbody>
  876. </table>
  877. </div>
  878. </div>
  879. </div>
  880. <div class="complain" style="display:none;">
  881. <div class="ld-sercon-con clearfix">
  882. <div class="Ps-chaxun">
  883. <span>
  884. 查询: <input type="text" id="con_startTime" class="laydate-icon" />
  885. &nbsp;——&nbsp;
  886. <input type="text" id="con_endTime" class="laydate-icon" />
  887. </span>
  888. <span class="searchbtn"></span>
  889. </div>
  890. <div id="zxlbs" class="table-responsive col-sm-12 tbold" style="padding-left: 0;">
  891. <table id="orderlist" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
  892. <thead>
  893. <tr>
  894. <th data-field="F_WorkOrderId" data-class="W160" data-formatter="View" data-align="center">工单编号</th>
  895. <th data-field="F_AreaName" data-class="W60" data-align="center">大区</th>
  896. <th data-field="F_OfficName" data-class="W80" data-align="center">办事处</th>
  897. <th data-field="F_CreateTime" data-class="W190" data-formatter="formatterAddressResult" data-align="center">投诉时间</th>
  898. <th data-field="F_SerialNumber" data-class="W60" data-align="center">序号</th>
  899. <th data-field="F_CusName" data-class="W100" data-align="center">姓名</th>
  900. <th data-field="F_AddRess" data-class="W380" data-formatter="formatterAddressResult" data-align="center">地址</th>
  901. <th data-field="F_CusPhone" data-class="W220" data-formatter="formatterAddressResult" data-align="center">联系电话</th>
  902. <th data-field="F_ProductType" data-class="W80" data-align="center">产品代码</th>
  903. <th data-field="F_ProductName" data-class="W380" data-formatter="formatterAddressResult" data-align="center">产品名称</th>
  904. <th data-field="F_Specifications" data-class="W80" data-formatter="formatterCharacterLength" data-align="center">规格</th>
  905. <th data-field="F_ProductDate" data-class="W100" data-align="center">生产日期</th>
  906. <th data-field="F_BatchNumber" data-class="W380" data-formatter="formatterAddressResult" data-align="center">产品编码</th>
  907. <th data-field="F_Manufacturer" data-class="W100" data-formatter="formatterCharacterLength" data-align="center">生产厂家</th>
  908. <th data-field="F_ProblemCode" data-class="W80" data-align="center">问题代码</th>
  909. <th data-field="F_QualityProblem" data-class="W380" data-formatter="formatterAddressResult" data-align="center">质量问题</th>
  910. <th data-field="F_Notifications" data-class="W80" data-align="center">通知人</th>
  911. <th data-field="F_ReceivingPerson" data-class="W80" data-align="center">接听人</th>
  912. <th data-field="F_DealResult" data-class="W380" data-formatter="formatterAddressResult" data-align="center">落实情况</th>
  913. <th data-field="F_State" data-class="W100" data-formatter="workOrderStateJudge" data-align="center">处理进度</th>
  914. <th data-field="F_Type" data-class="W80" data-formatter="workOrderTypeJudge" data-align="center">工单类别</th>
  915. </tr>
  916. </thead>
  917. <tbody class="list"></tbody>
  918. </table>
  919. </div>
  920. </div>
  921. </div>
  922. </div>
  923. <!--右侧下方内容区-->
  924. <div class="ldcr-bottom" style="margin-top:10px;">
  925. <div class="callRecordsList-wrapper" style="width: 100%;padding: 10px; display: none;">
  926. <table id="callRecordsList" class="market" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
  927. <thead>
  928. <tr>
  929. <th data-field="CallNumber" data-align="center">电话号码</th>
  930. <th data-field="FilePath" data-formatter="setCode" data-align="center">录音</th>
  931. <th data-field="CallType" data-formatter="callType" data-align="center">呼叫方向</th>
  932. <th data-field="DealType" data-formatter="formatterDealType" data-align="center">处理方式</th>
  933. <th data-field="CallState" data-formatter="states" data-align="center">呼叫状态</th>
  934. <th data-field="UserCode" data-align="center">坐席工号</th>
  935. <th data-field="UserName" data-align="center">坐席姓名</th>
  936. <th data-field="BeginTime" data-align="center">开始时间</th>
  937. <th data-field="TalkStartTime" data-align="center">通话开始时间</th>
  938. <th data-field="TalkEndTime" data-align="center">通话结束时间</th>
  939. <th data-field="TalkLongTime" data-align="center">通话时长(S)</th>
  940. <th data-field="F_OptContent" data-align="center">备注</th>
  941. </tr>
  942. </thead>
  943. </table>
  944. </div>
  945. <div class="ldcrb-top clearfix">
  946. <ul class="clearfix">
  947. <li style="border-bottom:1px solid #69cbd0; background: #000;color: #fff;">知识库</li>
  948. <!--<li style="border-bottom:1px solid #f95a83;border-top:1px solid #000;border-right:1px solid #000;">更多内容</li>-->
  949. </ul>
  950. <div class="ld-search">
  951. <div class="sear-inp">
  952. <input type="text" class="search" placeholder="搜索问题、内容或者标题" />
  953. </div>
  954. <div class="searIcon">
  955. </div>
  956. </div>
  957. </div>
  958. <div class="detail-con">
  959. <ul></ul>
  960. </div>
  961. </div>
  962. </div>
  963. </div>
  964. <!--录音-->
  965. <div class="t-shade">
  966. <div class="shade_k">
  967. <div class="shade_title">
  968. <span>录音播放与下载<srong class="cknum"></srong></span>
  969. <span class="setwin"><a>x</a></span>
  970. </div>
  971. <div class="shade_content">
  972. <div class="Ly_box audiojs">
  973. </div>
  974. <div class="boxCon LY_box">
  975. </div>
  976. </div>
  977. </div>
  978. </div>
  979. <!--来电弹屏结束-->
  980. </div>
  981. <script src="./../js/bootstrap-table.js"></script>
  982. <script src="./../js/bootstrap-table-zh-CN.js"></script>
  983. <script src="./../js/zTree/jquery.ztree.core.js"></script>
  984. <script src="./../js/plugins/datapicker/bootstrap-datepicker.js"></script>
  985. <script src="../css/laydate/laydate.js"></script>
  986. <script src="../js/kindeditor/kindeditor.js"></script>
  987. <script src="../js/kindeditor/lang/zh_CN.js"></script>
  988. <script src="./../js/jquery.select.js"></script>
  989. <script src="select.js"></script>
  990. <script src="../js/comboSelect/jquery.combo.select.js"></script>
  991. <script src="./../js/main.js?v=1.5"></script>
  992. <script src="call.js"></script>
  993. </body>
  994. </html>