Bez popisu

home.html 110KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta name="renderer" content="webkit" />
  7. <meta http-equiv="Cache-Control" content="no-siteapp" />
  8. <title>安阳政务服务热线后台业务管理系统</title>
  9. <script src="./Script/Common/huayi.load.js"></script>
  10. <script src="./Script/Common/huayi.config.js"></script>
  11. <link rel="shortcut icon" href="img/32.ico" />
  12. <link rel="stylesheet" href="./css/wh.css" />
  13. <link rel="stylesheet" href="./css/plugins/iCheck/custom.css" />
  14. <link rel="stylesheet" href="./css/call.css" />
  15. <link rel="stylesheet" href="./css/personal.css" />
  16. <link rel="stylesheet" href="./css/plugins/cropper/cropper.min.css" />
  17. <link rel="stylesheet" href="./css/plugins/jasny/jasny-bootstrap.min.css" />
  18. <link rel="stylesheet" href="./css/chat.css" />
  19. <link rel="stylesheet" href="./js/zTree/zTreeStyle.css" />
  20. <link rel="stylesheet" href="./css/addappeal.css" />
  21. <link rel="stylesheet" href="./css/bootstrap-select.css" />
  22. <link rel="stylesheet" href="./css/bootstrap-select.css" />
  23. <link rel="stylesheet" href="./js/layui/css/layui.css">
  24. <style>
  25. @font-face {
  26. font-family: "iconfont";
  27. src: url("./fonts/iconfont.eot");
  28. /* IE9*/
  29. src: url("./fonts/iconfont.eot?#iefix") format("embedded-opentype"),
  30. /* IE6-IE8 */
  31. url("./fonts/iconfont.woff") format("woff"),
  32. /* chrome、firefox */
  33. url("./fonts/iconfont.ttf") format("truetype"),
  34. /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  35. url("./fonts/iconfont.svg#iconfont") format("svg");
  36. /* iOS 4.1- */
  37. }
  38. body {
  39. font-family: "微软雅黑";
  40. }
  41. ul li {
  42. list-style: none;
  43. /* overflow: hidden; */
  44. }
  45. .iconfont {
  46. font-family: "iconfont";
  47. font-style: normal;
  48. color: #ffffff;
  49. }
  50. .fr {
  51. float: right;
  52. }
  53. .fl {
  54. float: left;
  55. }
  56. .size-12 {
  57. font-size: 12px;
  58. }
  59. .title-box {
  60. margin-top: 5px;
  61. }
  62. .title-box li {
  63. margin-left: 30px;
  64. }
  65. .title-box li:hover {
  66. cursor: pointer;
  67. }
  68. .HoverColor {
  69. color: #f8ac59;
  70. }
  71. .FailureColor {
  72. color: #f95f5e;
  73. }
  74. .navbar-header {
  75. width: 100%;
  76. background-color: #048aad;
  77. padding-top: 10px;
  78. }
  79. .title-box li p {
  80. color: #ffffff;
  81. font-size: 14px;
  82. font-weight: bold;
  83. letter-spacing: 2px;
  84. margin-top: 5px;
  85. }
  86. .size-14 {
  87. font-size: 14px;
  88. color: #ffffff !important;
  89. }
  90. .img-circle {
  91. width: 58px;
  92. }
  93. .xian {
  94. border: 1px solid #ffffff;
  95. display: inline-block;
  96. width: 15%;
  97. margin: 5px;
  98. }
  99. .ss {
  100. margin-left: 20px;
  101. }
  102. .fe-3 {
  103. font-size: 3em;
  104. }
  105. .title-box p {
  106. text-align: center;
  107. }
  108. .closed {
  109. display: inline-block;
  110. /* margin-left: 5%;*/
  111. cursor: pointer;
  112. color: #ffffff;
  113. float: right;
  114. margin-right: 5%;
  115. height: 42px;
  116. line-height: 42px;
  117. }
  118. .closed div {
  119. overflow: hidden;
  120. float: left;
  121. height: 100%;
  122. }
  123. .closed ul {
  124. margin-bottom: 0px;
  125. }
  126. .closed li {
  127. float: left;
  128. margin-right: 20px;
  129. }
  130. .closed i {
  131. display: inline-block;
  132. background: url(./img/chilun.png) no-repeat;
  133. margin-right: 5px;
  134. width: 14px;
  135. height: 16px;
  136. vertical-align: middle;
  137. }
  138. .ga {
  139. background-position: 0 0 !important;
  140. }
  141. .sz {
  142. background-position: 0 -15px !important;
  143. }
  144. .tc {
  145. background-position: 0 -33px !important;
  146. }
  147. .zhuangtai {
  148. display: block;
  149. width: 30%;
  150. margin-left: 10px;
  151. font-size: 14px;
  152. font-weight: 800;
  153. }
  154. .wq {
  155. color: #f95f5e;
  156. }
  157. #top-search li:hover {
  158. color: #eaeaea;
  159. }
  160. .content-tabs1 ul {
  161. padding-left: 0;
  162. }
  163. .content-tabs1 li {
  164. list-style: none;
  165. float: left;
  166. height: 5px;
  167. }
  168. .top1 {
  169. background-color: #68adfe;
  170. }
  171. .top2 {
  172. background-color: #9897f0;
  173. }
  174. .top3 {
  175. background-color: #87eebf;
  176. }
  177. .top4 {
  178. background-color: #68b0fe;
  179. }
  180. .top5 {
  181. background-color: #f95a83;
  182. }
  183. .top6 {
  184. background-color: #eb76dd;
  185. }
  186. .top7 {
  187. background-color: #69cbd0;
  188. }
  189. .top8 {
  190. background-color: #69cbd0;
  191. }
  192. .top9 {
  193. background-color: #aaf58d;
  194. }
  195. .top10 {
  196. background-color: #f76a53;
  197. }
  198. .top11 {
  199. background-color: #eb76dd;
  200. }
  201. .top12 {
  202. background-color: #6c77da;
  203. }
  204. .top13 {
  205. background: -webkit-linear-gradient(left, #f073db, #65abfc);
  206. background: -moz-linear-gradient(left, #f073db, #65abfc);
  207. background: -o-linear-gradient(left, #f073db, #65abfc);
  208. background: -webkit-gradient(linear, 100% 0, 0 0, from(#65abfc), to(#f073db));
  209. background: linear-gradient(left, #f073db, #65abfc);
  210. /* Opera 11.1 - 12.0 */
  211. /* Firefox 3.6 - 15 */
  212. /* 标准的语法 */
  213. }
  214. .zts {
  215. height: 30px;
  216. margin-left: 2%;
  217. line-height: 30px;
  218. padding-top: 15px;
  219. }
  220. .zts li {
  221. height: 20px;
  222. line-height: 20px;
  223. font-weight: bold;
  224. letter-spacing: 2px;
  225. }
  226. .quan {
  227. width: 15px;
  228. height: 15px !important;
  229. border-radius: 50%;
  230. margin-right: 2%;
  231. margin-left: 5px;
  232. margin-top: 2px;
  233. }
  234. .lx {
  235. background: #6a6d69;
  236. }
  237. .br {
  238. background: red;
  239. }
  240. .bl {
  241. background: #7ab85b;
  242. }
  243. .by {
  244. background: yellow;
  245. }
  246. .LH {
  247. line-height: 35px;
  248. }
  249. .zts span {
  250. line-height: 20px;
  251. margin-right: 50px;
  252. font-size: 12px;
  253. }
  254. .photo {
  255. width: 40px;
  256. height: 40px;
  257. border-width: 2px;
  258. border-style: solid;
  259. border-radius: 50%;
  260. border-color: #ffb400 #fc3c04 #fdfc01 #00e3c0;
  261. margin-bottom: 1px;
  262. }
  263. .photo img {
  264. display: block;
  265. width: 100%;
  266. height: 100%;
  267. }
  268. .ls {
  269. /*margin-left: 20px;*/
  270. text-align: center;
  271. overflow: initial !important;
  272. position: relative;
  273. }
  274. .ls .dropdown-menu {
  275. top: 115%;
  276. left: -100%;
  277. width: 320px;
  278. background: rgba(0, 160, 205, 0.92);
  279. }
  280. .ls .dropdown-menu li {
  281. float: initial;
  282. margin-right: 0;
  283. line-height: 25px;
  284. }
  285. .dropdown-menu>li>a {
  286. margin: 0;
  287. color: #555;
  288. padding: 0;
  289. text-align: center;
  290. }
  291. .dropdown-menu>li>a:focus,
  292. .dropdown-menu>li>a:hover {
  293. color: #fff;
  294. text-decoration: none;
  295. background-color: #00a1cb;
  296. }
  297. .dropdown-menu>li>a div {
  298. float: initial;
  299. }
  300. .dropdown-menu>li>a .tipCon {
  301. width: 100%;
  302. overflow: hidden;
  303. white-space: nowrap;
  304. text-overflow: ellipsis;
  305. }
  306. .dropdown-menu>li>a .order_time span {
  307. display: inline-block;
  308. margin: 0;
  309. }
  310. .order_time span.work_order {
  311. float: left;
  312. }
  313. .order_time span.ort {
  314. float: right;
  315. }
  316. .ls span {
  317. margin-right: 18px;
  318. }
  319. .ls span.tuBiao,
  320. .ls span.chat,
  321. .ls span.surIcon {
  322. display: inline-block;
  323. /*width: 16px;
  324. height: 16px;
  325. background: url(img/files.png) no-repeat;*/
  326. vertical-align: middle;
  327. position: relative;
  328. font-size: 15px;
  329. }
  330. .ls span.chat.come_mess {
  331. color: red;
  332. }
  333. .ls span.surIcon {
  334. font-size: 18px;
  335. }
  336. .ls span.tuBiao span,
  337. .ls span.chat span,
  338. .ls span.surIcon span {
  339. position: absolute;
  340. padding: 3px;
  341. top: -13px;
  342. }
  343. .min-right {
  344. margin-right: 10px;
  345. }
  346. .navbar-top-links i {
  347. width: 24px;
  348. height: 21px;
  349. display: block;
  350. background: url(./img/topIcon.png) no-repeat;
  351. background-position: center center;
  352. margin: 0 auto;
  353. }
  354. /*挂断*/
  355. .DropCall {
  356. background-position: 0px 0 !important;
  357. }
  358. /*外呼*/
  359. .MakeCall {
  360. background-position: 0px -20px !important;
  361. }
  362. /*置忙*/
  363. .SayBusy {
  364. background-position: 0px -42px !important;
  365. }
  366. /*置闲*/
  367. .SayFree {
  368. background-position: 0px -65px !important;
  369. }
  370. /*多方通话*/
  371. .Meeting {
  372. background-position: 0px -85px !important;
  373. }
  374. /*多方通话回签*/
  375. .MeetingTakeBack {
  376. background-position: 0px -85px !important;
  377. }
  378. /*转移*/
  379. .Transfer {
  380. background-position: 0px -108px !important;
  381. }
  382. /*保持*/
  383. .Hold {
  384. background-position: 0px -131px !important;
  385. }
  386. /*接回*/
  387. .Retrieve {
  388. background-position: 0px -153px !important;
  389. }
  390. /*签入*/
  391. .Login {
  392. background-position: 0px -197px !important;
  393. }
  394. /*外呼签入*/
  395. .callOutLogin {
  396. background-position: 0px -197px !important;
  397. }
  398. /*签出*/
  399. .Logout {
  400. background-position: 0px -175px !important;
  401. }
  402. /* 满意度 */
  403. .satisfactionEvaluation {
  404. background: url(img/satisfactionEvaluation.png) no-repeat !important;
  405. background-size: 24px 21px !important;
  406. }
  407. .navbar-top-links .satisfactionEvaluation.active {
  408. background: url(img/satisfactionEvaluation2.png) no-repeat !important;
  409. background-size: 24px 21px !important;
  410. }
  411. /*协商呼叫 */
  412. .Consult {
  413. background: url(img/new_xshj.png) no-repeat 0 0 !important;
  414. }
  415. .navbar-top-links .Consult.active {
  416. background: url(img/new_xshj2.png) no-repeat 0 0 !important;
  417. }
  418. /*确认转移 */
  419. .ConfirmTransfer {
  420. background: url(img/new_qrzy.png) no-repeat 0 0 !important;
  421. }
  422. .navbar-top-links .ConfirmTransfer.active {
  423. background: url(img/new_qrzy2.png) no-repeat 0 0 !important;
  424. }
  425. /*取消转移 */
  426. .CancelTransfer {
  427. background: url(img/new_qxzy.png) no-repeat 0 0 !important;
  428. }
  429. .navbar-top-links .CancelTransfer.active {
  430. background: url(img/new_qxzy2.png) no-repeat 0 0 !important;
  431. }
  432. /*转IVR */
  433. .TurnIvr {
  434. background: url(img/IVR.png) no-repeat 0 0 !important;
  435. }
  436. .navbar-top-links .TurnIvr.active {
  437. background: url(img/IVR2.png) no-repeat 0 0 !important;
  438. }
  439. .navbar-top-links .active {
  440. background-position-x: -23px !important;
  441. }
  442. .ldcr-bottom .detail-con ul li .active a {
  443. color: #f95a83 !important;
  444. }
  445. .ldcr-bottom .detail-con ul li .active em {
  446. color: #f95a83 !important;
  447. }
  448. .ldcr-bottom .detail-con ul li .active+.explancon {
  449. display: block !important;
  450. }
  451. .searchbtn {
  452. width: 2.5em;
  453. height: 24px;
  454. border-radius: 5px;
  455. position: absolute;
  456. background-color: #01a1cb;
  457. background-image: url(./img/searIcon.png);
  458. background-repeat: no-repeat;
  459. background-position: center center;
  460. cursor: pointer;
  461. }
  462. .max-box {
  463. height: 42px;
  464. /*width: 100%;*/
  465. }
  466. .laydate_body .laydate_bottom,
  467. .laydate_body .laydate_top {
  468. height: 31px !important;
  469. }
  470. .laydate_body .laydate_y .laydate_yms ul li {
  471. width: 59px !important;
  472. }
  473. .col-sm-1 {
  474. padding-right: 0;
  475. line-height: 22px;
  476. text-align: center;
  477. font-family: "微软雅黑";
  478. }
  479. ul.ztree {
  480. border: 1px solid #617775;
  481. background: #f0f6e4;
  482. overflow-y: scroll;
  483. overflow-x: auto;
  484. }
  485. .minBacha {
  486. position: absolute;
  487. top: 0;
  488. right: 80px;
  489. z-index: 10;
  490. overflow: hidden;
  491. }
  492. .minBacha>div {
  493. float: left;
  494. height: 35px;
  495. width: 35px;
  496. margin-left: 2px;
  497. }
  498. .minBacha>div a {
  499. display: block;
  500. height: 100%;
  501. width: 100%;
  502. text-align: center;
  503. background-position: center center;
  504. background-color: #2f4050;
  505. opacity: 0.5;
  506. }
  507. .minBacha>div a:hover {
  508. opacity: 1;
  509. }
  510. .minClosed>a {
  511. background: url("./img/min.png") no-repeat;
  512. }
  513. .Bacha>a {
  514. background: url("./img/gb.png") no-repeat;
  515. }
  516. .lblcount {
  517. position: absolute;
  518. right: 5px;
  519. top: 7px;
  520. }
  521. .first {
  522. z-index: 1000;
  523. }
  524. .khzl {
  525. font-size: 12px;
  526. border: 0;
  527. width: 80%;
  528. margin: 35px auto;
  529. color: #fff;
  530. }
  531. .khzl tr {
  532. border: 0;
  533. }
  534. .khzl th {
  535. padding: 5px 8px 5px 0;
  536. text-align: right;
  537. width: 45%;
  538. font-weight: normal;
  539. border: 0;
  540. }
  541. .khzl tbody>tr>td,
  542. .khzl tbody>tr>th {
  543. border: 0;
  544. }
  545. .khzl tbody>tr>td input {
  546. border: 0;
  547. outline: none;
  548. background: #243747;
  549. padding-left: 5px;
  550. width: 100%;
  551. }
  552. .khbtn {
  553. /*background: #97a0a8;*/
  554. color: #1ab394;
  555. font-size: 14px;
  556. vertical-align: middle;
  557. }
  558. .hei-list {
  559. width: 400px;
  560. margin: 0 auto;
  561. }
  562. .heiTop {
  563. height: 35px;
  564. background: #1ab394;
  565. color: #fff;
  566. line-height: 35px;
  567. padding: 0 15px;
  568. border-top-left-radius: 3px;
  569. border-top-right-radius: 3px;
  570. }
  571. .heiTop .htl {
  572. float: left;
  573. margin: 0;
  574. }
  575. .heiTop .bacha {
  576. float: right;
  577. font-size: 18px;
  578. cursor: pointer;
  579. margin: 0;
  580. }
  581. .heiCon {
  582. width: 100%;
  583. background: #fff;
  584. text-align: center;
  585. padding: 25px 15px;
  586. height: auto;
  587. overflow-y: auto;
  588. border: 1px solid #eee;
  589. }
  590. #time-word {
  591. border: 1px solid #1ab394;
  592. padding: 5px 0 5px 10px;
  593. width: 120px;
  594. outline: none;
  595. color: #000;
  596. }
  597. .chooses {
  598. margin-top: 10px;
  599. }
  600. .btns {
  601. background: #00a1cb;
  602. color: #fff;
  603. padding: 10px 15px;
  604. outline: none;
  605. font-size: 14px;
  606. margin-left: 15px;
  607. border: 0;
  608. border-radius: 3px;
  609. box-sizing: border-box;
  610. }
  611. .bianji {
  612. display: inline-block;
  613. height: 16px;
  614. width: 16px;
  615. vertical-align: middle;
  616. margin-right: 5px;
  617. }
  618. .bianji.edi {
  619. background: url(img/xgai.png) no-repeat;
  620. }
  621. .bianji.sav {
  622. background: url(img/bbc.png) no-repeat;
  623. }
  624. .bianji.canc {
  625. background: url(img/quxi.png) no-repeat;
  626. }
  627. .t-shade {
  628. position: fixed;
  629. top: 0;
  630. left: 0;
  631. width: 100%;
  632. height: 100%;
  633. background: rgba(0, 0, 0, 0.48);
  634. z-index: 10004;
  635. display: none;
  636. }
  637. .shade_k {
  638. z-index: 10005;
  639. width: 40%;
  640. left: 30%;
  641. margin: 20% auto;
  642. position: absolute;
  643. background-color: #fff;
  644. box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3);
  645. border-radius: 5px;
  646. }
  647. .shade_title {
  648. padding: 0 80px 0 20px;
  649. height: 42px;
  650. line-height: 42px;
  651. border-bottom: 1px solid #eee;
  652. font-size: 16px;
  653. color: #ffffff;
  654. overflow: hidden;
  655. background-color: #00a1cb;
  656. border-radius: 2px 2px 0 0;
  657. position: relative;
  658. }
  659. .setwin {
  660. position: absolute;
  661. right: 15px;
  662. top: 5px;
  663. font-size: 20px;
  664. line-height: initial;
  665. }
  666. .setwin a {
  667. font-size: 20px;
  668. color: #fff;
  669. }
  670. .shade_content {
  671. overflow-y: auto;
  672. position: relative;
  673. padding-bottom: 50px;
  674. padding: 10px;
  675. }
  676. .wh_btn {
  677. width: 80%;
  678. text-align: center;
  679. padding-top: 20px;
  680. margin: 0 auto;
  681. margin-bottom: 20px;
  682. }
  683. .wh_btn input {
  684. padding: 7px 20px;
  685. color: #fff;
  686. border-radius: 5px;
  687. margin-right: 30px;
  688. border: 1px solid #999;
  689. border-color: rgb(26, 179, 148);
  690. }
  691. .sc_btn {
  692. color: rgb(255, 255, 255);
  693. font-size: 12px;
  694. margin-left: 15px;
  695. box-sizing: border-box;
  696. background: #00a1cb;
  697. padding: 6px 10px;
  698. outline: none;
  699. border-width: 0px;
  700. border-style: initial;
  701. border-color: initial;
  702. border-image: initial;
  703. border-radius: 3px;
  704. }
  705. .sc_btn:hover {
  706. color: #fff !important;
  707. }
  708. .cx {
  709. display: block;
  710. }
  711. .boxCon {
  712. width: 100%;
  713. background: #fff;
  714. text-align: center;
  715. padding: 10px 15px;
  716. height: auto;
  717. overflow-y: auto;
  718. }
  719. .Import {
  720. color: #fe6604;
  721. }
  722. .Hidens {
  723. display: none;
  724. }
  725. /*右下角消息弹框开始*/
  726. /*.rightDown_list .divider{
  727. height: 1px;
  728. margin: 9px 0;
  729. overflow: hidden;
  730. background-color: ;
  731. }*/
  732. .rightDown_list>li {
  733. border-bottom: 1px solid #e5e5e5;
  734. }
  735. .rightDown_list>li>a {
  736. border-radius: 3px;
  737. color: inherit;
  738. line-height: 25px;
  739. /*margin: 4px;*/
  740. text-align: left;
  741. font-weight: 400;
  742. padding: 3px 20px;
  743. min-height: 0;
  744. display: block;
  745. }
  746. .small-chat-box .content {
  747. padding: 5px 15px !important;
  748. }
  749. .small-chat-box {
  750. height: 400px;
  751. }
  752. /*右下角消息弹框结束*/
  753. /*来电类型样式*/
  754. .dicValueList span:nth-of-type(1) {
  755. line-height: 36px;
  756. }
  757. .dicValueList ul {
  758. list-style: none;
  759. margin: 0;
  760. padding: 0;
  761. }
  762. .dicValueList ul li {
  763. float: left;
  764. margin-right: 20px;
  765. text-align: center;
  766. padding: 6px 0;
  767. }
  768. .dicValueList li input {
  769. display: none;
  770. }
  771. .dicValueList li label {
  772. margin: 0;
  773. font-weight: normal;
  774. display: block;
  775. width: 100%;
  776. border: 1px solid #ccc;
  777. padding: 2px 10px;
  778. cursor: pointer;
  779. }
  780. .dicValueList .checkedDept {
  781. border-color: #fe6604;
  782. }
  783. .sele_send {
  784. cursor: pointer;
  785. }
  786. .reply,
  787. .sele_send {
  788. color: #337ab7;
  789. margin-left: 5px;
  790. }
  791. .reply:hover,
  792. .sele_send:hover {
  793. color: #23527c;
  794. }
  795. .chat_content {
  796. height: 45px;
  797. }
  798. .sidebar-container ul.nav-tabs {
  799. height: 41px;
  800. }
  801. /*.tab-content {
  802. height: calc(100% - 41px);
  803. overflow-y: auto;
  804. width: 100%;
  805. padding: 0 0 10px 0;
  806. }*/
  807. /*.layui-layer-content {
  808. box-shadow: 0 1px 3px rgba(0,0,0,.3);
  809. }*/
  810. .phoneBZ {
  811. display: inline-block;
  812. height: 15px;
  813. width: 15px;
  814. position: absolute;
  815. right: 0px;
  816. bottom: -15px;
  817. background: url(img/phoneBZ.png) no-repeat;
  818. display: none;
  819. }
  820. .open_chat {
  821. font-size: 14px;
  822. line-height: 18px;
  823. text-align: center;
  824. padding: 6px 5px;
  825. -webkit-box-sizing: border-box;
  826. -moz-box-sizing: border-box;
  827. box-sizing: border-box;
  828. position: fixed;
  829. top: 50%;
  830. right: 26px;
  831. z-index: 100;
  832. background: #0489ac;
  833. color: #fff;
  834. cursor: pointer;
  835. display: none;
  836. }
  837. .open_chat .before {
  838. position: absolute;
  839. padding: 5px;
  840. background: red;
  841. border-radius: 50%;
  842. display: none;
  843. right: -4px;
  844. top: -4px;
  845. }
  846. .open_chat .before.show {
  847. display: block !important;
  848. }
  849. .open_chat .before.hide {
  850. display: none !important;
  851. }
  852. .source_area input[type="text"] {
  853. width: 392px;
  854. }
  855. .source_area {
  856. position: relative;
  857. }
  858. .source_area img {
  859. display: inline;
  860. width: 15px;
  861. margin-left: 10px;
  862. margin-top: -5px;
  863. }
  864. /*转县级*/
  865. .hw_through p select {
  866. height: 19px;
  867. line-height: 19px;
  868. }
  869. .hw_through {
  870. position: relative;
  871. }
  872. .TurnXian {
  873. width: 24px;
  874. margin: 0 auto;
  875. }
  876. .navbar-top-links .TurnXian.active {
  877. background: url(img/through_xian.png) no-repeat 0 0 !important;
  878. background-size: 21px !important;
  879. }
  880. .TurnXian img {
  881. margin-top: 3px;
  882. width: 100%;
  883. }
  884. .turnSanjiao {
  885. position: absolute;
  886. bottom: 4px;
  887. left: 8px;
  888. width: 0px;
  889. height: 0px;
  890. border-left: 6px solid transparent;
  891. border-right: 6px solid transparent;
  892. border-top: 6px solid #ffffff;
  893. font-size: 0px;
  894. line-height: 0px;
  895. }
  896. .TurnXianDiv {
  897. width: 64px;
  898. position: absolute;
  899. right: -15px;
  900. top: 55px;
  901. text-align: center;
  902. background: #ffffff;
  903. border: 1px solid #cccccc;
  904. display: none;
  905. }
  906. .TurnXianDiv dl {
  907. margin: 0;
  908. }
  909. .TurnXianDiv dl dt {
  910. line-height: 30px;
  911. }
  912. .TurnXianDiv dl dt:hover {
  913. cursor: pointer;
  914. background: #048aad;
  915. color: #ffffff;
  916. }
  917. .mapPos {
  918. margin-top: 75px;
  919. margin-left: 83px;
  920. /*position: fixed;
  921. top: 0;
  922. left: 0;
  923. right: 0;
  924. bottom: 0;
  925. margin: auto;
  926. display: none;
  927. z-index: 3333;*/
  928. }
  929. /*.mapBJ{
  930. position: fixed;
  931. top: 0;
  932. left: 0;
  933. right: 0;
  934. bottom: 0;
  935. margin: auto;
  936. display: none;
  937. z-index: 333;
  938. background: #000000;
  939. filter:alpha(opacity=50);
  940. -moz-opacity:0.5;
  941. -khtml-opacity: 0.5;
  942. opacity: 0.5;
  943. }*/
  944. .reposit {
  945. -moz-border-radius: 20px;
  946. -webkit-border-radius: 20px;
  947. border-radius: 20px;
  948. position: absolute;
  949. background: #00a1cb;
  950. color: #ffffff;
  951. z-index: 2;
  952. width: 40px;
  953. height: 40px;
  954. line-height: 40px;
  955. text-align: center;
  956. right: 5px;
  957. top: 20px;
  958. cursor: pointer;
  959. }
  960. .repoConte {
  961. position: absolute;
  962. right: 60px;
  963. top: 35px;
  964. display: none;
  965. padding: 5px 10px;
  966. width: 1000px;
  967. height: 500px;
  968. border: 1px solid #e6e6e6;
  969. background: #ffffff;
  970. overflow-y: scroll;
  971. }
  972. .content {
  973. height: 450px !important;
  974. }
  975. .top_notices_num {
  976. color: #ff9800;
  977. position: absolute;
  978. right: 15px;
  979. top: -17px;
  980. }
  981. .top_notices_lists {
  982. position: absolute;
  983. top: 24px;
  984. background-color: #ecfeff;
  985. width: 310px;
  986. z-index: 1000;
  987. border-radius: 0;
  988. padding: 10px;
  989. border-radius: 2px;
  990. box-shadow: 0 0 3px rgba(86, 96, 117, 0.3);
  991. overflow-y: auto;
  992. max-height: 500px;
  993. display: none;
  994. }
  995. .top_notices_lists li span {
  996. color: #048aad;
  997. }
  998. .top_notices_con {
  999. display: inline-block;
  1000. float: left;
  1001. width: 200px;
  1002. height: 42px;
  1003. white-space: nowrap;
  1004. overflow: hidden;
  1005. text-overflow: ellipsis;
  1006. /*position: absolute;*/
  1007. }
  1008. .top_notices_con1 {
  1009. display: inline-block;
  1010. width: 100%;
  1011. /*height: 100%;*/
  1012. float: left;
  1013. /*text-align: center;*/
  1014. font-size: 14px;
  1015. }
  1016. .top_notices_item1 {
  1017. height: 100%;
  1018. font-size: 0px;
  1019. }
  1020. .btn-primary {
  1021. float: right;
  1022. }
  1023. .tan_ping {
  1024. overflow-y: auto;
  1025. /*max-height: 200px;*/
  1026. background-color: #ccc;
  1027. border-radius: 5px;
  1028. position: absolute;
  1029. bottom: 50px;
  1030. right: 80px;
  1031. z-index: 111;
  1032. width: 300px;
  1033. height: 150px;
  1034. display: none;
  1035. }
  1036. .last_li {
  1037. position: absolute;
  1038. bottom: 0;
  1039. width: 100%;
  1040. }
  1041. .news {
  1042. margin-top: 10px;
  1043. width: 100%;
  1044. height: 110px;
  1045. }
  1046. .tan_ping button {
  1047. background-color: #048aad;
  1048. margin: 5px;
  1049. cursor: pointer;
  1050. color: #fff;
  1051. text-align: center;
  1052. border: none;
  1053. border-radius: 5px;
  1054. }
  1055. #chuli {
  1056. float: right;
  1057. }
  1058. #top_notices_lists1 {
  1059. height: 100%;
  1060. }
  1061. .result_str {
  1062. display: block;
  1063. float: left;
  1064. text-align: center;
  1065. }
  1066. #result {
  1067. min-width: 370px;
  1068. min-height: 140px;
  1069. }
  1070. .operation_bj {
  1071. float: right;
  1072. }
  1073. #sourcearea {
  1074. display: inline-block;
  1075. width: 30%;
  1076. }
  1077. #sourceaddress {
  1078. display: inline-block;
  1079. width: 50%;
  1080. }
  1081. .reflectCategory-wrapper {
  1082. position: relative;
  1083. }
  1084. .reflectCategoryList-wrapper {
  1085. display: none;
  1086. position: absolute;
  1087. top: 38px;
  1088. z-index: 9999;
  1089. line-height: 32px;
  1090. background: #FFF;
  1091. }
  1092. #reflectCategoryList {
  1093. height: 240px;
  1094. background: #FFF;
  1095. border: 1px solid #e5e6e7;
  1096. overflow: auto;
  1097. }
  1098. #reflectCategoryList li {
  1099. padding: 0 10px;
  1100. width: 100%;
  1101. line-height: 32px;
  1102. }
  1103. #reflectCategoryList li:hover {
  1104. background: #00a1cb;
  1105. }
  1106. </style>
  1107. </head>
  1108. <body class="fixed-sidebar full-height-layout gray-bg" style="overflow: hidden">
  1109. <input type="hidden" id="PID" value="" />
  1110. <div id="wrapper">
  1111. <!--左侧导航开始-->
  1112. <nav class="navbar-default navbar-static-side" role="navigation">
  1113. <div class="nav-close">
  1114. <i class="fa fa-times-circle"></i>
  1115. </div>
  1116. <div class="sidebar-collapse">
  1117. <ul class="nav" id="side-menu">
  1118. <li class="nav-header">
  1119. <div class="dropdown profile-element text-center">
  1120. <span style="position: relative">
  1121. <img alt="image" class="img-circle yhtx" src="./img/zxPhone.png"
  1122. onerror="this.src = './img/zxPhone.png'" />
  1123. <input type="file" name="upFile" id="upFile" accept="image/jpeg,image/jpg,image/png"
  1124. style="display: none" />
  1125. <i class="phoneBZ"></i>
  1126. </span>
  1127. <a data-toggle="dropdown" class="dropdown-toggle" href="#">
  1128. <span class="clear">
  1129. <span class="block m-t-xs">
  1130. <b class="xian"></b>
  1131. <strong class="font-bold username">安阳</strong>
  1132. <span class="text-muted text-xs size-12 user_code" style="color: #fff"></span>
  1133. <b class="xian"></b>
  1134. </span>
  1135. <span class="text-muted text-xs block size-14">
  1136. <span class="text-muted text-xs group" style="color: #fff"></span>
  1137. <span class="text-muted text-xs rolename" style="color: #fff"></span>
  1138. <span class="text-muted text-xs deptname" style="color: #fff"></span>
  1139. </span>
  1140. <span class="text-muted text-xs block Gnumbox" style="color: #fff">
  1141. <span class="text-muted text-xs" style="color: #fff">分机号:</span>
  1142. <span class="text-muted text-xs Gnum" style="color: #fff"></span>
  1143. </span>
  1144. </span>
  1145. </a>
  1146. <input id="RoleCode" type="hidden" />
  1147. <input id="GroupCode" type="hidden" />
  1148. </div>
  1149. <div class="logo-element"></div>
  1150. </li>
  1151. </ul>
  1152. </div>
  1153. </nav>
  1154. <!--左侧导航结束-->
  1155. <!--右侧部分开始-->
  1156. <div id="page-wrapper" class="gray-bg dashbard-1">
  1157. <div class="row border-bottom">
  1158. <nav class="navbar navbar-static-top" role="navigation" style="margin-bottom: 0">
  1159. <div class="navbar-header">
  1160. <a class="navbar-minimalize minimalize-styl-2 btn btn-primary" href="#" style="float: left"><i
  1161. class="fa fa-bars"></i>
  1162. </a>
  1163. <div class="nav navbar-top-links navbar-left">
  1164. <ul class="title-box" id="top-search" style="
  1165. padding-left: 0;
  1166. display: none;
  1167. position: relative;
  1168. ">
  1169. <input type="hidden" id="isml" value="0" />
  1170. <li datafun="DropCall">
  1171. <i class="iconfont fa-5x DropCall"></i>
  1172. <p>挂断</p>
  1173. </li>
  1174. <li datafun="MakeCall">
  1175. <i class="iconfont fa-5x MakeCall"></i>
  1176. <p>外呼</p>
  1177. </li>
  1178. <li datafun="SayBusy">
  1179. <i class="iconfont fa-5x SayBusy"></i>
  1180. <p>置忙</p>
  1181. </li>
  1182. <li datafun="SayFree">
  1183. <i class="iconfont fa-5x SayFree"></i>
  1184. <p>置闲</p>
  1185. </li>
  1186. <li datafun="Meeting">
  1187. <i class="iconfont fa-5x Meeting"></i>
  1188. <p>多方通话</p>
  1189. </li>
  1190. <li datafun="MeetingTakeBack">
  1191. <i class="iconfont fa-5x MeetingTakeBack"></i>
  1192. <p>多方通话回签</p>
  1193. </li>
  1194. <li datafun="Transfer">
  1195. <i class="iconfont fa-5x Transfer"></i>
  1196. <p>转移</p>
  1197. </li>
  1198. <li datafun="Hold">
  1199. <i class="iconfont fa-5x Hold"></i>
  1200. <p>保持</p>
  1201. </li>
  1202. <li datafun="Retrieve">
  1203. <i class="iconfont fa-5x Retrieve"></i>
  1204. <p>接回</p>
  1205. </li>
  1206. <li datafun="satisfactionEvaluation">
  1207. <i class="iconfont fa-5x satisfactionEvaluation"></i>
  1208. <p>满意度</p>
  1209. </li>
  1210. <li datafun="Login">
  1211. <i class="iconfont fa-5x Login"></i>
  1212. <p>签入</p>
  1213. </li>
  1214. <li datafun="callOutLogin">
  1215. <i class="iconfont fa-5x callOutLogin"></i>
  1216. <p>外呼签入</p>
  1217. </li>
  1218. <li datafun="Logout">
  1219. <i class="iconfont fa-5x Logout"></i>
  1220. <p>签出</p>
  1221. </li>
  1222. <li datafun="Consult" class="db_show">
  1223. <i class="iconfont fa-5x Consult active"></i>
  1224. <p>协商呼叫</p>
  1225. </li>
  1226. <li datafun="ConfirmTransfer" class="db_show">
  1227. <i class="iconfont fa-5x ConfirmTransfer active"></i>
  1228. <p>确认转移</p>
  1229. </li>
  1230. <li datafun="CancelTransfer" class="db_show">
  1231. <i class="iconfont fa-5x CancelTransfer active"></i>
  1232. <p>取消转移</p>
  1233. </li>
  1234. <!-- <li datafun="TurnIvr" class="hw_show ">
  1235. <i class="iconfont fa-5x TurnIvr active"></i>
  1236. <p> 转导播组 </p>
  1237. </li>
  1238. <li datafun="TurnXian" class="hw_through " index="">
  1239. <i class="iconfont fa-5x TurnXian active"></i>
  1240. <p>转接</p>
  1241. <div class="turnSanjiao"></div>
  1242. </li>
  1243. <div class="TurnXianDiv">
  1244. <dl>
  1245. <dt>永城</dt>
  1246. <dt>柘城</dt>
  1247. <dt>睢县</dt>
  1248. <dt>夏邑</dt>
  1249. <dt>宁陵</dt>
  1250. <dt>民权</dt>
  1251. <dt>虞城</dt>
  1252. </dl>
  1253. </div> -->
  1254. </ul>
  1255. </div>
  1256. <div class="nav closed">
  1257. <!--左边-->
  1258. <div class="text-center max-box">
  1259. <ul class="fl maxOpen animated" style="display: none">
  1260. <li>
  1261. <h3 class="size-12 tkhmc">未知</h3>
  1262. <h3 class="size-12 ttsdh" style="margin-bottom: 0"></h3>
  1263. </li>
  1264. <li>
  1265. <div class="photo">
  1266. <img src="" alt="" />
  1267. </div>
  1268. </li>
  1269. </ul>
  1270. </div>
  1271. <div class="ls">
  1272. <!--<span class="size-12 tuBiao fa fa-file-text dropdown dclgd" title="工单消息" style="display:none;">
  1273. <span class="label label-warning xx_count"></span>
  1274. </span>-->
  1275. <!--顶部超期工单图标 暂时去掉
  1276. <span class="size-12 fa fa-clock-o surIcon cqgd" title="超期工单" style="display:none;">
  1277. <span class="label label-warning sur_count"></span>
  1278. </span>-->
  1279. <!--<span class="size-12 min-right" onclick="Jumps()">
  1280. <i class="ga"></i>&nbsp;管理中心
  1281. </span>-->
  1282. <span class="size-12 shezhi">
  1283. <i class="sz"></i>&nbsp;设置
  1284. </span>
  1285. <span class="size-12" onclick="logout()">
  1286. <i class="tc"></i>退出
  1287. </span>
  1288. <span class="size-12 fa fa-envelope chat" title="消息通讯">
  1289. <span class="label label-warning chat_count"></span>
  1290. </span>
  1291. <!-- <span class="size-12 min-right" onclick="showTopMsgs()" style="position: relative">
  1292. <span class="top_notices_num" id="top_notices_num">0</span>
  1293. <i class="top_icon ga"></i>&nbsp;&nbsp;&nbsp;&nbsp;消息
  1294. <ul class="top_notices_lists" id="top_notices_lists"></ul>
  1295. </span> -->
  1296. <ul class="dropdown-menu dropdown-alerts drm" style="display: none">
  1297. <!--<li><a href="">
  1298. <div class="tipCon">
  1299. 如果说你是冬日的烟火 华仪科技有限公司 你像遥远的泡沫
  1300. </div>
  1301. <div class="order_time clearfix">
  1302. <span class="work_order">
  1303. 订单号:201709228000006
  1304. </span>
  1305. <span class="ort">
  1306. 2017-02-04 14:00
  1307. </span>
  1308. </div>
  1309. </a></li>
  1310. <li class="divider"></li>
  1311. <li><a href="">消息2</a></li>
  1312. <li class="divider"></li>
  1313. <li><a href="">消息3</a></li>
  1314. <li><a href="">
  1315. <div class="order_time clearfix">
  1316. <span class="work_order">
  1317. 查看更多
  1318. </span>
  1319. <span class="ort">
  1320. >>
  1321. </span>
  1322. </div>
  1323. </a></li>-->
  1324. </ul>
  1325. </div>
  1326. </div>
  1327. </div>
  1328. </nav>
  1329. </div>
  1330. <div class="row content-tabs1">
  1331. <ul>
  1332. <li class="top1" style="width: 5%"></li>
  1333. <li class="top2" style="width: 8%"></li>
  1334. <li class="top3" style="width: 10%"></li>
  1335. <li class="top4" style="width: 13%"></li>
  1336. <li class="top5" style="width: 10%"></li>
  1337. <li class="top6" style="width: 5%"></li>
  1338. <li class="top7" style="width: 13%"></li>
  1339. <li class="top8" style="width: 10%"></li>
  1340. <li class="top9" style="width: 11.2%"></li>
  1341. <li class="top10" style="width: 6%"></li>
  1342. <li class="top11" style="width: 3%"></li>
  1343. <li class="top12" style="width: 5%"></li>
  1344. </ul>
  1345. </div>
  1346. <div class="row J_mainContent" id="content-main">
  1347. <iframe class="J_iframe" name="iframe0" width="100%" height="100%" src="widgets.html" frameborder="0"
  1348. data-id="index_v1.html" seamless></iframe>
  1349. </div>
  1350. <div class="row content-tabs1 LH">
  1351. <ul>
  1352. <li class="top13" style="width: 100%"></li>
  1353. </ul>
  1354. <span class="fr">Copyright © 安阳12345政务服务热线 All Rights
  1355. Reserved</span>
  1356. <ul class="zts" style="display: none">
  1357. <li>话机状态:</li>
  1358. <li class="quan fwzt lx"></li>
  1359. <li>坐席状态:</li>
  1360. <li class="quan zxzt lx"></li>
  1361. <li><span class="hwzt" style="color: red"></span></li>
  1362. <!--<li><span class="hxzt" style="color:red;"></span></li>-->
  1363. </ul>
  1364. </div>
  1365. </div>
  1366. <!--右侧边栏开始-->
  1367. <div id="right-sidebar">
  1368. <div class="sidebar-container">
  1369. <ul class="nav nav-tabs navs-3 right-tab">
  1370. <li class="active">
  1371. <a data-toggle="tab" href="#tab-1">
  1372. <!--<i class="fa fa-gear"></i>-->
  1373. 未读
  1374. </a>
  1375. </li>
  1376. <li class="">
  1377. <a data-toggle="tab" href="#tab-2"> 已读 </a>
  1378. </li>
  1379. <!--<li><a data-toggle="tab" href="#tab-3">
  1380. 全部
  1381. </a>
  1382. </li>-->
  1383. </ul>
  1384. <div class="tab-content">
  1385. <div id="tab-1" class="tab-pane active">
  1386. <div class="sidebar-title">
  1387. <h3>
  1388. <i class="fa fa-comments-o"></i> 未读消息
  1389. <small class="sele_send">发送消息</small>
  1390. </h3>
  1391. <small><i class="fa fa-tim"></i> 您当前有<span class="message_count"></span>条未读信息</small>
  1392. <a href="javaScript:;" class="readed">全部已读</a>
  1393. </div>
  1394. <div class="chat_box">
  1395. <!--<div class="sidebar-message">
  1396. <a href="#">
  1397. <div class="pull-left text-center">
  1398. <img alt="image" class="img-circle message-avatar" src="img/chat_pic.jpg">
  1399. <div class="m-t-xs"></div>
  1400. </div>
  1401. <div class="media-body">
  1402. <div class="chat_content">
  1403. 据天津日报报道:瑞海公司董事长于学伟
  1404. </div>
  1405. <small class="text-muted">今天 4:21</small>
  1406. <span class="reply">回复</span>
  1407. </div>
  1408. </a>
  1409. </div>-->
  1410. </div>
  1411. </div>
  1412. <div id="tab-2" class="tab-pane">
  1413. <div class="sidebar-title">
  1414. <h3>
  1415. <i class="fa fa-comments-o"></i> 已读消息
  1416. </h3>
  1417. <small>注: 显示最近50条已读</small>
  1418. </div>
  1419. <div class="chat_box">
  1420. <!--<div class="sidebar-message">
  1421. <a href="#">
  1422. <div class="pull-left text-center">
  1423. <img alt="image" class="img-circle message-avatar" src="img/chat_pic.jpg">
  1424. </div>
  1425. <div class="media-body">
  1426. <div class="chat_content">
  1427. 据天津日报报道:瑞海公司董事长于学伟
  1428. </div>
  1429. <small class="text-muted">今天 4:21</small>
  1430. <span class="reply">回复</span>
  1431. </div>
  1432. </a>
  1433. </div>
  1434. -->
  1435. </div>
  1436. </div>
  1437. </div>
  1438. </div>
  1439. </div>
  1440. <!--右侧边栏结束-->
  1441. </div>
  1442. <!--==========================================================================================-->
  1443. <!-- 弹屏状态 -->
  1444. <input id="bounceScreenStatus" type="hidden" />
  1445. <!--来电弹屏开始-->
  1446. <div class="ldtp-con clearfix animated fadeInDown">
  1447. <div class="minBacha clearfix">
  1448. <div class="minClosed">
  1449. <a href="javaScript:;" title="最小化"></a>
  1450. </div>
  1451. <div class="Bacha">
  1452. <a href="javaScript:;" title="关闭"></a>
  1453. </div>
  1454. </div>
  1455. <div class="hei-list">
  1456. <div class="heiTop clearFix">
  1457. <p class="htl">黑名单</p>
  1458. <p class="bacha" title="关闭">x</p>
  1459. </div>
  1460. <div class="heiCon">
  1461. <div class="heit">
  1462. <span style="font-size: 14px">输入拉黑时长:</span>
  1463. <input type="text" id="time-word" />
  1464. </div>
  1465. <div class="chooses">
  1466. <label class="radio-inline">
  1467. <input type="radio" name="time" value="1" checked="checked" style="margin-top: 3px" />
  1468. </label>
  1469. <label class="radio-inline">
  1470. <input type="radio" name="time" value="2" style="margin-top: 3px" />时
  1471. </label>
  1472. <label class="radio-inline">
  1473. <input type="radio" name="time" value="3" style="margin-top: 3px" />分
  1474. </label>
  1475. <label class="radio-inline">
  1476. <input type="radio" name="time" value="4" style="margin-top: 3px" />永久
  1477. </label>
  1478. </div>
  1479. <p style="margin-top: 15px">
  1480. <button id="bc" class="btns">保存</button>
  1481. </p>
  1482. </div>
  1483. </div>
  1484. <!--左侧内容-->
  1485. <div class="ldtp-cl col-sm-2" style="display: none;">
  1486. <div class="head-pic">
  1487. <div class="hp-box">
  1488. <img src="./img/txpic.png" alt="头像好像去了外星球!" style="width: 100%; height: 100%" />
  1489. <input type="hidden" class="hidTel" value="" />
  1490. <input type="hidden" class="hidCallID" value="" />
  1491. </div>
  1492. <ul>
  1493. <li>
  1494. <span style="font-size: 25px" class="tel"></span>
  1495. </li>
  1496. <li>
  1497. <span style="font-size: 20px" class="khgsd"></span>
  1498. </li>
  1499. <li style="color: #4cd964">
  1500. 当前通话时长:<span class="thsc">00:00</span>
  1501. </li>
  1502. <li class="lahei" style="display: none">
  1503. <div class="la-before">
  1504. <i class="push"></i> 移至黑名单
  1505. </div>
  1506. <div class="la-after" style="display: none">
  1507. <p class="la-time">
  1508. 拉黑时间:<span class="lhtime"></span>
  1509. </p>
  1510. <p class="la-shichang">
  1511. 拉黑截止时间:<span class="blackTime"></span>
  1512. </p>
  1513. </div>
  1514. <div class="retur" style="display: none">
  1515. <i class="qxlh"></i> 取消黑名单
  1516. </div>
  1517. </li>
  1518. <li class="td-call clearfix" style="display: none">
  1519. <a class="take" style="float: none" href="javascript:;" title="转满意度"><i></i></a>
  1520. </li>
  1521. </ul>
  1522. </div>
  1523. </div>
  1524. <!--右侧内容-->
  1525. <div class="ldtp-cr col-sm-12">
  1526. <!-- <ul class="ld-service clearfix">
  1527. <li style="border-bottom: 1px solid #243747" itemtype="0" class="cr-click">
  1528. 新增工单
  1529. </li>
  1530. <li style="border-bottom: 1px solid #243747" itemtype="1">
  1531. 历史记录
  1532. </li>
  1533. <li style="border-bottom: 1px solid #243747" itemtype="2">
  1534. 历史工单
  1535. </li>
  1536. </ul> -->
  1537. <div class="ld-sercon">
  1538. <div class="complain">
  1539. <div class="ld-sercon-con clearfix" style="position: relative;">
  1540. <div class="Pre-second second-con addgd" style="position: relative">
  1541. <div class="reposit">知</div>
  1542. <form>
  1543. <div class="form-group dicValueList clearfix" id="dicValueList">
  1544. <span class="col-sm-1 Import">
  1545. 来电类型:
  1546. </span>
  1547. <span class="col-sm-9">
  1548. <ul></ul>
  1549. </span>
  1550. <span class="col-sm-2">
  1551. <button id="hangUpEvaluation" class="btns" type="button">挂断评价</button>
  1552. </span>
  1553. </div>
  1554. <div id="dicForms">
  1555. <div class="form-group clearfix">
  1556. </div>
  1557. <div class="form-group clearfix">
  1558. <span class="col-sm-1 Import">标题:</span>
  1559. <span class="col-sm-11">
  1560. <input id="title" class="form-control" type="text"
  1561. style=" padding: 5px; width: 50%;" />
  1562. </span>
  1563. </div>
  1564. <div class="form-group clearfix">
  1565. <span class="col-sm-1 Import">内容:</span>
  1566. <span class="col-sm-11">
  1567. <textarea id="content" class="form-control" name="" rows="4" cols=""
  1568. style="width: 100%;"></textarea>
  1569. <!-- <input id="content" class="form-control" type="text"
  1570. style=" padding: 5px; width: 100%;" /> -->
  1571. </span>
  1572. </div>
  1573. <div class="form-group clearfix">
  1574. <span class="col-sm-1">
  1575. 处理方式:
  1576. </span>
  1577. <span class="col-sm-3">
  1578. <label style="font-weight: normal"><input class="radioStyle" type="radio"
  1579. name="banli" value="1" class="Nows" />当即处理</label>
  1580. <label style="font-weight: normal"><input class="radioStyle" type="radio"
  1581. name="banli" value="0" checked="checked" class="Nows" />网络转办</label>
  1582. <label style="font-weight: normal"><input id="threeWayCall"
  1583. class="radioStyle" type="checkbox" value="1" name=""
  1584. class="Nows_" />三方通话</label>
  1585. </span>
  1586. <span class="col-sm-1">
  1587. 来电号码密级:
  1588. </span>
  1589. <span class="col-sm-3">
  1590. <label style="font-weight: normal"><input class="radioStyle" type="radio"
  1591. name="mj" value="0" />普通</label>
  1592. <label style="font-weight: normal"><input class="radioStyle" type="radio"
  1593. name="mj" value="1" checked="checked" />保密</label>
  1594. </span>
  1595. </div>
  1596. <div class="form-group clearfix">
  1597. <span class="col-sm-1">
  1598. 来电人:
  1599. </span>
  1600. <span class="col-sm-2">
  1601. <input type="text" class="khmc form-control" id="cusname" />
  1602. </span>
  1603. <span class="col-sm-1">
  1604. 性别:
  1605. </span>
  1606. <span class="col-sm-2">
  1607. <select name="" id="" class="form-control">
  1608. <option value="0">
  1609. </option>
  1610. <option value="0">
  1611. </option>
  1612. </select>
  1613. </span>
  1614. <span class="col-sm-1 Import">
  1615. 来电号码:
  1616. </span>
  1617. <span class="col-sm-2">
  1618. <input type="text" class="tsdh form-control" id="cusphone" />
  1619. </span>
  1620. <span class="col-sm-1">
  1621. 类型:
  1622. </span>
  1623. <span class="col-sm-2">
  1624. <select name="" id="type" class="form-control">
  1625. <option value="咨询">
  1626. 咨询
  1627. </option>
  1628. <option value="投诉">
  1629. 投诉
  1630. </option>
  1631. <option value="求助">
  1632. 求助
  1633. </option>
  1634. <option value="建议">
  1635. 建议
  1636. </option>
  1637. <option value="其他">
  1638. 其他
  1639. </option>
  1640. </select>
  1641. </span>
  1642. </div>
  1643. <div class="form-group clearfix">
  1644. <span class="col-sm-1 Import">
  1645. 紧急程度:
  1646. </span>
  1647. <span class="col-sm-2">
  1648. <select name="" id="level" class="form-control">
  1649. <!--<option value="0">请选择</option>-->
  1650. <option value="1" selected="selected">
  1651. 普通
  1652. </option>
  1653. <option value="2">
  1654. 紧急
  1655. </option>
  1656. </select>
  1657. </span>
  1658. <span class="col-sm-1">
  1659. 回访方式:
  1660. </span>
  1661. <span class="col-sm-2">
  1662. <select name="" id="visittype" class="form-control">
  1663. <option value="0" selected="selected">
  1664. 正常回访
  1665. </option>
  1666. <option value="1">
  1667. 无需回访
  1668. </option>
  1669. </select>
  1670. </span>
  1671. <span class="col-sm-1">
  1672. 自动派单:
  1673. </span>
  1674. <span class="col-sm-2">
  1675. <select name="" id="automaticDispatch" class="form-control">
  1676. <option value="">请选择</option>
  1677. <option value="1">
  1678. </option>
  1679. <option value="">
  1680. </option>
  1681. </select>
  1682. </span>
  1683. </div>
  1684. <div class="form-group clearfix">
  1685. <span class="col-sm-1">
  1686. 反映类别:
  1687. </span>
  1688. <span class="col-sm-5">
  1689. <input type="text" id="reflectCategory" class="form-control"
  1690. autocomplete="off" />
  1691. <div class="reflectCategoryList-wrapper">
  1692. <ul id="reflectCategoryList">
  1693. </ul>
  1694. </div>
  1695. </span>
  1696. <!-- <span class="col-sm-1 Import">
  1697. 反映类别:
  1698. </span>
  1699. <span class="col-sm-3" style="position: relative">
  1700. <div class="inpBox">
  1701. <input type="text" class="inps" onkeyup="darptSearch()" />
  1702. <i class="Cleans fa fa-close"></i>
  1703. <i class="xl xl_one"></i>
  1704. <div class="addTree xlAdd">
  1705. <ul id="addTreeDemo" class="ztree"></ul>
  1706. </div>
  1707. </div>
  1708. <div class="selDpart1">
  1709. <ul id="sponsor"></ul>
  1710. </div>
  1711. </span> -->
  1712. <span class="col-sm-1 ">
  1713. 电话类别:
  1714. </span>
  1715. <span class="col-sm-5">
  1716. <select name="" id="phonetype" class="form-control">
  1717. <option value="">
  1718. 请选择
  1719. </option>
  1720. </select>
  1721. </span>
  1722. </div>
  1723. <div class="form-group clearfix">
  1724. </div>
  1725. <div class="form-group clearfix" style="text-align: center">
  1726. <!--<div class="bton addt_"><a>保存</a></div>-->
  1727. <a class="btns addt_">保存</a>
  1728. <a class="btns addts">保存并提交</a>
  1729. <!--<div class="bton addts">保存并提交</div>-->
  1730. </div>
  1731. <div class="form-group clearfix Hidens Nows_box">
  1732. <span class="col-sm-1">
  1733. 直办内容:
  1734. </span>
  1735. <span class="col-sm-11">
  1736. <textarea id="result" class="form-control" rows="3"></textarea>
  1737. </span>
  1738. </div>
  1739. <div class="form-group clearfix">
  1740. <span class="col-sm-1">
  1741. 事发区域:
  1742. </span>
  1743. <span class="col-sm-11 source_area">
  1744. <select name="sourcearea" id="sourcearea" class="form-control"
  1745. style="display: inline-block; width: 20%;">
  1746. <option value="0">
  1747. 请选择
  1748. </option>
  1749. <!-- <option value="0">
  1750. 安阳
  1751. </option> -->
  1752. </select>
  1753. <!--<img src="img/map_nav.png"/>-->
  1754. <input id="sourceaddress" type="text" placeholder="输入详细地址"
  1755. class="form-control" style="display: inline-block; width: 40%;" />
  1756. </span>
  1757. <div class="mapBJ" style="
  1758. width: 100%;
  1759. height: 100%;
  1760. "></div>
  1761. <div class="mapPos" style="
  1762. width: 710px;
  1763. height: 400px;
  1764. ">
  1765. <div id="myMap" style="
  1766. width: 710px;
  1767. height: 400px;
  1768. "></div>
  1769. <input type="hidden" class="store_Lng" value="114.352482" />
  1770. <input type="hidden" class="store_Lat" value="36.103442" />
  1771. </div>
  1772. </div>
  1773. </div>
  1774. </form>
  1775. </div>
  1776. <!--知识库内容-->
  1777. <div class="ldcr-bottom repoConte">
  1778. <div class="ldcrb-top clearfix">
  1779. <ul class="clearfix">
  1780. <li class="activity" style=" border-bottom: 1px solid #69cbd0;" data-type="1">
  1781. 政策专家
  1782. </li>
  1783. <li style="border-bottom:1px solid #f95a83;" data-type="2">
  1784. 办事指南
  1785. </li>
  1786. <li style="border-bottom:1px solid #69cbd0;" data-type="3">
  1787. 热点问题
  1788. </li>
  1789. <li style="border-bottom:1px solid #f95a83;" data-type="4">
  1790. 政策法规
  1791. </li>
  1792. <li style="border-bottom:1px solid #69cbd0;" data-type="5">
  1793. 名词解释
  1794. </li>
  1795. <li style="border-bottom:1px solid #f95a83;" data-type="6">
  1796. 部门职能
  1797. </li>
  1798. </ul>
  1799. <!-- <div class="ld-search">
  1800. <div class="sear-inp">
  1801. <input type="text" class="search" placeholder="搜索问题、内容或者标题" />
  1802. </div>
  1803. <div class="searIcon"></div>
  1804. </div> -->
  1805. </div>
  1806. <div class="detail-con">
  1807. <div class="tableWarpper1">
  1808. <table id="tableList1" data-row-style="rowStyle" data-query-params="queryParams"
  1809. data-pagination="true">
  1810. <thead>
  1811. <tr>
  1812. <th data-align="center" data-formatter="setCode">编号</th>
  1813. <th data-field="F_XingMing" data-align="center">专家姓名</th>
  1814. <th data-field="F_ShouJi" data-align="center">手机号码</th>
  1815. <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
  1816. <th data-field="F_FaBuDanWei" data-align="center">发布单位</th>
  1817. <th data-field="F_DianJiLiang" data-align="center">点击量</th>
  1818. <th data-align="center" data-formatter="operation1">操作</th>
  1819. </tr>
  1820. </thead>
  1821. <tbody id="tbody1"></tbody>
  1822. </table>
  1823. </div>
  1824. <div class="tableWarpper2">
  1825. <table id="tableList2" data-row-style="rowStyle" data-query-params="queryParams"
  1826. data-pagination="true">
  1827. <thead>
  1828. <tr>
  1829. <th data-align="center" data-formatter="setCode">编号</th>
  1830. <th data-field="F_FaBuDanWei" data-align="center">发布单位</th>
  1831. <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
  1832. <th data-field="F_YeWuMingCheng" data-align="center">业务名称</th>
  1833. <th data-field="F_BiaoShiBianMa" data-align="center">标识编码</th>
  1834. <th data-field="F_QiTaShuoMing" data-align="center">其他说明</th>
  1835. <th data-field="F_BanLiLiuCheng" data-align="center">办理流程</th>
  1836. <th data-field="F_BeiZhu" data-align="center">备注</th>
  1837. <th data-field="F_DianJiLiang" data-align="center">点击量</th>
  1838. <th data-align="center" data-formatter="operation2">操作</th>
  1839. </tr>
  1840. </thead>
  1841. <tbody id="tbody2"></tbody>
  1842. </table>
  1843. </div>
  1844. <div class="tableWarpper3">
  1845. <table id="tableList3" data-row-style="rowStyle" data-query-params="queryParams"
  1846. data-pagination="true">
  1847. <thead>
  1848. <tr>
  1849. <th data-align="center" data-formatter="setCode">编号</th>
  1850. <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
  1851. <th data-field="F_FaWenWenHao" data-align="center">发文文号</th>
  1852. <th data-field="F_FaWenDanWei" data-align="center">发文单位</th>
  1853. <th data-field="F_BiaoShiBianMa" data-align="center">标识编码</th>
  1854. <th data-field="F_ZhengCeMingCi" data-align="center">政策名称</th>
  1855. <th data-field="F_ReDianWenTi" data-align="center">热点问题/名词解释</th>
  1856. <th data-field="F_WenTiJieDa" data-align="center">内容解答</th>
  1857. <th data-field="F_DianJiLiang" data-align="center">点击量</th>
  1858. <th data-align="center" data-formatter="operation3">操作</th>
  1859. </tr>
  1860. </thead>
  1861. <tbody id="tbody3"></tbody>
  1862. </table>
  1863. </div>
  1864. <div class="tableWarpper4">
  1865. <table id="tableList4" data-row-style="rowStyle" data-query-params="queryParams"
  1866. data-pagination="true">
  1867. <thead>
  1868. <tr>
  1869. <th data-align="center" data-formatter="setCode">编号</th>
  1870. <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
  1871. <th data-field="F_FaWenWenHao" data-align="center">发文文号</th>
  1872. <th data-field="F_FaWenDanWei" data-align="center">发文单位</th>
  1873. <th data-field="F_ZhiNengBuMen" data-align="center">职能部门</th>
  1874. <th data-field="F_BiaoShiBianMa" data-align="center">标识编码</th>
  1875. <th data-field="F_WenJianMingCheng" data-align="center">文件名称</th>
  1876. <th data-field="F_WenJianNeiRong" data-align="center">文件内容</th>
  1877. <th data-field="F_DianJiLiang" data-align="center">点击量</th>
  1878. <th data-align="center" data-formatter="operation4">操作</th>
  1879. </tr>
  1880. </thead>
  1881. <tbody id="tbody4"></tbody>
  1882. </table>
  1883. </div>
  1884. <div class="tableWarpper5">
  1885. <table id="tableList5" data-row-style="rowStyle" data-query-params="queryParams"
  1886. data-pagination="true">
  1887. <thead>
  1888. <tr>
  1889. <th data-align="center" data-formatter="setCode">编号</th>
  1890. <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
  1891. <th data-field="F_FaWenWenHao" data-align="center">发文文号</th>
  1892. <th data-field="F_FaWenDanWei" data-align="center">发文单位</th>
  1893. <th data-field="F_BiaoShiBianMa" data-align="center">标识编码</th>
  1894. <th data-field="F_ZhengCeMingCi" data-align="center">政策名称</th>
  1895. <th data-field="F_ReDianWenTi" data-align="center">热点问题/名词解释</th>
  1896. <th data-field="F_WenTiJieDa" data-align="center">内容解答</th>
  1897. <th data-field="F_DianJiLiang" data-align="center">点击量</th>
  1898. <th data-align="center" data-formatter="operation5">操作</th>
  1899. </tr>
  1900. </thead>
  1901. <tbody id="tbody5"></tbody>
  1902. </table>
  1903. </div>
  1904. <div class="tableWarpper6">
  1905. <table id="tableList6" data-row-style="rowStyle" data-query-params="queryParams"
  1906. data-pagination="true">
  1907. <thead>
  1908. <tr>
  1909. <th data-align="center" data-formatter="setCode">编号</th>
  1910. <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
  1911. <th data-field="F_FaWenWenHao" data-align="center">发文文号</th>
  1912. <th data-field="F_FaWenDanWei" data-align="center">发文单位</th>
  1913. <th data-field="F_ZhiNengBuMen" data-align="center">职能部门</th>
  1914. <th data-field="F_BiaoShiBianMa" data-align="center">标识编码</th>
  1915. <th data-field="F_WenJianMingCheng" data-align="center">文件名称</th>
  1916. <th data-field="F_WenJianNeiRong" data-align="center">文件内容</th>
  1917. <th data-field="F_DianJiLiang" data-align="center">点击量</th>
  1918. <th data-align="center" data-formatter="operation6">操作</th>
  1919. </tr>
  1920. </thead>
  1921. <tbody id="tbody6"></tbody>
  1922. </table>
  1923. </div>
  1924. <!-- <ul></ul> -->
  1925. </div>
  1926. </div>
  1927. </div>
  1928. </div>
  1929. <div class="complain">
  1930. <div class="ld-sercon-con clearfix second-con">
  1931. <div><span class="callPopupTitle">历史记录</span></div>
  1932. <div class="Ps-chaxun">
  1933. <span>查询:
  1934. <input type="text" id="old_startTime" class="laydate-icon" />&nbsp;——&nbsp;<input
  1935. type="text" id="old_endTime" class="laydate-icon" /></span>
  1936. <span class="searchbtn"></span>
  1937. </div>
  1938. <div class="table-responsive col-sm-12 tbold">
  1939. <table id="oldlist" data-row-style="rowStyle" data-query-params="queryParams"
  1940. data-pagination="true">
  1941. <thead>
  1942. <tr>
  1943. <th data-field="CallNumber">
  1944. 电话号码
  1945. </th>
  1946. <th data-field="CallState" data-formatter="GetCallState">
  1947. 呼叫状态
  1948. </th>
  1949. <th data-field="TypeName">
  1950. 通话类型
  1951. </th>
  1952. <th data-field="UserCode">
  1953. 坐席工号
  1954. </th>
  1955. <th data-field="UserName">
  1956. 坐席姓名
  1957. </th>
  1958. <th data-field="TalkStartTime">
  1959. 通话开始时间
  1960. </th>
  1961. <th data-field="TalkEndTime">
  1962. 通话结束时间
  1963. </th>
  1964. <th data-field="TalkLongTime" data-formatter="ftime">
  1965. 通话时长
  1966. </th>
  1967. <th data-field="FilePath" data-formatter="setCode">
  1968. 录音
  1969. </th>
  1970. </tr>
  1971. </thead>
  1972. <tbody class="list"></tbody>
  1973. </table>
  1974. </div>
  1975. </div>
  1976. </div>
  1977. <div class="complain">
  1978. <div class="ld-sercon-con clearfix second-con">
  1979. <div><span class="callPopupTitle">历史工单</span></div>
  1980. <div class="Ps-chaxun">
  1981. <span>查询:
  1982. <input type="text" id="con_startTime" class="laydate-icon" />&nbsp;——&nbsp;<input
  1983. type="text" id="con_endTime" class="laydate-icon" /></span>
  1984. <span class="searchbtn"></span>
  1985. </div>
  1986. <div class="table-responsive col-sm-12 tbold">
  1987. <table id="orderlist" data-row-style="rowStyle" data-query-params="queryParams"
  1988. data-pagination="true">
  1989. <thead>
  1990. <tr>
  1991. <th data-field="F_WorkOrderId" data-formatter="GetLink">
  1992. 工单编号
  1993. </th>
  1994. <th data-field="F_CreateTime">
  1995. 创建时间
  1996. </th>
  1997. <!-- <th data-field="UserName">
  1998. 创建人
  1999. </th>
  2000. <th data-field="SourceName">
  2001. 信息来源
  2002. </th>
  2003. <th data-field="TypeName">
  2004. 信息类别
  2005. </th> -->
  2006. <th data-field="F_ComContent" data-formatter="GetCont">
  2007. 工单内容
  2008. </th>
  2009. <th data-field="F_Result" data-formatter="formatterResult">
  2010. 处理内容
  2011. </th>
  2012. <th data-field="DeptName">
  2013. 承办单位
  2014. </th>
  2015. <!-- <th data-field="OtherDeptName">
  2016. 协办单位
  2017. </th> -->
  2018. <th data-field="WorkStateName">
  2019. 工单状态
  2020. </th>
  2021. <th data-field="FilePath" data-formatter="setCode">
  2022. 录音文件
  2023. </th>
  2024. <!-- <th data-formatter="setReminder">
  2025. 操作
  2026. </th> -->
  2027. </tr>
  2028. </thead>
  2029. <tbody class="list"></tbody>
  2030. </table>
  2031. </div>
  2032. </div>
  2033. </div>
  2034. </div>
  2035. </div>
  2036. </div>
  2037. <!--来电弹屏结束-->
  2038. <!--外呼键盘-->
  2039. <div class="WH animated fadeInDown hidens">
  2040. <!--top-->
  2041. <div class="clearflow Color">
  2042. <div class="WH-top">
  2043. <span>外呼信息</span>
  2044. <span class="closes"><a>X</a></span>
  2045. </div>
  2046. <div class="Cotent_box clearflow">
  2047. <!--左边键盘-->
  2048. <div class="KeyWord col-sm-4">
  2049. <div class="WH_input clearflow">
  2050. <div class="clearflow WH_Itop">
  2051. <input id="Result" type="text" class="fl" value="" maxlength="18" autofocus="autofocus" />
  2052. <input id="hidwhtype" type="hidden" value="" />
  2053. <i class="img fl hidens"></i>
  2054. </div>
  2055. </div>
  2056. <div class="Num_box clearflow">
  2057. <ul class="Num_ul clearflow">
  2058. <li>
  2059. <div>
  2060. <a>1</a>
  2061. </div>
  2062. </li>
  2063. <li>
  2064. <div>
  2065. <a>2</a>
  2066. </div>
  2067. </li>
  2068. <li>
  2069. <div>
  2070. <a>3</a>
  2071. </div>
  2072. </li>
  2073. <li>
  2074. <div>
  2075. <a>4</a>
  2076. </div>
  2077. </li>
  2078. <li>
  2079. <div>
  2080. <a>5</a>
  2081. </div>
  2082. </li>
  2083. <li>
  2084. <div>
  2085. <a>6</a>
  2086. </div>
  2087. </li>
  2088. <li>
  2089. <div>
  2090. <a>7</a>
  2091. </div>
  2092. </li>
  2093. <li>
  2094. <div>
  2095. <a>8</a>
  2096. </div>
  2097. </li>
  2098. <li>
  2099. <div>
  2100. <a>9</a>
  2101. </div>
  2102. </li>
  2103. <li>
  2104. <div>
  2105. <a>*</a>
  2106. </div>
  2107. </li>
  2108. <li>
  2109. <div>
  2110. <a>0</a>
  2111. </div>
  2112. </li>
  2113. <li>
  2114. <div>
  2115. <a>#</a>
  2116. </div>
  2117. </li>
  2118. <li class="Last_phone">
  2119. <div>
  2120. <a class="CallOut"></a>
  2121. </div>
  2122. </li>
  2123. </ul>
  2124. </div>
  2125. </div>
  2126. <!--右边图表-->
  2127. <div class="col-sm-8 Rbg">
  2128. <div class="bg bg_cotent">
  2129. <ul class="bg_title clearflow">
  2130. <li class="lactive" itemid="0">最近电话</li>
  2131. <li itemid="1">公司电话</li>
  2132. <li itemid="2">来电人电话</li>
  2133. <li itemid="3">坐席列表</li>
  2134. </ul>
  2135. <div class="bg_box phonediv">
  2136. <div class="cx">
  2137. <span class="blanks">电话号码:<input type="text" id="lastphone" /></span>
  2138. <span class="ty">搜索</span>
  2139. <!--<span class="ty">重置</span>-->
  2140. </div>
  2141. <div class="phone_bg" style="width: 100%; padding: 10px">
  2142. <table class="phonelist" data-row-style="rowStyle" data-query-params="queryParams"
  2143. data-pagination="true">
  2144. <thead>
  2145. <tr>
  2146. <th data-field="CallNumber" data-formatter="view">
  2147. 电话号码
  2148. </th>
  2149. <th data-field="CallState" data-formatter="GetCallState">
  2150. 呼叫状态
  2151. </th>
  2152. <!--<th data-field="IsDeal" data-formatter="GetDealState">是否处理</th>-->
  2153. <th data-field="UserCode">
  2154. 坐席工号
  2155. </th>
  2156. <th data-field="UserName">
  2157. 坐席姓名
  2158. </th>
  2159. <th data-field="TalkStartTime">
  2160. 通话开始时间
  2161. </th>
  2162. <th data-field="TalkEndTime">
  2163. 通话结束时间
  2164. </th>
  2165. <th data-field="TalkLongTime">
  2166. 通话时长(s)
  2167. </th>
  2168. <!--<th data-field="FilePath">录音</th>-->
  2169. </tr>
  2170. </thead>
  2171. </table>
  2172. </div>
  2173. </div>
  2174. <div class="bg_box phonediv" style="display: none">
  2175. <div class="cx">
  2176. <span class="blanks">
  2177. 电话号码:
  2178. <input type="text" id="gsphone" />
  2179. </span>
  2180. <span class="blanks">
  2181. 名称:
  2182. <input type="text" id="gsname" />
  2183. </span>
  2184. <span class="ty">搜索</span>
  2185. <!--<span class="ty">重置</span>-->
  2186. </div>
  2187. <div class="phone_bg" style="width: 100%; padding: 10px">
  2188. <table class="phonelist" data-row-style="rowStyle" data-query-params="queryParams"
  2189. data-pagination="true">
  2190. <thead>
  2191. <tr>
  2192. <th data-field="F_UserCode">
  2193. 坐席工号
  2194. </th>
  2195. <th data-field="F_UserName">
  2196. 坐席姓名
  2197. </th>
  2198. <!--<th data-field="F_WorkNumber" data-formatter="view">分机号</th>-->
  2199. <th data-field="F_Telephone" data-formatter="view">
  2200. 电话号码1
  2201. </th>
  2202. <th data-field="F_Mobile" data-formatter="view">
  2203. 电话号码2
  2204. </th>
  2205. <th data-field="F_HomePhone" data-formatter="view">
  2206. 电话号码3
  2207. </th>
  2208. </tr>
  2209. </thead>
  2210. </table>
  2211. </div>
  2212. </div>
  2213. <div class="bg_box phonediv" style="display: none">
  2214. <div class="cx">
  2215. <span class="blanks">
  2216. 电话号码:
  2217. <input type="text" id="khphone" />
  2218. </span>
  2219. <span class="blanks">
  2220. 名称:
  2221. <input type="text" id="khname" />
  2222. </span>
  2223. <span class="ty">搜索</span>
  2224. <!--<span class="ty">重置</span>-->
  2225. </div>
  2226. <div class="phone_bg" style="width: 100%; padding: 10px">
  2227. <table class="phonelist" data-row-style="rowStyle" data-query-params="queryParams"
  2228. data-pagination="true">
  2229. <thead>
  2230. <tr>
  2231. <th data-field="F_CustomerName">
  2232. 名称
  2233. </th>
  2234. <th data-field="F_Telephone" data-formatter="view">
  2235. 电话号码1
  2236. </th>
  2237. <th data-field="F_Mobile" data-formatter="view">
  2238. 电话号码2
  2239. </th>
  2240. <th data-field="F_ChargeTelephone" data-formatter="view">
  2241. 电话号码3
  2242. </th>
  2243. </tr>
  2244. </thead>
  2245. </table>
  2246. </div>
  2247. </div>
  2248. <div class="bg_box phonediv" style="display: none">
  2249. <table class="table" id="zxTable">
  2250. <thead>
  2251. <tr>
  2252. <!-- <th>姓名</th> -->
  2253. <th>工号</th>
  2254. <th>分机号</th>
  2255. <th>状态</th>
  2256. </tr>
  2257. </thead>
  2258. <tbody></tbody>
  2259. </table>
  2260. </div>
  2261. </div>
  2262. </div>
  2263. </div>
  2264. </div>
  2265. </div>
  2266. <!--下载框-->
  2267. <div class="t-shade">
  2268. <div class="shade_k">
  2269. <div class="shade_title">
  2270. <span>录音播放<srong class="cknum"></srong></span>
  2271. <span class="setwin"><a>x</a></span>
  2272. </div>
  2273. <div class="shade_content">
  2274. <div class="Ly_box audiojs"></div>
  2275. <div class="boxCon LY_box"></div>
  2276. </div>
  2277. </div>
  2278. </div>
  2279. <!--修改密码开始-->
  2280. <div class="personalMask"></div>
  2281. <div class="personal" id="box">
  2282. <div class="ptop clearFix">
  2283. <p class="ptl">个人中心</p>
  2284. <p class="ptr" title="关闭">x</p>
  2285. </div>
  2286. <div class="perBox">
  2287. <ul class="perTab clearFix">
  2288. <li class="sel">个人资料</li>
  2289. <li>修改头像</li>
  2290. </ul>
  2291. <div class="perTab_con">
  2292. <div class="geRen" style="display: block">
  2293. <div class="grt clearFix">
  2294. <p class="grtl">基本资料</p>
  2295. <p class="grtr">
  2296. <i class="grqx" title="取消编辑"></i>
  2297. <i class="grbj" title="编辑资料"></i>
  2298. </p>
  2299. </div>
  2300. <table class="table grzl">
  2301. <tr>
  2302. <th>我的工号:</th>
  2303. <td>
  2304. <input type="text" class="mgh" readonly="readonly" />
  2305. </td>
  2306. </tr>
  2307. <tr>
  2308. <th>我的姓名:</th>
  2309. <td>
  2310. <input type="text" class="mn zhidu" readonly="readonly" />
  2311. </td>
  2312. <!-- <td>
  2313. <input type="text" class="mn" readonly="readonly" />
  2314. </td> -->
  2315. </tr>
  2316. <tr>
  2317. <th>原密码:</th>
  2318. <td>
  2319. <input type="password" class="spwd zhidu" />
  2320. </td>
  2321. </tr>
  2322. <tr>
  2323. <th>新密码:</th>
  2324. <td>
  2325. <input type="password" class="npwd zhidu" />
  2326. </td>
  2327. </tr>
  2328. <tr>
  2329. <th>确认密码:</th>
  2330. <td>
  2331. <input type="password" class="epwd zhidu" /><span class="wrong">*密码不一致</span>
  2332. </td>
  2333. </tr>
  2334. <!-- <tr>
  2335. <th>姓名:</th>
  2336. <td>
  2337. <input type="text" class="settingName zhidu" readonly="readonly" />
  2338. </td>
  2339. </tr> -->
  2340. <tr>
  2341. <th>单位:</th>
  2342. <td>
  2343. <input type="text" class="settingCompany zhidu" readonly="readonly" />
  2344. </td>
  2345. </tr>
  2346. <tr>
  2347. <th>科室:</th>
  2348. <td>
  2349. <input type="text" class="settingDepartment zhidu" readonly="readonly" />
  2350. </td>
  2351. </tr>
  2352. <tr>
  2353. <th>职务:</th>
  2354. <td>
  2355. <input type="text" class="settingPost zhidu" readonly="readonly" />
  2356. </td>
  2357. </tr>
  2358. <tr>
  2359. <th>手机号码:</th>
  2360. <td>
  2361. <input type="text" class="settingMobile zhidu" readonly="readonly" />
  2362. <button class="btnn btnVerificationCode">获取验证码</button>
  2363. </td>
  2364. </tr>
  2365. <tr>
  2366. <th></th>
  2367. <td>
  2368. <span class="verificationCodeTips" style="display: none;">请稍后再次获取</span>
  2369. </td>
  2370. </tr>
  2371. <tr>
  2372. <th>办公电话:</th>
  2373. <td>
  2374. <input type="text" class="settingTelephone zhidu" readonly="readonly" />
  2375. </td>
  2376. </tr>
  2377. <tr>
  2378. <th>验证码:</th>
  2379. <td>
  2380. <input type="text" class="settingCode zhidu" readonly="readonly" />
  2381. </td>
  2382. </tr>
  2383. <tr>
  2384. <th></th>
  2385. <td>
  2386. <button class="btnn grbtn">保存修改</button>
  2387. </td>
  2388. </tr>
  2389. </table>
  2390. </div>
  2391. <div class="crop">
  2392. <div class="clearFix" style="margin-top: 45px">
  2393. <div class="crop_left">
  2394. <div class="image-crop">
  2395. <img src="./img/gaga.jpg" />
  2396. </div>
  2397. </div>
  2398. <div class="crop_right">
  2399. <h4>图片预览:</h4>
  2400. <div class="img-preview img-preview-sm"></div>
  2401. </div>
  2402. </div>
  2403. <div class="anniu" style="margin-top: 75px; text-align: center">
  2404. <label title="上传图片" for="inputImage" class="btnn" style="margin-right: 100px">
  2405. <input type="file" accept="image/jpeg,image/jpg,image/png" name="file" id="inputImage"
  2406. class="hide" />
  2407. 本地上传
  2408. </label>
  2409. <button class="btnn" id="zoomIn" type="button">
  2410. 放大
  2411. </button>
  2412. <button class="btnn" id="zoomOut" type="button">
  2413. 缩小
  2414. </button>
  2415. <button class="btnn" id="rotateLeft" type="button">
  2416. 左旋转
  2417. </button>
  2418. <button class="btnn" id="rotateRight" type="button">
  2419. 右旋转
  2420. </button>
  2421. <button class="btnn" id="setDrag" type="button">
  2422. 确定保存
  2423. </button>
  2424. </div>
  2425. </div>
  2426. </div>
  2427. </div>
  2428. </div>
  2429. <!--修改密码结束-->
  2430. <input type="hidden" class="mid" />
  2431. <!--右下角消息弹出开始-->
  2432. <div class="small-chat-box fadeInRight animated" style="height: 450px">
  2433. <div class="heading" draggable="true">
  2434. <!--<small class="chat-date pull-right">
  2435. 2017.10.26
  2436. </small> -->
  2437. 我的任务
  2438. </div>
  2439. <div class="content">
  2440. <ul class="rightDown_list"></ul>
  2441. </div>
  2442. </div>
  2443. <!-- <div id="small-chat">
  2444. <span class="badge badge-warning pull-right messageTotal"></span>
  2445. <a class="open-small-chat">
  2446. <i class="fa fa-comments"></i>
  2447. </a>
  2448. </div> -->
  2449. <!--右下角消息弹出结束-->
  2450. <!-- <div class="open_chat">
  2451. <div class="before"></div>
  2452. <i class="iconfont">&#xe669;</i>
  2453. <p style="margin: 0">客服</p>
  2454. </div> -->
  2455. <!--在线客服开始-->
  2456. <div id="chat">
  2457. <!--<div class="chat_left">
  2458. <ul>
  2459. <li IsToAll="0" RoleId="" RoleCode="" UserId="0">
  2460. <p class="chat_name">坐席</p>
  2461. </li>
  2462. </ul>
  2463. </div>-->
  2464. <div class="chat_sidebar">
  2465. <div class="pic_card">
  2466. <div class="chat_sidebar_head">
  2467. <img class="ver_middle" src="img/kefuTx.png" alt="" width="40" height="40" />
  2468. <p class="chat_name chat_username">Coffce</p>
  2469. </div>
  2470. <!--<div class="chat_sidebar_foot">
  2471. <input type="text" class="sidebar_foot_seach" placeholder="search user..." />
  2472. </div>-->
  2473. </div>
  2474. <div class="chat_sidebar_list">
  2475. <ul class="sidebar_list">
  2476. <!--<li class="actives">
  2477. <img class="ver_middle" src="img/chat_list1.png" alt="" width="30" height="30" />
  2478. <p class="chat_name">技术-小白</p>
  2479. <i class="fa fa-remove closeds"></i>
  2480. </li>
  2481. <li>
  2482. <img class="ver_middle" src="img/chat_list2.jpg" alt="" width="30" height="30" />
  2483. <p class="chat_name">WebPack</p>
  2484. </li>-->
  2485. </ul>
  2486. </div>
  2487. </div>
  2488. <div class="chat_main">
  2489. <!--<div class="chat_person disnone">
  2490. <p class="chat_name"></p>
  2491. </div>-->
  2492. <div class="tabMain">
  2493. <div class="main_message">
  2494. <ul class="chatlist_con">
  2495. <!--<a href="javascript:void(0)" class="more" onclick="getmore()"><i class="fa fa-clock-o" style="margin-right: 5px;"></i>查看更多信息</a>
  2496. <li>
  2497. <p class="message_time "><span>10:00</span></p>
  2498. <div class="message_mincon ">
  2499. <img class="ver_middle " src="img/chat_list1.png " alt=" " width="30 " height="30 "/>
  2500. <div class="message_text ">
  2501. Hello,这是一个基于Vue + Webpack构建的简单chat示例,聊天记录保存在localStorge。简单演示了Vue的基础特性和webpack配置。
  2502. </div>
  2503. </div>
  2504. </li>
  2505. <li>
  2506. <p class="message_time "><span>10:00</span></p>
  2507. <div class="message_mincon self ">
  2508. <img class="ver_middle " src="img/chat_pic.jpg " alt=" " width="30 " height="30 "/>
  2509. <div class="message_text ">我知道吖</div>
  2510. </div>
  2511. </li>-->
  2512. </ul>
  2513. </div>
  2514. <div class="main_sendMessage">
  2515. <textarea name=" " rows=" " cols=" " placeholder="按Enter 发送 " class="send_content"></textarea>
  2516. <div class="send_btn">
  2517. <button class="sendTo" onclick="sendinfo() ">
  2518. 发送(S)
  2519. </button>
  2520. <span style="color: red" class="error"></span>
  2521. </div>
  2522. </div>
  2523. </div>
  2524. </div>
  2525. <input type="hidden " class="hidnum" />
  2526. </div>
  2527. <!--在线客服结束-->
  2528. <input type="hidden" id="cqorder" />
  2529. <!--弹框提示-->
  2530. <div class="tan_ping">
  2531. <ul class="rightDown_list1">
  2532. <!--<li style="text-align: center;">消息提醒</li>-->
  2533. <li class="news">
  2534. <ul id="top_notices_lists1"></ul>
  2535. </li>
  2536. <li class="last_li">
  2537. <button id="know">知道了</button>
  2538. <button id="chuli">立即处理</button>
  2539. </li>
  2540. </ul>
  2541. </div>
  2542. <script src="https://api.map.baidu.com/api?v=2.0&ak=ZG4gLQZUD6Eq1K11cqlYAR4by8CKgLyu&callback=mapinit"></script>
  2543. <script src="./js/layui/layui.js"></script>
  2544. <script src="./js/plugins/cropper/cropper.min.js"></script>
  2545. <script src="./js/bootstrap-select.js"></script>
  2546. <script src="./js/jquery.md5.js"></script>
  2547. <script src="./css/laydate/laydate.js"></script>
  2548. <script src="./js/guid.js"></script>
  2549. <script src="./js/websocket/swfobject.js?v=2.0"></script>
  2550. <script src="./js/websocket/web_socket.js?v=2.0"></script>
  2551. <script src="./js/main.js?v=2.0"></script>
  2552. <script src="./js/chat.js"></script>
  2553. <script src="./js/index.js?v=2.0"></script>
  2554. <script src="./js/appeal/mapIndex.js"></script>
  2555. <script src="./js/plugins/metisMenu/jquery.metisMenu.js"></script>
  2556. <script src="./js/plugins/slimscroll/jquery.slimscroll.min.js"></script>
  2557. <script src="./js/hplus.min.js?v=4.1.0"></script>
  2558. <script src="./js/contabs.min.js"></script>
  2559. <script src="./js/zTree/jquery.ztree.core.js"></script>
  2560. <script src="./js/ztreeSelect.js"></script>
  2561. </body>
  2562. </html>