Brak opisu

home.html 95KB

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