Brak opisu

home.html 94KB

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