Нет описания

index.html 85KB

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