| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="renderer" content="webkit" />
- <meta http-equiv="Cache-Control" content="no-siteapp" />
- <title>安阳政务服务热线后台业务管理系统</title>
- <script src="./Script/Common/huayi.load.js"></script>
- <script src="./Script/Common/huayi.config.js"></script>
- <link rel="shortcut icon" href="img/32.ico" />
- <link href="./css/wh.css" rel="stylesheet" />
- <link href="./css/plugins/iCheck/custom.css" rel="stylesheet" />
- <link rel="stylesheet" href="./css/call.css" />
- <link rel="stylesheet" href="./css/personal.css" />
- <link href="./css/plugins/cropper/cropper.min.css" rel="stylesheet" />
- <link href="./css/plugins/jasny/jasny-bootstrap.min.css" rel="stylesheet" />
- <link rel="stylesheet" href="./css/chat.css" />
- <link rel="stylesheet" href="./js/zTree/zTreeStyle.css" />
- <link rel="stylesheet" href="./css/addappeal.css" />
- <style>
- @font-face {
- font-family: "iconfont";
- src: url("./fonts/iconfont.eot");
- /* IE9*/
- src: url("./fonts/iconfont.eot?#iefix") format("embedded-opentype"),
- /* IE6-IE8 */
- url("./fonts/iconfont.woff") format("woff"),
- /* chrome、firefox */
- url("./fonts/iconfont.ttf") format("truetype"),
- /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
- url("./fonts/iconfont.svg#iconfont") format("svg");
- /* iOS 4.1- */
- }
- body {
- font-family: "微软雅黑";
- }
- ul li {
- list-style: none;
- overflow: hidden;
- }
- .iconfont {
- font-family: "iconfont";
- font-style: normal;
- color: #ffffff;
- }
- .fr {
- float: right;
- }
- .fl {
- float: left;
- }
- .size-12 {
- font-size: 12px;
- }
- .title-box {
- margin-top: 5px;
- }
- .title-box li {
- margin-left: 30px;
- }
- .title-box li:hover {
- cursor: pointer;
- }
- .HoverColor {
- color: #f8ac59;
- }
- .FailureColor {
- color: #f95f5e;
- }
- .navbar-header {
- width: 100%;
- background-color: #048aad;
- padding-top: 10px;
- }
- .title-box li p {
- color: #ffffff;
- font-size: 14px;
- font-weight: bold;
- letter-spacing: 2px;
- margin-top: 5px;
- }
- .size-14 {
- font-size: 14px;
- color: #ffffff !important;
- }
- .img-circle {
- width: 58px;
- }
- .xian {
- border: 1px solid #ffffff;
- display: inline-block;
- width: 15%;
- margin: 5px;
- }
- .ss {
- margin-left: 20px;
- }
- .fe-3 {
- font-size: 3em;
- }
- .title-box p {
- text-align: center;
- }
- .closed {
- display: inline-block;
- /* margin-left: 5%;*/
- cursor: pointer;
- color: #ffffff;
- float: right;
- margin-right: 5%;
- height: 42px;
- line-height: 42px;
- }
- .closed div {
- overflow: hidden;
- float: left;
- height: 100%;
- }
- .closed ul {
- margin-bottom: 0px;
- }
- .closed li {
- float: left;
- margin-right: 20px;
- }
- .closed i {
- display: inline-block;
- background: url(./img/chilun.png) no-repeat;
- margin-right: 5px;
- width: 14px;
- height: 16px;
- vertical-align: middle;
- }
- .ga {
- background-position: 0 0 !important;
- }
- .sz {
- background-position: 0 -15px !important;
- }
- .tc {
- background-position: 0 -33px !important;
- }
- .zhuangtai {
- display: block;
- width: 30%;
- margin-left: 10px;
- font-size: 14px;
- font-weight: 800;
- }
- .wq {
- color: #f95f5e;
- }
- #top-search li:hover {
- color: #eaeaea;
- }
- .content-tabs1 ul {
- padding-left: 0;
- }
- .content-tabs1 li {
- list-style: none;
- float: left;
- height: 5px;
- }
- .top1 {
- background-color: #68adfe;
- }
- .top2 {
- background-color: #9897f0;
- }
- .top3 {
- background-color: #87eebf;
- }
- .top4 {
- background-color: #68b0fe;
- }
- .top5 {
- background-color: #f95a83;
- }
- .top6 {
- background-color: #eb76dd;
- }
- .top7 {
- background-color: #69cbd0;
- }
- .top8 {
- background-color: #69cbd0;
- }
- .top9 {
- background-color: #aaf58d;
- }
- .top10 {
- background-color: #f76a53;
- }
- .top11 {
- background-color: #eb76dd;
- }
- .top12 {
- background-color: #6c77da;
- }
- .top13 {
- background: -webkit-linear-gradient(left, #f073db, #65abfc);
- background: -moz-linear-gradient(left, #f073db, #65abfc);
- background: -o-linear-gradient(left, #f073db, #65abfc);
- background: -webkit-gradient(linear, 100% 0, 0 0, from(#65abfc), to(#f073db));
- background: linear-gradient(left, #f073db, #65abfc);
- /* Opera 11.1 - 12.0 */
- /* Firefox 3.6 - 15 */
- /* 标准的语法 */
- }
- .zts {
- height: 30px;
- margin-left: 2%;
- line-height: 30px;
- padding-top: 15px;
- }
- .zts li {
- height: 20px;
- line-height: 20px;
- font-weight: bold;
- letter-spacing: 2px;
- }
- .quan {
- width: 15px;
- height: 15px !important;
- border-radius: 50%;
- margin-right: 2%;
- margin-left: 5px;
- margin-top: 2px;
- }
- .lx {
- background: #6a6d69;
- }
- .br {
- background: red;
- }
- .bl {
- background: #7ab85b;
- }
- .by {
- background: yellow;
- }
- .LH {
- line-height: 35px;
- }
- .zts span {
- line-height: 20px;
- margin-right: 50px;
- font-size: 12px;
- }
- .photo {
- width: 40px;
- height: 40px;
- border-width: 2px;
- border-style: solid;
- border-radius: 50%;
- border-color: #ffb400 #fc3c04 #fdfc01 #00e3c0;
- margin-bottom: 1px;
- }
- .photo img {
- display: block;
- width: 100%;
- height: 100%;
- }
- .ls {
- /*margin-left: 20px;*/
- text-align: center;
- overflow: initial !important;
- position: relative;
- }
- .ls .dropdown-menu {
- top: 115%;
- left: -100%;
- width: 320px;
- background: rgba(0, 160, 205, 0.92);
- }
- .ls .dropdown-menu li {
- float: initial;
- margin-right: 0;
- line-height: 25px;
- }
- .dropdown-menu>li>a {
- margin: 0;
- color: #fff;
- /*color: #555;*/
- padding: 0;
- /*text-align: center;*/
- }
- .dropdown-menu>li>a:focus,
- .dropdown-menu>li>a:hover {
- color: #fff;
- text-decoration: none;
- background-color: #00a1cb;
- }
- .dropdown-menu>li>a div {
- float: initial;
- }
- .dropdown-menu>li>a .tipCon {
- width: 100%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .dropdown-menu>li>a .order_time span {
- display: inline-block;
- margin: 0;
- }
- .order_time span.work_order {
- float: left;
- }
- .order_time span.ort {
- float: right;
- }
- .ls span {
- margin-right: 18px;
- }
- .ls span.tuBiao,
- .ls span.chat,
- .ls span.surIcon {
- display: inline-block;
- /*width: 16px;
- height: 16px;
- background: url(img/files.png) no-repeat;*/
- vertical-align: middle;
- position: relative;
- font-size: 15px;
- }
- .ls span.chat.come_mess {
- color: red;
- }
- .ls span.surIcon {
- font-size: 18px;
- }
- .ls span.tuBiao span,
- .ls span.chat span,
- .ls span.surIcon span {
- position: absolute;
- padding: 3px;
- top: -13px;
- }
- .min-right {
- margin-right: 10px;
- }
- .navbar-top-links i {
- width: 24px;
- height: 21px;
- display: block;
- background: url(./img/topIcon.png) no-repeat;
- background-position: center center;
- margin: 0 auto;
- }
- /*挂断*/
- .DropCall {
- background-position: 0px 0 !important;
- }
- /*外呼*/
- .MakeCall {
- background-position: 0px -20px !important;
- }
- /*置忙*/
- .SayBusy {
- background-position: 0px -42px !important;
- }
- /*置闲*/
- .SayFree {
- background-position: 0px -65px !important;
- }
- /*多方通话*/
- .Meeting {
- background-position: 0px -85px !important;
- }
- /*多方通话回签*/
- .MeetingTakeBack {
- background-position: 0px -85px !important;
- }
- /*转移*/
- .Transfer {
- background-position: 0px -108px !important;
- }
- /*保持*/
- .Hold {
- background-position: 0px -131px !important;
- }
- /*接回*/
- .Retrieve {
- background-position: 0px -153px !important;
- }
- /*签入*/
- .Login {
- background-position: 0px -197px !important;
- }
- /*签出*/
- .Logout {
- background-position: 0px -175px !important;
- }
- /*协商呼叫 */
- .Consult {
- background: url(img/new_xshj.png) no-repeat 0 0 !important;
- }
- .navbar-top-links .Consult.active {
- background: url(img/new_xshj2.png) no-repeat 0 0 !important;
- }
- /*确认转移 */
- .ConfirmTransfer {
- background: url(img/new_qrzy.png) no-repeat 0 0 !important;
- }
- .navbar-top-links .ConfirmTransfer.active {
- background: url(img/new_qrzy2.png) no-repeat 0 0 !important;
- }
- /*取消转移 */
- .CancelTransfer {
- background: url(img/new_qxzy.png) no-repeat 0 0 !important;
- }
- .navbar-top-links .CancelTransfer.active {
- background: url(img/new_qxzy2.png) no-repeat 0 0 !important;
- }
- /*转IVR */
- .TurnIvr {
- background: url(img/IVR.png) no-repeat 0 0 !important;
- }
- .navbar-top-links .TurnIvr.active {
- background: url(img/IVR2.png) no-repeat 0 0 !important;
- }
- .navbar-top-links .active {
- background-position-x: -23px !important;
- }
- .ldcr-bottom .detail-con ul li .active a {
- color: #f95a83 !important;
- }
- .ldcr-bottom .detail-con ul li .active em {
- color: #f95a83 !important;
- }
- .ldcr-bottom .detail-con ul li .active+.explancon {
- display: block !important;
- }
- .searchbtn {
- width: 2.5em;
- height: 24px;
- border-radius: 5px;
- position: absolute;
- background-color: #01a1cb;
- background-image: url(./img/searIcon.png);
- background-repeat: no-repeat;
- background-position: center center;
- cursor: pointer;
- }
- .max-box {
- height: 42px;
- /*width: 100%;*/
- }
- .laydate_body .laydate_bottom,
- .laydate_body .laydate_top {
- height: 31px !important;
- }
- .laydate_body .laydate_y .laydate_yms ul li {
- width: 59px !important;
- }
- .col-sm-1 {
- padding-right: 0;
- line-height: 22px;
- text-align: center;
- font-size: 10px;
- }
- ul.ztree {
- border: 1px solid #617775;
- background: #f0f6e4;
- overflow-y: scroll;
- overflow-x: auto;
- }
- .minBacha {
- position: absolute;
- top: 0;
- right: 80px;
- z-index: 10;
- overflow: hidden;
- }
- .minBacha>div {
- float: left;
- height: 35px;
- width: 35px;
- margin-left: 2px;
- }
- .minBacha>div a {
- display: block;
- height: 100%;
- width: 100%;
- text-align: center;
- background-position: center center;
- background-color: #2f4050;
- opacity: 0.5;
- }
- .minBacha>div a:hover {
- opacity: 1;
- }
- .minClosed>a {
- background: url("./img/min.png") no-repeat;
- }
- .Bacha>a {
- background: url("./img/gb.png") no-repeat;
- }
- .lblcount {
- position: absolute;
- right: 5px;
- top: 7px;
- }
- .first {
- z-index: 1000;
- }
- .khzl {
- font-size: 12px;
- border: 0;
- width: 80%;
- margin: 35px auto;
- color: #fff;
- }
- .khzl tr {
- border: 0;
- }
- .khzl th {
- padding: 5px 8px 5px 0;
- text-align: right;
- width: 45%;
- font-weight: normal;
- border: 0;
- }
- .khzl tbody>tr>td,
- .khzl tbody>tr>th {
- border: 0;
- }
- .khzl tbody>tr>td input {
- border: 0;
- outline: none;
- background: #243747;
- padding-left: 5px;
- width: 100%;
- }
- .khbtn {
- /*background: #97a0a8;*/
- color: #1ab394;
- font-size: 14px;
- vertical-align: middle;
- }
- .hei-list {
- width: 400px;
- margin: 0 auto;
- }
- .heiTop {
- height: 35px;
- background: #1ab394;
- color: #fff;
- line-height: 35px;
- padding: 0 15px;
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
- }
- .heiTop .htl {
- float: left;
- margin: 0;
- }
- .heiTop .bacha {
- float: right;
- font-size: 18px;
- cursor: pointer;
- margin: 0;
- }
- .heiCon {
- width: 100%;
- background: #fff;
- text-align: center;
- padding: 25px 15px;
- height: auto;
- overflow-y: auto;
- border: 1px solid #eee;
- }
- #time-word {
- border: 1px solid #1ab394;
- padding: 5px 0 5px 10px;
- width: 120px;
- outline: none;
- color: #000;
- }
- .chooses {
- margin-top: 10px;
- }
- .btns {
- background: #00a1cb;
- color: #fff;
- padding: 3px 10px;
- outline: none;
- font-size: 12px;
- margin-left: 15px;
- border: 0;
- border-radius: 3px;
- box-sizing: border-box;
- }
- .bianji {
- display: inline-block;
- height: 16px;
- width: 16px;
- vertical-align: middle;
- margin-right: 5px;
- }
- .bianji.edi {
- background: url(img/xgai.png) no-repeat;
- }
- .bianji.sav {
- background: url(img/bbc.png) no-repeat;
- }
- .bianji.canc {
- background: url(img/quxi.png) no-repeat;
- }
- .t-shade {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.48);
- z-index: 10004;
- display: none;
- }
- .shade_k {
- z-index: 10005;
- width: 40%;
- left: 30%;
- margin: 20% auto;
- position: absolute;
- background-color: #fff;
- box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3);
- border-radius: 5px;
- }
- .shade_title {
- padding: 0 80px 0 20px;
- height: 42px;
- line-height: 42px;
- border-bottom: 1px solid #eee;
- font-size: 16px;
- color: #ffffff;
- overflow: hidden;
- background-color: #00a1cb;
- border-radius: 2px 2px 0 0;
- position: relative;
- }
- .setwin {
- position: absolute;
- right: 15px;
- top: 5px;
- font-size: 20px;
- line-height: initial;
- }
- .setwin a {
- font-size: 20px;
- color: #fff;
- }
- .shade_content {
- overflow-y: auto;
- position: relative;
- padding-bottom: 50px;
- padding: 10px;
- }
- .wh_btn {
- width: 80%;
- text-align: center;
- padding-top: 20px;
- margin: 0 auto;
- margin-bottom: 20px;
- }
- .wh_btn input {
- padding: 7px 20px;
- color: #fff;
- border-radius: 5px;
- margin-right: 30px;
- border: 1px solid #999;
- border-color: rgb(26, 179, 148);
- }
- .sc_btn {
- color: rgb(255, 255, 255);
- font-size: 12px;
- margin-left: 15px;
- box-sizing: border-box;
- background: #00a1cb;
- padding: 6px 10px;
- outline: none;
- border-width: 0px;
- border-style: initial;
- border-color: initial;
- border-image: initial;
- border-radius: 3px;
- }
- .sc_btn:hover {
- color: #fff !important;
- }
- .cx {
- display: block;
- }
- .boxCon {
- width: 100%;
- background: #fff;
- text-align: center;
- padding: 10px 15px;
- height: auto;
- overflow-y: auto;
- }
- .Import {
- color: #fe6604;
- }
- .Hidens {
- display: none;
- }
- /*右下角消息弹框开始*/
- /*.rightDown_list .divider{
- height: 1px;
- margin: 9px 0;
- overflow: hidden;
- background-color: ;
- }*/
- .rightDown_list>li {
- border-bottom: 1px solid #e5e5e5;
- }
- .rightDown_list>li>a {
- border-radius: 3px;
- color: inherit;
- line-height: 25px;
- /*margin: 4px;*/
- text-align: left;
- font-weight: 400;
- padding: 3px 20px;
- min-height: 0;
- display: block;
- }
- .small-chat-box .content {
- padding: 5px 15px !important;
- }
- .small-chat-box {
- height: 400px;
- }
- /*右下角消息弹框结束*/
- /*来电类型样式*/
- .dicValueList span:nth-of-type(1) {
- line-height: 36px;
- }
- .dicValueList ul {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .dicValueList ul li {
- float: left;
- margin-right: 20px;
- text-align: center;
- padding: 6px 0;
- }
- .dicValueList li input {
- display: none;
- }
- .dicValueList li label {
- margin: 0;
- font-weight: normal;
- display: block;
- width: 100%;
- border: 1px solid #ccc;
- padding: 2px 10px;
- cursor: pointer;
- }
- .dicValueList .checkedDept {
- border-color: #fe6604;
- }
- .sele_send {
- cursor: pointer;
- }
- .reply,
- .sele_send {
- color: #337ab7;
- margin-left: 5px;
- }
- .reply:hover,
- .sele_send:hover {
- color: #23527c;
- }
- .chat_content {
- height: 45px;
- }
- .sidebar-container ul.nav-tabs {
- height: 41px;
- }
- /*.tab-content {
- height: calc(100% - 41px);
- overflow-y: auto;
- width: 100%;
- padding: 0 0 10px 0;
- }*/
- /*.layui-layer-content {
- box-shadow: 0 1px 3px rgba(0,0,0,.3);
- }*/
- .phoneBZ {
- display: inline-block;
- height: 15px;
- width: 15px;
- position: absolute;
- right: 0px;
- bottom: -15px;
- background: url(img/phoneBZ.png) no-repeat;
- display: none;
- }
- .open_chat {
- font-size: 14px;
- line-height: 18px;
- text-align: center;
- padding: 6px 5px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- position: fixed;
- top: 50%;
- right: 26px;
- z-index: 100;
- background: #0489ac;
- color: #fff;
- cursor: pointer;
- display: none;
- }
- .open_chat .before {
- position: absolute;
- padding: 5px;
- background: red;
- border-radius: 50%;
- display: none;
- right: -4px;
- top: -4px;
- }
- .open_chat .before.show {
- display: block !important;
- }
- .open_chat .before.hide {
- display: none !important;
- }
- .source_area select[name="sourcearea"] {
- margin-bottom: 10px;
- }
- .source_area input[type="text"] {
- width: 392px;
- }
- .source_area {
- position: relative;
- }
- .source_area img {
- display: inline;
- width: 15px;
- margin-left: 10px;
- margin-top: -5px;
- }
- /*转县级*/
- .hw_through p select {
- height: 19px;
- line-height: 19px;
- }
- .hw_through {
- position: relative;
- }
- .TurnXian {
- width: 24px;
- margin: 0 auto;
- }
- .navbar-top-links .TurnXian.active {
- background: url(img/through_xian.png) no-repeat 0 0 !important;
- background-size: 21px !important;
- }
- .TurnXian img {
- margin-top: 3px;
- width: 100%;
- }
- .turnSanjiao {
- position: absolute;
- bottom: 4px;
- left: 8px;
- width: 0px;
- height: 0px;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-top: 6px solid #ffffff;
- font-size: 0px;
- line-height: 0px;
- }
- .TurnXianDiv {
- width: 64px;
- position: absolute;
- right: -15px;
- top: 55px;
- text-align: center;
- background: #ffffff;
- border: 1px solid #cccccc;
- display: none;
- }
- .TurnXianDiv dl {
- margin: 0;
- }
- .TurnXianDiv dl dt {
- line-height: 30px;
- }
- .TurnXianDiv dl dt:hover {
- cursor: pointer;
- background: #048aad;
- color: #ffffff;
- }
- .mapPos {
- margin-top: 75px;
- margin-left: 83px;
- /*position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- margin: auto;
- display: none;
- z-index: 3333;*/
- }
- /*.mapBJ{
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- margin: auto;
- display: none;
- z-index: 333;
- background: #000000;
- filter:alpha(opacity=50);
- -moz-opacity:0.5;
- -khtml-opacity: 0.5;
- opacity: 0.5;
- }*/
- .reposit {
- -moz-border-radius: 20px;
- -webkit-border-radius: 20px;
- border-radius: 20px;
- position: absolute;
- background: #00a1cb;
- color: #ffffff;
- z-index: 2;
- width: 40px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- right: 5px;
- top: 20px;
- cursor: pointer;
- }
- .repoConte {
- position: absolute;
- right: 60px;
- top: 73px;
- display: none;
- width: 800px;
- background: #ffffff;
- height: 300px;
- overflow-y: scroll;
- }
- .content {
- height: 450px !important;
- }
- .top_notices_num {
- color: #ff9800;
- position: absolute;
- right: 15px;
- top: -17px;
- }
- .top_notices_lists {
- position: absolute;
- top: 24px;
- background-color: #ecfeff;
- width: 310px;
- z-index: 1000;
- border-radius: 0;
- padding: 10px;
- border-radius: 2px;
- box-shadow: 0 0 3px rgba(86, 96, 117, 0.3);
- overflow-y: auto;
- max-height: 500px;
- display: none;
- }
- .top_notices_lists li span {
- color: #048aad;
- }
- .top_notices_con {
- display: inline-block;
- width: 200px;
- height: 42px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- float: left;
- /*position: absolute;*/
- }
- .top_notices_con1 {
- display: inline-block;
- width: 100%;
- /*height: 100%;*/
- float: left;
- /*text-align: center;*/
- font-size: 14px;
- }
- .top_notices_item1 {
- height: 100%;
- font-size: 0px;
- }
- .btn-primary {
- float: right;
- }
- .tan_ping {
- overflow-y: auto;
- /*max-height: 200px;*/
- background-color: #ccc;
- border-radius: 5px;
- position: absolute;
- bottom: 50px;
- right: 80px;
- z-index: 111;
- width: 300px;
- height: 150px;
- display: none;
- }
- .last_li {
- position: absolute;
- bottom: 0;
- width: 100%;
- }
- .news {
- margin-top: 10px;
- width: 100%;
- height: 110px;
- }
- .tan_ping button {
- background-color: #048aad;
- margin: 5px;
- cursor: pointer;
- color: #fff;
- text-align: center;
- border: none;
- border-radius: 5px;
- }
- #chuli {
- float: right;
- }
- #top_notices_lists1 {
- height: 100%;
- }
- .result_str {
- display: block;
- float: left;
- text-align: center;
- }
- #result {
- min-width: 370px;
- min-height: 140px;
- }
- .operation_bj {
- float: right;
- }
- </style>
- </head>
- <body class="fixed-sidebar full-height-layout gray-bg" style="overflow: hidden">
- <input type="hidden" id="PID" value="" />
- <div id="wrapper">
- <!--左侧导航开始-->
- <nav class="navbar-default navbar-static-side" role="navigation">
- <div class="nav-close">
- <i class="fa fa-times-circle"></i>
- </div>
- <div class="sidebar-collapse">
- <ul class="nav" id="side-menu">
- <li class="nav-header">
- <div class="dropdown profile-element text-center">
- <span style="position: relative">
- <img alt="image" class="img-circle yhtx" src="./img/zxPhone.png"
- onerror="this.src = './img/zxPhone.png'" />
- <input type="file" name="upFile" id="upFile" accept="image/jpeg,image/jpg,image/png"
- style="display: none" />
- <i class="phoneBZ"></i>
- </span>
- <a data-toggle="dropdown" class="dropdown-toggle" href="#">
- <span class="clear">
- <span class="block m-t-xs">
- <b class="xian"></b>
- <strong class="font-bold username">安阳</strong>
- <span class="text-muted text-xs size-12 user_code" style="color: #fff"></span>
- <b class="xian"></b>
- </span>
- <span class="text-muted text-xs block size-14">
- <span class="text-muted text-xs group" style="color: #fff"></span>
- <span class="text-muted text-xs rolename" style="color: #fff"></span>
- <span class="text-muted text-xs deptname" style="color: #fff"></span>
- </span>
- <span class="text-muted text-xs block Gnumbox" style="color: #fff">
- <span class="text-muted text-xs" style="color: #fff">分机号:</span>
- <span class="text-muted text-xs Gnum" style="color: #fff"></span>
- </span>
- </span>
- </a>
- <input id="RoleCode" type="hidden" />
- <input id="GroupCode" type="hidden" />
- </div>
- <div class="logo-element"></div>
- </li>
- </ul>
- </div>
- </nav>
- <!--左侧导航结束-->
- <!--右侧部分开始-->
- <div id="page-wrapper" class="gray-bg dashbard-1">
- <div class="row border-bottom">
- <nav class="navbar navbar-static-top" role="navigation" style="margin-bottom: 0">
- <div class="navbar-header">
- <a class="navbar-minimalize minimalize-styl-2 btn btn-primary" href="#" style="float: left"><i
- class="fa fa-bars"></i>
- </a>
- <div class="nav navbar-top-links navbar-left">
- <ul class="title-box" id="top-search" style="
- padding-left: 0;
- display: none;
- position: relative;
- ">
- <input type="hidden" id="isml" value="0" />
- <li datafun="DropCall">
- <i class="iconfont fa-5x DropCall"></i>
- <p>挂断</p>
- </li>
- <li datafun="MakeCall">
- <i class="iconfont fa-5x MakeCall"></i>
- <p>外呼</p>
- </li>
- <li datafun="SayBusy">
- <i class="iconfont fa-5x SayBusy"></i>
- <p>置忙</p>
- </li>
- <li datafun="SayFree">
- <i class="iconfont fa-5x SayFree"></i>
- <p>置闲</p>
- </li>
- <li datafun="Meeting">
- <i class="iconfont fa-5x Meeting"></i>
- <p>多方通话</p>
- </li>
- <!-- <li datafun="MeetingTakeBack">
- <i class="iconfont fa-5x MeetingTakeBack"></i>
- <p>多方通话回签</p>
- </li> -->
- <li datafun="Transfer">
- <i class="iconfont fa-5x Transfer"></i>
- <p>转移</p>
- </li>
- <li datafun="Hold">
- <i class="iconfont fa-5x Hold"></i>
- <p>保持</p>
- </li>
- <li datafun="Retrieve">
- <i class="iconfont fa-5x Retrieve"></i>
- <p>接回</p>
- </li>
- <li datafun="Login">
- <i class="iconfont fa-5x Login"></i>
- <p>签入</p>
- </li>
- <li datafun="Logout">
- <i class="iconfont fa-5x Logout"></i>
- <p>签出</p>
- </li>
- <li datafun="Consult" class="db_show">
- <i class="iconfont fa-5x Consult active"></i>
- <p>协商呼叫</p>
- </li>
- <li datafun="ConfirmTransfer" class="db_show">
- <i class="iconfont fa-5x ConfirmTransfer active"></i>
- <p>确认转移</p>
- </li>
- <li datafun="CancelTransfer" class="db_show">
- <i class="iconfont fa-5x CancelTransfer active"></i>
- <p>取消转移</p>
- </li>
- <!-- <li datafun="TurnIvr" class="hw_show ">
- <i class="iconfont fa-5x TurnIvr active"></i>
- <p> 转导播组 </p>
- </li>
- <li datafun="TurnXian" class="hw_through " index="">
- <i class="iconfont fa-5x TurnXian active"></i>
- <p>转接</p>
- <div class="turnSanjiao"></div>
- </li>
- <div class="TurnXianDiv">
- <dl>
- <dt>永城</dt>
- <dt>柘城</dt>
- <dt>睢县</dt>
- <dt>夏邑</dt>
- <dt>宁陵</dt>
- <dt>民权</dt>
- <dt>虞城</dt>
- </dl>
- </div> -->
- </ul>
- </div>
- <div class="nav closed">
- <!--左边-->
- <div class="text-center max-box">
- <ul class="fl maxOpen animated" style="display: none">
- <li>
- <h3 class="size-12 tkhmc">未知</h3>
- <h3 class="size-12 ttsdh" style="margin-bottom: 0"></h3>
- </li>
- <li>
- <div class="photo">
- <img src="" alt="" />
- </div>
- </li>
- </ul>
- </div>
- <div class="ls">
- <!--<span class="size-12 tuBiao fa fa-file-text dropdown dclgd" title="工单消息" style="display:none;">
- <span class="label label-warning xx_count"></span>
- </span>-->
- <!--顶部超期工单图标 暂时去掉
- <span class="size-12 fa fa-clock-o surIcon cqgd" title="超期工单" style="display:none;">
- <span class="label label-warning sur_count"></span>
- </span>-->
- <!--<span class="size-12 min-right" onclick="Jumps()">
- <i class="ga"></i> 管理中心
- </span>-->
- <span class="size-12 shezhi">
- <i class="sz"></i> 设置
- </span>
- <span class="size-12" onclick="logout()">
- <i class="tc"></i>退出
- </span>
- <span class="size-12 fa fa-envelope chat" title="消息通讯">
- <span class="label label-warning chat_count"></span>
- </span>
- <!-- <span class="size-12 min-right" onclick="showTopMsgs()" style="position: relative">
- <span class="top_notices_num" id="top_notices_num">0</span>
- <i class="top_icon ga"></i> 消息
- <ul class="top_notices_lists" id="top_notices_lists"></ul>
- </span> -->
- <ul class="dropdown-menu dropdown-alerts drm" style="display: none">
- <!--<li><a href="">
- <div class="tipCon">
- 如果说你是冬日的烟火 华仪科技有限公司 你像遥远的泡沫
- </div>
- <div class="order_time clearfix">
- <span class="work_order">
- 订单号:201709228000006
- </span>
- <span class="ort">
- 2017-02-04 14:00
- </span>
- </div>
- </a></li>
- <li class="divider"></li>
- <li><a href="">消息2</a></li>
- <li class="divider"></li>
- <li><a href="">消息3</a></li>
- <li><a href="">
- <div class="order_time clearfix">
- <span class="work_order">
- 查看更多
- </span>
- <span class="ort">
- >>
- </span>
- </div>
- </a></li>-->
- </ul>
- </div>
- </div>
- </div>
- </nav>
- </div>
- <div class="row content-tabs1">
- <ul>
- <li class="top1" style="width: 5%"></li>
- <li class="top2" style="width: 8%"></li>
- <li class="top3" style="width: 10%"></li>
- <li class="top4" style="width: 13%"></li>
- <li class="top5" style="width: 10%"></li>
- <li class="top6" style="width: 5%"></li>
- <li class="top7" style="width: 13%"></li>
- <li class="top8" style="width: 10%"></li>
- <li class="top9" style="width: 11.2%"></li>
- <li class="top10" style="width: 6%"></li>
- <li class="top11" style="width: 3%"></li>
- <li class="top12" style="width: 5%"></li>
- </ul>
- </div>
- <div class="row J_mainContent" id="content-main">
- <iframe class="J_iframe" name="iframe0" width="100%" height="100%" src="widgets.html" frameborder="0"
- data-id="index_v1.html" seamless></iframe>
- </div>
- <div class="row content-tabs1 LH">
- <ul>
- <li class="top13" style="width: 100%"></li>
- </ul>
- <span class="fr">Copyright © 安阳12345政务服务热线 All Rights
- Reserved</span>
- <ul class="zts" style="display: none">
- <li>话机状态:</li>
- <li class="quan fwzt lx"></li>
- <li>坐席状态:</li>
- <li class="quan zxzt lx"></li>
- <li><span class="hwzt" style="color: red"></span></li>
- <!--<li><span class="hxzt" style="color:red;"></span></li>-->
- </ul>
- </div>
- </div>
- <!--右侧边栏开始-->
- <div id="right-sidebar">
- <div class="sidebar-container">
- <ul class="nav nav-tabs navs-3 right-tab">
- <li class="active">
- <a data-toggle="tab" href="#tab-1">
- <!--<i class="fa fa-gear"></i>-->
- 未读
- </a>
- </li>
- <li class="">
- <a data-toggle="tab" href="#tab-2"> 已读 </a>
- </li>
- <!--<li><a data-toggle="tab" href="#tab-3">
- 全部
- </a>
- </li>-->
- </ul>
- <div class="tab-content">
- <div id="tab-1" class="tab-pane active">
- <div class="sidebar-title">
- <h3>
- <i class="fa fa-comments-o"></i> 未读消息
- <small class="sele_send">发送消息</small>
- </h3>
- <small><i class="fa fa-tim"></i> 您当前有<span class="message_count"></span>条未读信息</small>
- <a href="javaScript:;" class="readed">全部已读</a>
- </div>
- <div class="chat_box">
- <!--<div class="sidebar-message">
- <a href="#">
- <div class="pull-left text-center">
- <img alt="image" class="img-circle message-avatar" src="img/chat_pic.jpg">
- <div class="m-t-xs"></div>
- </div>
- <div class="media-body">
- <div class="chat_content">
- 据天津日报报道:瑞海公司董事长于学伟
- </div>
- <small class="text-muted">今天 4:21</small>
- <span class="reply">回复</span>
- </div>
- </a>
- </div>-->
- </div>
- </div>
- <div id="tab-2" class="tab-pane">
- <div class="sidebar-title">
- <h3>
- <i class="fa fa-comments-o"></i> 已读消息
- </h3>
- <small>注: 显示最近50条已读</small>
- </div>
- <div class="chat_box">
- <!--<div class="sidebar-message">
- <a href="#">
- <div class="pull-left text-center">
- <img alt="image" class="img-circle message-avatar" src="img/chat_pic.jpg">
- </div>
- <div class="media-body">
- <div class="chat_content">
- 据天津日报报道:瑞海公司董事长于学伟
- </div>
- <small class="text-muted">今天 4:21</small>
- <span class="reply">回复</span>
- </div>
- </a>
- </div>
- -->
- </div>
- </div>
- </div>
- </div>
- </div>
- <!--右侧边栏结束-->
- </div>
- <!--==========================================================================================-->
- <!--来电弹屏开始-->
- <div class="ldtp-con clearfix animated fadeInDown">
- <div class="minBacha clearfix">
- <div class="minClosed">
- <a href="javaScript:;" title="最小化"></a>
- </div>
- <div class="Bacha">
- <a href="javaScript:;" title="关闭"></a>
- </div>
- </div>
- <div class="hei-list">
- <div class="heiTop clearFix">
- <p class="htl">黑名单</p>
- <p class="bacha" title="关闭">x</p>
- </div>
- <div class="heiCon">
- <div class="heit">
- <span style="font-size: 14px">输入拉黑时长:</span>
- <input type="text" id="time-word" />
- </div>
- <div class="chooses">
- <label class="radio-inline">
- <input type="radio" name="time" value="1" checked="checked" style="margin-top: 3px" />
- 天
- </label>
- <label class="radio-inline">
- <input type="radio" name="time" value="2" style="margin-top: 3px" />时
- </label>
- <label class="radio-inline">
- <input type="radio" name="time" value="3" style="margin-top: 3px" />分
- </label>
- <label class="radio-inline">
- <input type="radio" name="time" value="4" style="margin-top: 3px" />永久
- </label>
- </div>
- <p style="margin-top: 15px">
- <button id="bc" class="btns">保存</button>
- </p>
- </div>
- </div>
- <!--左侧内容-->
- <div class="ldtp-cl col-sm-2" style="display: none;">
- <div class="head-pic">
- <div class="hp-box">
- <img src="./img/txpic.png" alt="头像好像去了外星球!" style="width: 100%; height: 100%" />
- <input type="hidden" class="hidTel" value="" />
- <input type="hidden" class="hidCallID" value="" />
- </div>
- <ul>
- <li>
- <span style="font-size: 25px" class="tel"></span>
- </li>
- <li>
- <span style="font-size: 20px" class="khgsd"></span>
- </li>
- <li style="color: #4cd964">
- 当前通话时长:<span class="thsc">00:00</span>
- </li>
- <li class="lahei" style="display: none">
- <div class="la-before">
- <i class="push"></i> 移至黑名单
- </div>
- <div class="la-after" style="display: none">
- <p class="la-time">
- 拉黑时间:<span class="lhtime"></span>
- </p>
- <p class="la-shichang">
- 拉黑截止时间:<span class="blackTime"></span>
- </p>
- </div>
- <div class="retur" style="display: none">
- <i class="qxlh"></i> 取消黑名单
- </div>
- </li>
- <li class="td-call clearfix" style="display: none">
- <a class="take" style="float: none" href="javascript:;" title="转满意度"><i></i></a>
- </li>
- </ul>
- </div>
- </div>
- <!--右侧内容-->
- <div class="ldtp-cr col-sm-12">
- <ul class="ld-service clearfix">
- <li style="border-bottom: 1px solid #243747" itemtype="0" class="cr-click">
- 新增工单
- </li>
- <li style="border-bottom: 1px solid #243747" itemtype="1">
- 历史记录
- </li>
- <!--<li style="border-bottom:1px solid #69cbd0;" itemtype="1" >售前咨询</li>
- <li style="border-bottom:1px solid #f95a83;" itemtype="2">保修服务</li>-->
- <li style="border-bottom: 1px solid #243747" itemtype="2">
- 历史工单
- </li>
- </ul>
- <div class="ld-sercon">
- <div class="complain" style="display: block">
- <div class="ld-sercon-con clearfix">
- <div class="Pre-second second-con addgd" style="position: relative">
- <div class="reposit">知</div>
- <form>
- <div class="form-group dicValueList clearfix" id="dicValueList">
- <span class="col-sm-1 Import">
- 来电类型:
- </span>
- <span class="col-sm-9">
- <ul></ul>
- </span>
- <span class="col-sm-2">
- <button id="hangUpEvaluation" class="btns" type="button">挂断评价</button>
- </span>
- </div>
- <div id="dicForms">
- <div class="form-group clearfix">
- <!-- <span class="col-sm-1">
- 邮箱:
- </span>
- <span class="col-sm-3">
- <input type="text" class="email" id="email" />
- </span>
- <span class="col-sm-1">
- 邮编:
- </span>
- <span class="col-sm-3">
- <input type="text" class="postcode" id="zipcode" />
- </span> -->
- <!-- <span class="col-sm-1 Import">
- 联系电话:
- </span>
- <span class="col-sm-3">
- <input type="text" class="lxdh" id="conphone" />
- </span> -->
- </div>
- <div class="form-group clearfix">
- <span class="col-sm-1 Import">标题:</span>
- <span class="col-sm-11">
- <input id="title" type="text" style="
- padding: 5px;
- width: 100%;
- " />
- </span>
- </div>
- <div class="form-group clearfix">
- <span class="col-sm-1 Import">内容:</span>
- <span class="col-sm-11">
- <textarea rows="5" id="content"></textarea>
- </span>
- </div>
- <div class="form-group clearfix">
- <span class="col-sm-1">
- 处理方式:
- </span>
- <span class="col-sm-3">
- <label style="font-weight: normal"><input type="radio" name="banli"
- value="1" class="Nows" />当即处理</label>
- <label style="font-weight: normal"><input type="radio" name="banli"
- value="0" checked="checked" class="Nows" />网络转办</label>
- </span>
- <span class="col-sm-1">
- 来电号码密级:
- </span>
- <span class="col-sm-3">
- <label style="font-weight: normal"><input type="radio" name="mj"
- value="0" />普通</label>
- <label style="font-weight: normal"><input type="radio" name="mj" value="1"
- checked="checked" />保密</label>
- </span>
- </div>
- <div class="form-group clearfix">
- <span class="col-sm-1">
- 来电人:
- </span>
- <span class="col-sm-3">
- <input type="text" class="khmc" id="cusname" />
- </span>
- <span class="col-sm-1">
- 性别:
- </span>
- <span class="col-sm-3">
- <select name="" id="">
- <option value="0">
- 男
- </option>
- <option value="0">
- 女
- </option>
- </select>
- </span>
- <span class="col-sm-1 Import">
- 来电号码:
- </span>
- <span class="col-sm-3">
- <input type="text" class="tsdh" id="cusphone" />
- </span>
- </div>
- <div class="form-group clearfix">
- <span class="col-sm-1">
- 类型:
- </span>
- <span class="col-sm-3">
- <select name="" id="type">
- <option value="咨询">
- 咨询
- </option>
- <option value="投诉">
- 投诉
- </option>
- <option value="求助">
- 求助
- </option>
- <option value="建议">
- 建议
- </option>
- <option value="其他">
- 其他
- </option>
- </select>
- </span>
- <span class="col-sm-1 Import">
- 反映类别:
- </span>
- <span class="col-sm-3" style="position: relative">
- <!-- <input type="text" style="width:100%;" id="keys"/>-->
- <!--<select
- name=""
- id="keys"
- ></select>-->
- <div class="inpBox">
- <input type="text" class="inps" onkeyup="darptSearch()" />
- <i class="Cleans fa fa-close"></i>
- <i class="xl xl_one"></i>
- <div class="addTree xlAdd">
- <ul id="addTreeDemo" class="ztree"></ul>
- </div>
- </div>
- <div class="selDpart1">
- <ul id="sponsor"></ul>
- </div>
- <!--<td style="position: relative"></td>-->
- </span>
- <span class="col-sm-1 Import">
- 紧急程度:
- </span>
- <span class="col-sm-3">
- <select name="" id="level">
- <!--<option value="0">请选择</option>-->
- <option value="1" selected="selected">
- 普通
- </option>
- <option value="2">
- 紧急
- </option>
- </select>
- </span>
- </div>
- <div class="form-group clearfix" style="text-align: center">
- <!--<div class="bton addt_"><a>保存</a></div>-->
- <a class="btns addt_">保存</a>
- <a class="btns addts">保存并提交</a>
- <!--<div class="bton addts">保存并提交</div>-->
- </div>
- <div class="form-group clearfix Hidens Nows_box">
- <span class="col-sm-1">
- 直办内容:
- </span>
- <span class="col-sm-11">
- <textarea id="result" rows="3"></textarea>
- </span>
- </div>
- <div class="form-group clearfix">
- <span class="col-sm-1">
- 事发区域:
- </span>
- <span class="col-sm-6 source_area">
- <select name="sourcearea" id="sourcearea">
- <!-- <option value="0">
- 请选择
- </option> -->
- <option value="0">
- 安阳
- </option>
- </select>
- <!--<img src="img/map_nav.png"/>-->
- <input id="sourceaddress" type="text" placeholder="输入详细地址" />
- </span>
- <div class="mapBJ" style="
- width: 100%;
- height: 100%;
- "></div>
- <div class="mapPos" style="
- width: 710px;
- height: 400px;
- ">
- <div id="myMap" style="
- width: 710px;
- height: 400px;
- "></div>
- <input type="hidden" class="store_Lng" value="114.352482" />
- <input type="hidden" class="store_Lat" value="36.103442" />
- </div>
- </div>
- </div>
- </form>
- </div>
- <!--知识库内容-->
- <div class="ldcr-bottom repoConte">
- <div class="ldcrb-top clearfix">
- <ul class="clearfix">
- <li style="
- border-bottom: 1px solid #69cbd0;
- background: #000;
- color: #fff;
- ">
- 知识库
- </li>
- <!--<li style="border-bottom:1px solid #f95a83;border-top:1px solid #000;border-right:1px solid #000;">更多内容</li>-->
- </ul>
- <div class="ld-search">
- <div class="sear-inp">
- <input type="text" class="search" placeholder="搜索问题、内容或者标题" />
- </div>
- <div class="searIcon"></div>
- </div>
- </div>
- <div class="detail-con">
- <ul></ul>
- </div>
- </div>
- </div>
- </div>
- <div class="complain" style="display: none">
- <div class="ld-sercon-con clearfix">
- <div class="Ps-chaxun">
- <span>查询:
- <input type="text" id="old_startTime" class="laydate-icon" /> —— <input
- type="text" id="old_endTime" class="laydate-icon" /></span>
- <span class="searchbtn"></span>
- </div>
- <div class="table-responsive col-sm-12 tbold" style="padding-left: 0">
- <table id="oldlist" data-row-style="rowStyle" data-query-params="queryParams"
- data-pagination="true">
- <thead>
- <tr>
- <th data-field="CallNumber">
- 电话号码
- </th>
- <th data-field="CallState" data-formatter="GetCallState">
- 呼叫状态
- </th>
- <th data-field="TypeName">
- 通话类型
- </th>
- <th data-field="UserCode">
- 坐席工号
- </th>
- <th data-field="UserName">
- 坐席姓名
- </th>
- <th data-field="TalkStartTime">
- 通话开始时间
- </th>
- <th data-field="TalkEndTime">
- 通话结束时间
- </th>
- <th data-field="TalkLongTime" data-formatter="ftime">
- 通话时长
- </th>
- <th data-field="FilePath" data-formatter="setCode">
- 录音
- </th>
- </tr>
- </thead>
- <tbody class="list"></tbody>
- </table>
- </div>
- </div>
- </div>
- <div class="complain" style="display: none">
- <div class="ld-sercon-con clearfix">
- <div class="Ps-chaxun">
- <span>查询:
- <input type="text" id="con_startTime" class="laydate-icon" /> —— <input
- type="text" id="con_endTime" class="laydate-icon" /></span>
- <span class="searchbtn"></span>
- <!--<span class="addjl g" style="margin-left:5em;">新增工单</span>-->
- </div>
- <div class="table-responsive col-sm-12 tbold" style="padding-left: 0">
- <table id="orderlist" data-row-style="rowStyle" data-query-params="queryParams"
- data-pagination="true">
- <thead>
- <tr>
- <th data-field="F_WorkOrderId" data-formatter="GetLink">
- 工单编号
- </th>
- <th data-field="F_CreateTime">
- 创建时间
- </th>
- <th data-field="UserName">
- 创建人
- </th>
- <th data-field="SourceName">
- 信息来源
- </th>
- <th data-field="TypeName">
- 信息类别
- </th>
- <th data-field="F_Result" data-formatter="formatterResult">
- 处理内容
- </th>
- <th data-field="DeptName">
- 承办单位
- </th>
- <!-- <th data-field="OtherDeptName">
- 协办单位
- </th> -->
- <th data-field="WorkStateName">
- 工单状态
- </th>
- <th data-field="F_ComContent" data-formatter="GetCont">
- 工单内容
- </th>
- <th data-field="FilePath" data-formatter="setCode">
- 录音文件
- </th>
- <th data-formatter="setReminder">
- 操作
- </th>
- </tr>
- </thead>
- <tbody class="list"></tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!--来电弹屏结束-->
- <!--外呼键盘-->
- <div class="WH animated fadeInDown hidens">
- <!--top-->
- <div class="clearflow Color">
- <div class="WH-top">
- <span>外呼信息</span>
- <span class="closes"><a>X</a></span>
- </div>
- <div class="Cotent_box clearflow">
- <!--左边键盘-->
- <div class="KeyWord col-sm-4">
- <div class="WH_input clearflow">
- <div class="clearflow WH_Itop">
- <input id="Result" type="text" class="fl" value="" maxlength="18" autofocus="autofocus" />
- <input id="hidwhtype" type="hidden" value="" />
- <i class="img fl hidens"></i>
- </div>
- </div>
- <div class="Num_box clearflow">
- <ul class="Num_ul clearflow">
- <li>
- <div>
- <a>1</a>
- </div>
- </li>
- <li>
- <div>
- <a>2</a>
- </div>
- </li>
- <li>
- <div>
- <a>3</a>
- </div>
- </li>
- <li>
- <div>
- <a>4</a>
- </div>
- </li>
- <li>
- <div>
- <a>5</a>
- </div>
- </li>
- <li>
- <div>
- <a>6</a>
- </div>
- </li>
- <li>
- <div>
- <a>7</a>
- </div>
- </li>
- <li>
- <div>
- <a>8</a>
- </div>
- </li>
- <li>
- <div>
- <a>9</a>
- </div>
- </li>
- <li>
- <div>
- <a>*</a>
- </div>
- </li>
- <li>
- <div>
- <a>0</a>
- </div>
- </li>
- <li>
- <div>
- <a>#</a>
- </div>
- </li>
- <li class="Last_phone">
- <div>
- <a class="CallOut"></a>
- </div>
- </li>
- </ul>
- </div>
- </div>
- <!--右边图表-->
- <div class="col-sm-8 Rbg">
- <div class="bg bg_cotent">
- <ul class="bg_title clearflow">
- <li class="lactive" itemid="0">最近电话</li>
- <li itemid="1">公司电话</li>
- <li itemid="2">来电人电话</li>
- <li itemid="3">坐席列表</li>
- </ul>
- <div class="bg_box phonediv">
- <div class="cx">
- <span class="blanks">电话号码:<input type="text" id="lastphone" /></span>
- <span class="ty">搜索</span>
- <!--<span class="ty">重置</span>-->
- </div>
- <div class="phone_bg" style="width: 100%; padding: 10px">
- <table class="phonelist" data-row-style="rowStyle" data-query-params="queryParams"
- data-pagination="true">
- <thead>
- <tr>
- <th data-field="CallNumber" data-formatter="view">
- 电话号码
- </th>
- <th data-field="CallState" data-formatter="GetCallState">
- 呼叫状态
- </th>
- <!--<th data-field="IsDeal" data-formatter="GetDealState">是否处理</th>-->
- <th data-field="UserCode">
- 坐席工号
- </th>
- <th data-field="UserName">
- 坐席姓名
- </th>
- <th data-field="TalkStartTime">
- 通话开始时间
- </th>
- <th data-field="TalkEndTime">
- 通话结束时间
- </th>
- <th data-field="TalkLongTime">
- 通话时长(s)
- </th>
- <!--<th data-field="FilePath">录音</th>-->
- </tr>
- </thead>
- </table>
- </div>
- </div>
- <div class="bg_box phonediv" style="display: none">
- <div class="cx">
- <span class="blanks">
- 电话号码:
- <input type="text" id="gsphone" />
- </span>
- <span class="blanks">
- 名称:
- <input type="text" id="gsname" />
- </span>
- <span class="ty">搜索</span>
- <!--<span class="ty">重置</span>-->
- </div>
- <div class="phone_bg" style="width: 100%; padding: 10px">
- <table class="phonelist" data-row-style="rowStyle" data-query-params="queryParams"
- data-pagination="true">
- <thead>
- <tr>
- <th data-field="F_UserCode">
- 坐席工号
- </th>
- <th data-field="F_UserName">
- 坐席姓名
- </th>
- <!--<th data-field="F_WorkNumber" data-formatter="view">分机号</th>-->
- <th data-field="F_Telephone" data-formatter="view">
- 电话号码1
- </th>
- <th data-field="F_Mobile" data-formatter="view">
- 电话号码2
- </th>
- <th data-field="F_HomePhone" data-formatter="view">
- 电话号码3
- </th>
- </tr>
- </thead>
- </table>
- </div>
- </div>
- <div class="bg_box phonediv" style="display: none">
- <div class="cx">
- <span class="blanks">
- 电话号码:
- <input type="text" id="khphone" />
- </span>
- <span class="blanks">
- 名称:
- <input type="text" id="khname" />
- </span>
- <span class="ty">搜索</span>
- <!--<span class="ty">重置</span>-->
- </div>
- <div class="phone_bg" style="width: 100%; padding: 10px">
- <table class="phonelist" data-row-style="rowStyle" data-query-params="queryParams"
- data-pagination="true">
- <thead>
- <tr>
- <th data-field="F_CustomerName">
- 名称
- </th>
- <th data-field="F_Telephone" data-formatter="view">
- 电话号码1
- </th>
- <th data-field="F_Mobile" data-formatter="view">
- 电话号码2
- </th>
- <th data-field="F_ChargeTelephone" data-formatter="view">
- 电话号码3
- </th>
- </tr>
- </thead>
- </table>
- </div>
- </div>
- <div class="bg_box phonediv" style="display: none">
- <table class="table" id="zxTable">
- <thead>
- <tr>
- <th>姓名</th>
- <th>工号</th>
- <th>分机号</th>
- <th>状态</th>
- </tr>
- </thead>
- <tbody></tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!--下载框-->
- <div class="t-shade">
- <div class="shade_k">
- <div class="shade_title">
- <span>录音播放<srong class="cknum"></srong></span>
- <span class="setwin"><a>x</a></span>
- </div>
- <div class="shade_content">
- <div class="Ly_box audiojs"></div>
- <div class="boxCon LY_box"></div>
- </div>
- </div>
- </div>
- <!--修改密码开始-->
- <div class="personalMask"></div>
- <div class="personal" id="box">
- <div class="ptop clearFix">
- <p class="ptl">个人中心</p>
- <p class="ptr" title="关闭">x</p>
- </div>
- <div class="perBox">
- <ul class="perTab clearFix">
- <li class="sel">个人资料</li>
- <li>修改头像</li>
- </ul>
- <div class="perTab_con">
- <div class="geRen" style="display: block">
- <div class="grt clearFix">
- <p class="grtl">基本资料</p>
- <p class="grtr">
- <i class="grqx" title="取消编辑"></i>
- <i class="grbj" title="编辑资料"></i>
- </p>
- </div>
- <table class="table grzl">
- <tr>
- <th>我的工号:</th>
- <td>
- <input type="text" class="mgh" readonly="readonly" />
- </td>
- </tr>
- <tr>
- <th>我的姓名:</th>
- <td>
- <input type="text" class="mn zhidu" readonly="readonly" />
- </td>
- <!-- <td>
- <input type="text" class="mn" readonly="readonly" />
- </td> -->
- </tr>
- <tr>
- <th>原密码:</th>
- <td>
- <input type="password" class="spwd zhidu" />
- </td>
- </tr>
- <tr>
- <th>新密码:</th>
- <td>
- <input type="password" class="npwd zhidu" />
- </td>
- </tr>
- <tr>
- <th>确认密码:</th>
- <td>
- <input type="password" class="epwd zhidu" /><span class="wrong">*密码不一致</span>
- </td>
- </tr>
- <!-- <tr>
- <th>姓名:</th>
- <td>
- <input type="text" class="settingName zhidu" readonly="readonly" />
- </td>
- </tr> -->
- <tr>
- <th>单位:</th>
- <td>
- <input type="text" class="settingCompany zhidu" readonly="readonly" />
- </td>
- </tr>
- <tr>
- <th>科室:</th>
- <td>
- <input type="text" class="settingDepartment zhidu" readonly="readonly" />
- </td>
- </tr>
- <tr>
- <th>职务:</th>
- <td>
- <input type="text" class="settingPost zhidu" readonly="readonly" />
- </td>
- </tr>
- <tr>
- <th>手机号码:</th>
- <td>
- <input type="text" class="settingMobile zhidu" readonly="readonly" />
- <button class="btnn btnVerificationCode">获取验证码</button>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <span class="verificationCodeTips" style="display: none;">请稍后再次获取</span>
- </td>
- </tr>
- <tr>
- <th>办公电话:</th>
- <td>
- <input type="text" class="settingTelephone zhidu" readonly="readonly" />
- </td>
- </tr>
- <tr>
- <th>验证码:</th>
- <td>
- <input type="text" class="settingCode zhidu" readonly="readonly" />
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <button class="btnn grbtn">保存修改</button>
- </td>
- </tr>
- </table>
- </div>
- <div class="crop">
- <div class="clearFix" style="margin-top: 45px">
- <div class="crop_left">
- <div class="image-crop">
- <img src="./img/gaga.jpg" />
- </div>
- </div>
- <div class="crop_right">
- <h4>图片预览:</h4>
- <div class="img-preview img-preview-sm"></div>
- </div>
- </div>
- <div class="anniu" style="margin-top: 75px; text-align: center">
- <label title="上传图片" for="inputImage" class="btnn" style="margin-right: 100px">
- <input type="file" accept="image/jpeg,image/jpg,image/png" name="file" id="inputImage"
- class="hide" />
- 本地上传
- </label>
- <button class="btnn" id="zoomIn" type="button">
- 放大
- </button>
- <button class="btnn" id="zoomOut" type="button">
- 缩小
- </button>
- <button class="btnn" id="rotateLeft" type="button">
- 左旋转
- </button>
- <button class="btnn" id="rotateRight" type="button">
- 右旋转
- </button>
- <button class="btnn" id="setDrag" type="button">
- 确定保存
- </button>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!--修改密码结束-->
- <input type="hidden" class="mid" />
- <!--右下角消息弹出开始-->
- <div class="small-chat-box fadeInRight animated" style="height: 450px">
- <div class="heading" draggable="true">
- <!--<small class="chat-date pull-right">
- 2017.10.26
- </small> -->
- 我的任务
- </div>
- <div class="content">
- <ul class="rightDown_list"></ul>
- </div>
- </div>
- <!-- <div id="small-chat">
- <span class="badge badge-warning pull-right messageTotal"></span>
- <a class="open-small-chat">
- <i class="fa fa-comments"></i>
- </a>
- </div> -->
- <!--右下角消息弹出结束-->
- <!-- <div class="open_chat">
- <div class="before"></div>
- <i class="iconfont"></i>
- <p style="margin: 0">客服</p>
- </div> -->
- <!--在线客服开始-->
- <div id="chat">
- <!--<div class="chat_left">
- <ul>
- <li IsToAll="0" RoleId="" RoleCode="" UserId="0">
- <p class="chat_name">坐席</p>
- </li>
- </ul>
- </div>-->
- <div class="chat_sidebar">
- <div class="pic_card">
- <div class="chat_sidebar_head">
- <img class="ver_middle" src="img/kefuTx.png" alt="" width="40" height="40" />
- <p class="chat_name chat_username">Coffce</p>
- </div>
- <!--<div class="chat_sidebar_foot">
- <input type="text" class="sidebar_foot_seach" placeholder="search user..." />
- </div>-->
- </div>
- <div class="chat_sidebar_list">
- <ul class="sidebar_list">
- <!--<li class="actives">
- <img class="ver_middle" src="img/chat_list1.png" alt="" width="30" height="30" />
- <p class="chat_name">技术-小白</p>
- <i class="fa fa-remove closeds"></i>
- </li>
- <li>
- <img class="ver_middle" src="img/chat_list2.jpg" alt="" width="30" height="30" />
- <p class="chat_name">WebPack</p>
- </li>-->
- </ul>
- </div>
- </div>
- <div class="chat_main">
- <!--<div class="chat_person disnone">
- <p class="chat_name"></p>
- </div>-->
- <div class="tabMain">
- <div class="main_message">
- <ul class="chatlist_con">
- <!--<a href="javascript:void(0)" class="more" onclick="getmore()"><i class="fa fa-clock-o" style="margin-right: 5px;"></i>查看更多信息</a>
- <li>
- <p class="message_time "><span>10:00</span></p>
- <div class="message_mincon ">
- <img class="ver_middle " src="img/chat_list1.png " alt=" " width="30 " height="30 "/>
- <div class="message_text ">
- Hello,这是一个基于Vue + Webpack构建的简单chat示例,聊天记录保存在localStorge。简单演示了Vue的基础特性和webpack配置。
- </div>
- </div>
- </li>
- <li>
- <p class="message_time "><span>10:00</span></p>
- <div class="message_mincon self ">
- <img class="ver_middle " src="img/chat_pic.jpg " alt=" " width="30 " height="30 "/>
- <div class="message_text ">我知道吖</div>
-
- </div>
- </li>-->
- </ul>
- </div>
- <div class="main_sendMessage">
- <textarea name=" " rows=" " cols=" " placeholder="按Enter 发送 " class="send_content"></textarea>
- <div class="send_btn">
- <button class="sendTo" onclick="sendinfo() ">
- 发送(S)
- </button>
- <span style="color: red" class="error"></span>
- </div>
- </div>
- </div>
- </div>
- <input type="hidden " class="hidnum" />
- </div>
- <!--在线客服结束-->
- <input type="hidden" id="cqorder" />
- <!--弹框提示-->
- <div class="tan_ping">
- <ul class="rightDown_list1">
- <!--<li style="text-align: center;">消息提醒</li>-->
- <li class="news">
- <ul id="top_notices_lists1"></ul>
- </li>
- <li class="last_li">
- <button id="know">知道了</button>
- <button id="chuli">立即处理</button>
- </li>
- </ul>
- </div>
- <script src="https://api.map.baidu.com/api?v=2.0&ak=ZG4gLQZUD6Eq1K11cqlYAR4by8CKgLyu&callback=mapinit"></script>
- <script src="./js/plugins/cropper/cropper.min.js"></script>
- <script src="./js/jquery.md5.js"></script>
- <script src="./css/laydate/laydate.js"></script>
- <script src="./js/guid.js"></script>
- <script src="./js/websocket/swfobject.js?v=2.0"></script>
- <script src="./js/websocket/web_socket.js?v=2.0"></script>
- <script src="./js/main.js?v=2.0"></script>
- <script src="./js/chat.js"></script>
- <script src="./js/index.js?v=2.0"></script>
- <script src="./js/appeal/mapIndex.js"></script>
- <script src="./js/plugins/metisMenu/jquery.metisMenu.js"></script>
- <script src="./js/plugins/slimscroll/jquery.slimscroll.min.js"></script>
- <script src="./js/hplus.min.js?v=4.1.0"></script>
- <script src="./js/contabs.min.js"></script>
- <script src="./js/zTree/jquery.ztree.core.js"></script>
- <script src="./js/ztreeSelect.js"></script>
- </body>
- </html>
|