123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422 |
- {
- "html/home/html/suifangjihua.html": {
- "resources": [
- "fonts/mui.ttf",
- "js/mui.min.js",
- "css/mui.min.css",
- "js/common_http.js"
- ],
- "refer": []
- },
- "index.html": {
- "resources": [
- "js/mui.min.js",
- "css/mui.min.css",
- "js/common_http.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css"
- ],
- "refer": [
- "html/home/html/main.html",
- "html/login/html/login.html"
- ]
- },
- "html/home/html/xiaoxi.html": {
- "resources": [
- "js/im_new.js",
- "common/images/msg_02.png",
- "common/images/msg_01.png",
- "common/images/msg_05.png",
- "common/images/msg_03.png",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/cross/css/cross.min.css",
- "common/iconfont/iconfont.woff",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "common/css/ss-doctor.css",
- "common/cross/css/ui.all.min.css",
- "common/cross/css/cross.css",
- "html/home/images/jiankangtizheng_icon.png",
- "html/home/css/xiaoxi.css",
- "html/home/js/xiaoxi.js",
- "html/home/images/taolunzu_n.png",
- "html/home/images/qianyuexiaoxi_icon.png",
- "html/js/date-ext.js",
- "html/home/images/xitongxiaoxi.png",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "html/js/l-scroll.css",
- "html/home/images/mingyizixun_icon.png",
- "js/template.js",
- "html/js/l-scroll.js",
- "images/d-male.png",
- "html/js/templateHelp.js",
- "html/home/html/xiaoxipage.html",
- "html/home/images/yisheng_button.png",
- "html/js/common.js",
- "html/home/images/xiaoxi_pre.png",
- "html/home/images/juming_button.png",
- "html/home/images/juming_pres.png",
- "html/home/images/xiaoxi_button.png",
- "html/home/images/yisheng_pre.png",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/home/html/xiaoxipage.html",
- "html/home/html/jumingim.html",
- "html/home/html/yishengim.html"
- ]
- },
- "html/home/html/mine.html": {
- "resources": [
- "common/images/demo-linehead.png",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "common/images/demo-por02.png",
- "common/images/demo-por01.png",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "js/template.js",
- "common/iconfont/iconfont.woff",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "html/home/images/wodemingpian_icon.png",
- "html/js/templateHelp.js",
- "html/home/images/gongzuoshezhi_icon.png",
- "html/home/images/shezhi_icon.png",
- "html/js/common.js",
- "images/d-male.png",
- "images/s-male.png",
- "html/home/images/gongzuoshezi_icon.png",
- "html/home/images/shezi_icon.png",
- "html/home/images/zhidaomoban_icon.png",
- "html/home/images/mingpian_icon.png",
- "js/mui.pullToRefresh.js",
- "css/mui-pull.css",
- "js/mui.pullToRefresh.material.js",
- "html/home/images/icon_manyidu.png",
- "html/home/images/gengxin_icon.png",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/mine/html/set.html",
- "html/mine/html/dailiqianyue.html",
- "html/home/html/gongzuozu.html",
- "html/error/html/error.html",
- "html/mine/html/gerenziliao.html",
- "html/login/html/login.html",
- "html/hzzd/html/guidance_list.html",
- "html/mine/html/gongzuoshezhi.html",
- "html/home/html/relogin.html",
- "html/mine/html/manyidu.html",
- "html/mine/html/erweima.html"
- ]
- },
- "html/home/html/main.html": {
- "resources": [
- "common/iconfont/iconfont.woff",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "html/home/js/main.js",
- "html/home/html/xiaoxi.html",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css",
- "js/mui.min.js",
- "css/mui.min.css",
- "js/common_http.js",
- "html/home/html/home1.html",
- "html/home/html/home2.html",
- "js/im_new.js",
- "html/home/images/juming_btn.png",
- "html/home/images/xiaoxi_btn.png",
- "html/js/common.js",
- "html/home/images/shouye_pre.png",
- "html/home/images/tuandui_btn.png",
- "html/home/images/wode_btn.png",
- "html/home/images/shouye_btn.png",
- "html/home/images/juming_pre.png",
- "html/home/images/wode_pre.png",
- "html/tuandui/html/tuandui.html",
- "html/home/images/xiaoxi_pre.png",
- "html/home/images/tuandui_pre.png",
- "js/im.client.js",
- "common/cross/images/logo_dibu_img.png",
- "html/home/html/admin.html"
- ],
- "refer": [
- "html/home/html/suifangjihua.html",
- "html/home/html/mine.html",
- "html/home/html/xiaoxi.html",
- "html/home/html/huanzhe.html",
- "html/home/html/home1.html",
- "html/home/html/home2.html",
- "html/tuandui/html/tuandui.html",
- "html/login/html/login.html",
- "html/error/html/error.html",
- "html/home/html/admin.html",
- "html/home/html/qiehuan.html",
- "html/home/html/huanzhe-specal.html"
- ]
- },
- "html/home/html/huanzhe.html": {
- "resources": [
- "images/gaoyou@2x.png",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "js/template.js",
- "images/tangyou@2x.png",
- "images/p-female.png",
- "images/p-default.png",
- "common/iconfont/iconfont.woff",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css",
- "js/common_http.js",
- "html/home/images/zidingyibiaoqian_icon.png",
- "html/home/images/checked_blue.png",
- "html/home/images/guanbi_btn.png",
- "html/home/images/weifenpei_icon.png",
- "common/css/pull-up-down.css",
- "html/home/js/huanzhe.js",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "html/home/images/jibingleixing_icon.png",
- "html/home/images/qianyueshijian_icon.png",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png",
- "html/home/images/jiankangqingkuang_icon.png",
- "images/sousuo_icon.png",
- "js/underscore.js",
- "js/es6-promise.js",
- "html/js/templateHelp.js",
- "html/js/common.js",
- "js/app.js",
- "images/weixing_icon.png",
- "html/home/images/guanli_icon.png",
- "css/mui-pull.css",
- "js/mui.pullToRefresh.js",
- "js/mui.pullToRefresh.material.js",
- "html/home/images/icon_tuanduibiaoqian.png",
- "html/home/images/icon_qianyuedaoqi.png",
- "html/home/css/huanzhe.css",
- "common/cross/images/logo_dibu_img.png",
- "html/home/images/tijiantixing_icon.png",
- "images/icon_xueyaji.png",
- "images/icon_xueyaji_zhihui.png",
- "images/weixing_icon2.png",
- "images/yujing_biaoqian_icon.png",
- "images/icon_xuetangyi_zhihui.png"
- ],
- "refer": [
- "html/huanzhe/html/huanzhexinxi.html",
- "html/login/html/login.html",
- "html/error/html/error.html",
- "html/huanzhe/html/searchhuanzhe.html",
- "html/search/html/zhuanyijumin.html",
- "html/huanzhe/html/searchhuanzhe2.html",
- "html/huanzhe/html/huanzhe-by-type.html",
- "html/huanzhe/html/huanzhe-tijian.html"
- ]
- },
- "html/login/html/login.html": {
- "resources": [
- "html/login/iconfont/iconfont.css",
- "html/login/iconfont/iconfont.ttf",
- "js/rtcsdk.js",
- "js/jquery/2.1.3/jquery.js",
- "js/security.js",
- "html/login/css/login.css",
- "html/login/images/logo.png",
- "fonts/mui.ttf",
- "js/mui.min.js",
- "css/mui.min.css",
- "js/common_http.js",
- "common/cross/css/cross.ui.css",
- "js/im_new.js",
- "html/login/js/login.js",
- "html/login/images/ditu_png.png",
- "html/js/common.js",
- "html/login/images/view_icon.png",
- "js/im.client.js",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/home/html/main.html",
- "html/mine/html/shenfenyanzheng.html"
- ]
- },
- "html/home/html/home1.html": {
- "resources": [
- "common/css/ss-doctor.css",
- "common/cross/css/cross.min.css",
- "images/d-default.png",
- "js/template.js",
- "common/cross/css/ui.all.min.css",
- "images/d-male.png",
- "images/p-default.png",
- "images/shujuweikong_img.png",
- "js/mui.pullToRefresh.js",
- "html/home/images/qiehuan_btn.png",
- "css/mui-pull.css",
- "js/mui.pullToRefresh.material.js",
- "html/home/html/jumingim.html"
- ],
- "refer": [
- "html/mine/html/shezhimima.html",
- "html/message/html/p2dzixun.html",
- "html/message/html/p2p.html",
- "html/message/html/tuanduiqunliao.html",
- "html/mine/html/modify.html",
- "html/home/html/jumingim.html",
- "html/home/html/yishengim.html"
- ]
- },
- "html/mine/html/set.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/im_new.js",
- "html/mine/css/cross.ui.css",
- "html/mine/js/base.js",
- "html/mine/images/settings/icon6.png",
- "html/mine/css/cross.css",
- "html/mine/css/setting.css",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css",
- "js/im.client.js",
- "js/common_http.js",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/login/html/login.html",
- "html/mine/html/edit_mobilephone.html",
- "html/mine/html/about.html",
- "html/mine/html/feedback.html",
- "html/mine/html/shezhimima.html",
- "html/mine/html/xiaoxitongzhishezhi.html"
- ]
- },
- "html/home/html/home2.html": {
- "resources": [
- "images/doc-ico3.jpg",
- "common/css/ss-doctor.css",
- "images/d-default.png",
- "images/doc-ico1.jpg",
- "images/doc-ico2.jpg",
- "common/cross/css/ui.all.min.css",
- "common/iconfont/iconfont.woff",
- "common/cross/css/cross.min.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "js/template.js",
- "html/home/css/home2.css",
- "html/home/images/qiehuan_btn.png",
- "html/home/images/qianyueguanli-icon.png",
- "common/css/cyc.css",
- "html/home/images/banner-font.png",
- "html/home/images/dailiqianyue_icon.png",
- "images/wodegongzuo_icon.png",
- "html/home/images/loading_03.gif",
- "html/home/images/suifangjihua_icon.png",
- "html/home/images/jiankangjiaoyu_icon.png",
- "html/home/images/mingyizixun_icon.png",
- "html/home/js/home2.js",
- "html/home/images/daiyuyue_icon.png",
- "html/home/images/banner-doctor.png",
- "html/home/images/banner-bg.png",
- "html/home/images/jiankangzixun_icon.png",
- "images/d-male.png",
- "images/d-female.png",
- "js/im_new.js",
- "html/home/images/wodemingpian_icon.png",
- "html/js/common.js",
- "css/mui-pull.css",
- "js/mui.pullToRefresh.js",
- "js/mui.pullToRefresh.material.js",
- "js/im.client.js",
- "images/doc-ico-new5.png",
- "images/doc-ico-new1.png",
- "images/doc-ico-new3.png",
- "images/doc-ico-new4.png",
- "images/doc-ico-new2.png",
- "html/home/images/tuanduigongzuobaogao_icon.png",
- "html/home/images/saomiao_icon.png",
- "html/home/images/xufangguanli_quanke_icon.png",
- "html/home/images/xufangdingdan_quanke_icon.png",
- "images/s-female.png",
- "common/cross/images/logo_dibu_img.png",
- "html/home/images/icon_manbingguanli.png",
- "html/home/images/dailijiandang_shouye_icon.png",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "images/loading2.gif",
- "html/home/images/xitongfuwu_uanke_icon.png",
- "html/home/images/jiankangcujin.png",
- "html/home/images/jifenguanli_icon.png"
- ],
- "refer": [
- "html/home/html/xiaoxi.html",
- "html/mine/html/dailiqianyue.html",
- "html/xiaoxi/html/jiankangzixun.html",
- "html/home/html/huanzhe.html",
- "html/home/html/suifangjihua.html",
- "html/jkjy/html/jiankangjiaoyu.html",
- "html/qygl/html/sign_manage.html",
- "html/mine/html/shezhimima.html",
- "html/wdyy/html/huanzhe.html",
- "html/error/html/error.html",
- "html/login/html/login.html",
- "html/mygl/html/mingyizixunliebiao.html",
- "html/wdyy/html/doctor-appointment.html",
- "html/mine/html/erweima.html",
- "html/search/html/xuanzejumin_one.html",
- "html/suifang/html/index.html",
- "html/mine/html/manyidu.html",
- "html/prescription/html/xufangguanli.html",
- "html/prescription/html/xufangdingdan.html",
- "html/mine/html/dailijiandang.html",
- "html/tuandui/html/gongzuobaogao.html",
- "html/xtfw/html/xietongfuwu-management.html",
- "html/mbgl/html/manbingguanli.html",
- "html/jkjy/html/article-store.html",
- "html/kfgl/html/denizen.html"
- ]
- },
- "html/mine/html/dailiqianyue.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "js/upload_preview.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "widget/scale/scale.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/security.js",
- "common/css/doc-style.css",
- "js/common_http.js",
- "html/mine/js/dailiqianyue.js",
- "fonts/mui.ttf",
- "html/mine/js/auto_rec_ssc_photo.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/template.js",
- "images/p-female.png"
- ],
- "refer": [
- "html/error/html/error.html",
- "html/mine/html/dailiqianyue-next.html",
- "html/login/html/login.html"
- ]
- },
- "html/home/html/gongzuozu.html": {
- "resources": [
- "html/home/css/cross.ui.css",
- "html/home/css/cross.css",
- "html/home/js/work_team.js",
- "html/home/images/list-tb3.png",
- "html/home/css/contacts.css",
- "html/home/js/base.js",
- "js/rtcsdk.js"
- ],
- "refer": []
- },
- "html/ggzx/html/gonggongzixun.html": {
- "resources": [
- "js/app.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.min.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "html/ggzx/iconfont/iconfont.css",
- "images/p-default.png",
- "images/p-female.png",
- "common/css/doc-style.css",
- "js/template.js",
- "js/common_http.js",
- "common/cross/css/cross.ui.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css"
- ],
- "refer": [
- "html/ggzx/html/ggzx-zixunxiangqing.html",
- "html/error/html/error.html",
- "html/login/html/login.html"
- ]
- },
- "html/zdzx/html/zhidingzixun.html": {
- "resources": [
- "html/zdzx/css/cross.css",
- "images/noset.png",
- "common/css/doc-style.css",
- "html/zdzx/css/yy-qygl.css",
- "js/template.js",
- "js/common_http.js",
- "html/zdzx/css/dhzs.css",
- "html/zdzx/js/base.js",
- "html/zdzx/css/yy-style.css",
- "html/js/templateHelp.js",
- "images/shujuweikong_img.png",
- "common/cross/css/cross.ui.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/js/common.js",
- "images/p-female.png"
- ],
- "refer": [
- "html/zdzx/html/zixunxiangqing.html",
- "html/error/html/error.html"
- ]
- },
- "html/xiaoxi/html/jiankangzixun.html": {
- "resources": [
- "html/ggzx/html/gonggongzixun.html",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css",
- "html/js/common.js",
- "html/xiaoxi/images/checked_blue.png",
- "common/cross/images/logo_dibu_img.png",
- "html/prescription/html/xufangzixun.html"
- ],
- "refer": [
- "html/ggzx/html/gonggongzixun.html",
- "html/zdzx/html/zhidingzixun.html",
- "html/zdzx/html/tuanduitongji.html",
- "html/prescription/html/xufangzixun.html"
- ]
- },
- "html/ggzx/html/ggzx-zixunxiangqing.html": {
- "resources": [
- "widget/scale/scale.js",
- "html/ggzx/css/cross.css",
- "images/noset.png",
- "common/cross/css/cross.ui.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css",
- "common/css/doc-style.css",
- "html/ggzx/iconfont/iconfont.css",
- "js/template.js",
- "js/common_http.js",
- "images/p-female.png",
- "images/d-male.png",
- "js/mui.previewimage.js",
- "js/mui.zoom.js",
- "css/mui.min.css"
- ],
- "refer": [
- "html/ggzx/html/ggzx-zhuanxiehuida.html"
- ]
- },
- "html/huanzhe/html/huanzhexinxi.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "html/huanzhe/js/health-index.js",
- "common/cross/css/cross.ui.css",
- "images/noset.png",
- "common/css/jy-style.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/iconfont/iconfont.css",
- "widget/echarts/2.2.7/js/echarts-all.js",
- "common/cross/css/cross.css",
- "images/p-female.png",
- "widget/swiper/3.1/swiper.min.css",
- "widget/swiper/3.1/swiper.jquery.min.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/template.js",
- "js/common_http.js",
- "js/mui.js",
- "html/huanzhe/js/index-charts.js",
- "html/js/templateHelp.js",
- "html/huanzhe/images/gengduo_icon.png",
- "html/huanzhe/images/yongyao_icon.png",
- "html/js/common.js",
- "html/huanzhe/images/tizheng_icon1.png",
- "html/huanzhe/images/bohao_icon.png",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/underscore.js",
- "html/huanzhe/css/huanzhexinxi.css",
- "js/iscroll-pull-up-down.js",
- "html/huanzhe/images/jianting_icon.png",
- "html/huanzhe/js/huanzhexinxi.js",
- "js/app.js",
- "html/huanzhe/images/anniu_icon.png",
- "html/huanzhe/images/zhuyuan_icon.png",
- "common/css/pull-up-down.css",
- "html/huanzhe/images/jiancha_icon.png",
- "js/es6-promise.js",
- "html/huanzhe/images/tixingjiaofei_btn.png",
- "html/huanzhe/images/menzhen_icon.png",
- "common/images/pull-icon@2x.png",
- "html/huanzhe/images/yitixing_btn.png",
- "images/weixing_icon.png",
- "html/huanzhe/images/jiankangtijian_icon.png",
- "html/huanzhe/images/tixingguanzhu_btn.png",
- "html/huanzhe/images/zhidao_icon2.png",
- "html/huanzhe/images/dianhua_icon.png",
- "html/huanzhe/images/jiaoyu_icon.png",
- "css/mui-pull.css",
- "js/mui.pullToRefresh.js",
- "js/mui.pullToRefresh.material.js",
- "html/huanzhe/images/icon_more.png",
- "css/mui.min.css",
- "html/huanzhe/images/xufangjilu_juming_icon.png",
- "html/huanzhe/images/chanjianjilu_juming_icon.png",
- "common/cross/images/logo_dibu_img.png",
- "html/huanzhe/images/manbingdangan_icon.png"
- ],
- "refer": [
- "html/huanzhe/html/huanzeziliao.html",
- "html/jkjy/html/jiankangjiaoyu.html",
- "html/wdyy/html/appointment-register.html",
- "html/wdyy/html/my-appointment.html",
- "html/error/html/error.html",
- "html/hzzd/html/xinzengzhidao.html",
- "html/huanzhe/html/disease-label.html",
- "html/huanzhe/html/jianchajianyan.html",
- "html/huanzhe/html/zhuyuanjilu.html",
- "html/huanzhe/html/menzhenjilu.html",
- "html/wdsb/html/my-equipments.html",
- "html/huanzhe/html/jiatingchengyuan.html",
- "html/huanzhe/html/fuwujilu.html",
- "html/huanzhe/html/yongyaojilu.html",
- "html/huanzhe/html/jiankangtijian.html",
- "html/huanzhe/html/disease-label-edit.html",
- "html/jkjl/html/health-record.html",
- "html/hzzd/html/guidance_list.html",
- "html/suifang/html/choose_suifang.html",
- "html/suifang/html/suifang_list.html"
- ]
- },
- "html/jkjy/html/my_store.html": {
- "resources": [
- "html/jkjy/images/liulan_icon.png",
- "html/jkjy/js/my_store.js",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "html/jkjy/images/zhuanfa_icon.png",
- "common/images/pull-icon@2x.png",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "images/sousuo_icon.png",
- "html/jkjy/images/shoucang_pre.png",
- "html/jkjy/images/shoucang_button.png",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "html/jkjy/css/jiankangjiaoyu.css",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "js/template.js",
- "js/common_http.js",
- "images/shujuweikong_img.png",
- "html/jkjy/images/yifasong_icon.png"
- ],
- "refer": [
- "html/login/html/login.html",
- "html/jkjy/html/xuanzejumin.html",
- "html/jkjy/html/article.html"
- ]
- },
- "html/jkjy/html/xuanzejumin.html": {
- "resources": [
- "html/jkjy/js/xuanzejumin.js",
- "html/jkjy/images/checked_all.png",
- "html/jkjy/css/xuanzejumin.css",
- "images/p-default.png",
- "images/p-female.png",
- "html/jkjy/images/tanchuang_icon.png",
- "html/jkjy/images/unchecked.png",
- "images/shujuweikong_img.png",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "images/sousuo_icon.png",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/underscore.js",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "js/template.js",
- "js/common_http.js",
- "images/weixing_icon.png",
- "html/jkjy/images/checked.png"
- ],
- "refer": [
- "html/error/html/error.html",
- "html/jkjy/html/search_jumin.html",
- "html/login/html/login.html"
- ]
- },
- "html/jkjy/html/jiankangjiaoyu.html": {
- "resources": [
- "html/jkjy/images/liulan_icon.png",
- "html/jkjy/js/jiankangjiaoyu.js",
- "html/jkjy/images/zhuanfa_icon.png",
- "html/jkjy/css/jiankangjiaoyu.css",
- "common/images/pull-icon@2x.png",
- "html/jkjy/images/shoucang_pre.png",
- "html/jkjy/images/shoucang_button.png",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "images/sousuo_icon.png",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "js/template.js",
- "js/common_http.js",
- "html/jkjy/images/yifasong_icon.png",
- "html/jkjy/images/sousuo_icon.png",
- "fonts/mui.ttf",
- "html/jkjy/images/soucang_icon.png",
- "html/jkjy/images/lishi_icon.png",
- "images/shujuweikong_img.png",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "css/mui.min.css"
- ],
- "refer": [
- "html/jkjy/html/my_store.html",
- "html/jkjy/html/xuanzejumin.html",
- "html/jkjy/html/article.html",
- "html/login/html/login.html",
- "html/jkjy/html/search_article.html",
- "html/search/html/xuanzejumin_more.html",
- "html/jkjy/html/fasongjilu.html"
- ]
- },
- "html/tuandui/html/tuandui.html": {
- "resources": [
- "common/cross/css/cross.ui.css",
- "images/d-male.png",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "html/js/l-scroll.css",
- "html/tuandui/images/tuanduquanliao_icon.png",
- "images/sousuo_icon.png",
- "html/tuandui/js/tuandui.js",
- "images/d-female.png",
- "html/tuandui/css/tuandui.css",
- "js/underscore.js",
- "js/es6-promise.js",
- "html/tuandui/images/checked_blue.png",
- "html/js/l-scroll.js",
- "js/template.js",
- "html/js/templateHelp.js",
- "common/iconfont/iconfont.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "js/mui.pullToRefresh.js",
- "css/mui-pull.css",
- "js/mui.pullToRefresh.material.js",
- "js/im.client.js",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/tuandui/html/search.html",
- "html/error/html/error.html",
- "html/message/html/p2p.html",
- "html/message/html/tuanduiqunliao.html",
- "html/mine/html/zuyuanziliao.html",
- "html/tuandui/html/zyjm-layer.html",
- "html/search/html/zhuanyijumin.html",
- "html/tuandui/html/gongzuobaogao.html",
- "html/login/html/login.html"
- ]
- },
- "html/tuandui/html/search.html": {
- "resources": [
- "html/js/android.js",
- "html/js/templateHelp.js",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "html/tuandui/css/tuandui.css",
- "images/sousuo_icon.png",
- "images/shujuweikong_img.png",
- "common/cross/css/cross.ui.css",
- "common/iconfont/iconfont.css",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css",
- "html/js/common.js",
- "js/app.js",
- "js/underscore.js",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/common_http.js",
- "js/template.js",
- "js/im.client.js",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": []
- },
- "html/jkjy/html/article.html": {
- "resources": [
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "js/im_new.js",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "html/jkjy/images/shoucang_button.png",
- "common/css/pull-up-down.css",
- "js/mui.min.js",
- "html/jkjy/css/jiankangjiaoyu.css",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "js/template.js",
- "html/jkjy/images/zhuanfa2_icon.png",
- "html/jkjy/images/shoucang_pre.png"
- ],
- "refer": [
- "html/search/html/xuanzejumin_more.html"
- ]
- },
- "html/error/html/error.html": {
- "resources": [
- "images/quesheng_img.png",
- "html/error/css/error.css",
- "html/error/js/error.js",
- "common/cross/css/cross.ui.css",
- "js/underscore.js",
- "js/es6-promise.js",
- "js/app.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css",
- "js/common_http.js",
- "js/template.js",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": []
- },
- "html/jkjy/html/search_jumin.html": {
- "resources": [
- "html/jkjy/js/search_jumin.js"
- ],
- "refer": []
- },
- "html/jkjy/html/search_article.html": {
- "resources": [
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "common/iconfont/iconfont.css",
- "images/sousuo_icon.png",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "html/js/android.js",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "html/jkjy/css/jiankangjiaoyu.css",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/jkjy/html/article.html"
- ]
- },
- "html/qygl/html/sign_manage.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "html/qygl/js/sign_manage.js",
- "html/qygl/css/qygl.css",
- "images/p-female.png",
- "images/p-default.png",
- "html/qygl/js/base.js",
- "html/qygl/css/yy-qygl.css",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "js/app.js",
- "html/js/l-scroll.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/common_http.js",
- "html/js/l-scroll.js",
- "html/qygl/images/quanbutixing_btn.png",
- "css/mui.min.css",
- "images/weixing_icon.png"
- ],
- "refer": [
- "html/qygl/html/xiaoxichuli.html",
- "html/huanzhe/html/huanzhexinxi.html",
- "html/qygl/html/patient-manage.html"
- ]
- },
- "html/mine/html/gerenziliao.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/im_new.js",
- "html/mine/css/gerenziliao.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "html/mine/js/upload_photo_modify.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/css/doc-style.css",
- "js/template.js",
- "js/common_http.js",
- "images/d-male.png",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/mine/html/clip_photo.html",
- "html/mine/html/edit_mobilephone.html",
- "html/mine/html/modify.html",
- "html/mine/html/clip_photo2.html"
- ]
- },
- "html/mine/html/shezhimima.html": {
- "resources": [
- "common/css/doc-style.css",
- "html/mine/css/shenfenyanzheng.css",
- "js/security.js",
- "js/underscore.js",
- "js/es6-promise.js",
- "common/css/jy-style.css"
- ],
- "refer": []
- },
- "html/home/html/xiaoxipage.html": {
- "resources": [
- "html/home/images/jiankangtizheng_icon.png",
- "html/home/images/taolunzu_n.png",
- "html/home/js/xiaoxi.js",
- "html/home/images/qianyuexiaoxi_icon.png",
- "html/home/images/xitongxiaoxi.png",
- "common/css/ss-doctor.css",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "js/app.js",
- "common/cross/css/cross.min.css",
- "js/im_new.js",
- "common/iconfont/iconfont.css",
- "html/js/l-scroll.css",
- "html/js/common.js",
- "common/cross/css/ui.all.min.css",
- "html/home/css/xiaoxi.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/js/date-ext.js",
- "js/template.js",
- "js/common_http.js",
- "html/js/l-scroll.js",
- "css/mui-pull.css",
- "js/mui.pullToRefresh.material.js",
- "js/im.client.js",
- "html/home/images/xufangxiaoxi_icon.png",
- "common/cross/images/logo_dibu_img.png",
- "js/mui.pullToRefresh.js",
- "html/home/images/jiebang_xiaoxi_icon.png",
- "html/home/images/wenzhangshenhexiaoxi_icon.png"
- ],
- "refer": [
- "html/qygl/html/qianyuexiaoxi.html",
- "html/error/html/error.html",
- "html/xiaoxi/html/tizhengzhibiao.html",
- "html/xiaoxi/html/jiankangtizheng.html",
- "html/message/html/xitongxiaoxi.html",
- "html/prescription/html/xufangxiaoxi.html",
- "html/xtfw/html/xietongfuwu-message.html",
- "html/login/html/login.html",
- "html/jkjy/html/shenhexiaoxi.html"
- ]
- },
- "html/home/html/jumingim.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "html/home/css/search-bar.css",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "html/home/js/search-bar.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "common/css/doc-style.css",
- "js/jquery.ellipsis.js",
- "html/home/css/jumingim.css",
- "fonts/font-awesome/css/font-awesome.min.css",
- "html/home/js/jumingim.js",
- "images/p-female.png",
- "common/images/pull-icon@2x.png",
- "common/cross/css/cross.ui.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "images/sousuo_icon.png",
- "common/cross/css/cross.css",
- "common/css/pull-up-down.css",
- "js/es6-promise.js",
- "js/common_http.js",
- "html/js/l-scroll.js",
- "common/css/ss-doctor.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "js/im_new.js",
- "html/js/l-scroll.css",
- "images/p-default.png",
- "images/d-male.png",
- "html/home/images/feizixunzhong-juming_icon.png",
- "css/mui-pull.css",
- "js/mui.pullToRefresh.js",
- "js/mui.pullToRefresh.material.js",
- "js/im.client.js",
- "common/cross/images/logo_dibu_img.png",
- "images/loading2.gif"
- ],
- "refer": [
- "html/home/html/sousuojuming.html",
- "html/message/html/p2dzixun.html",
- "html/message/html/qiuzhuqunliao.html",
- "html/home/html/fzxz-jumingim.html",
- "html/message/html/xufangzixun.html",
- "html/error/html/error.html",
- "html/login/html/login.html"
- ]
- },
- "html/home/html/sousuoyisheng.html": {
- "resources": [
- "html/home/js/sousuoyisheng.js",
- "html/home/css/sousuojuming.css",
- "fonts/font-awesome/fonts/fontawesome-webfont.woff",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/iconfont/iconfont.css",
- "html/home/js/search-bar.js",
- "images/sousuo_icon.png",
- "common/cross/css/cross.css",
- "html/js/android.js",
- "fonts/font-awesome/css/font-awesome.min.css",
- "html/home/css/search-bar.css",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/underscore.js",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "common/css/doc-style.css",
- "images/shujuweikong_img.png",
- "js/common_http.js",
- "js/template.js",
- "html/js/l-scroll.js",
- "images/d-male.png",
- "js/jquery.ellipsis.js",
- "js/app.js",
- "common/cross/images/logo_dibu_img.png",
- "js/im.client.js"
- ],
- "refer": [
- "html/home/html/sousuosimpleliaotianjilu-ys.html",
- "html/home/html/sousuoliaotianjilu.html",
- "html/home/html/sousuoqunliao.html",
- "html/home/html/sousuojuminoryisheng.html",
- "html/message/html/p2p.html",
- "html/message/html/qiuzhuqunliao.html"
- ]
- },
- "html/home/html/yishengim.html": {
- "resources": [
- "html/home/js/yishengim.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "html/home/css/search-bar.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "html/home/js/search-bar.js",
- "common/css/doc-style.css",
- "html/home/css/jumingim.css",
- "fonts/font-awesome/css/font-awesome.min.css",
- "js/jquery.ellipsis.js",
- "common/css/ss-doctor.css",
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/underscore.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/app.js",
- "common/css/jy-style.css",
- "js/im_new.js",
- "common/iconfont/iconfont.css",
- "html/js/l-scroll.css",
- "common/cross/css/cross.css",
- "common/css/pull-up-down.css",
- "js/es6-promise.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/common_http.js",
- "html/js/l-scroll.js",
- "images/d-default.png",
- "images/d-male.png",
- "images/sousuo_icon.png",
- "css/mui-pull.css",
- "js/mui.pullToRefresh.js",
- "js/mui.pullToRefresh.material.js",
- "js/im.client.js",
- "images/p-female.png",
- "common/cross/images/logo_dibu_img.png",
- "images/loading2.gif"
- ],
- "refer": [
- "html/home/html/sousuoyisheng.html",
- "html/message/html/p2p.html",
- "html/message/html/tuanduiqunliao.html",
- "html/message/html/qiuzhuqunliao.html"
- ]
- },
- "html/home/html/sousuojuming.html": {
- "resources": [
- "html/home/css/sousuojuming.css",
- "html/home/js/sousuojuming.js",
- "html/js/android.js",
- "fonts/font-awesome/fonts/fontawesome-webfont.woff",
- "common/cross/css/cross.ui.css",
- "html/home/css/search-bar.css",
- "js/underscore.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "images/shujuweikong_img.png",
- "common/css/doc-style.css",
- "js/jquery.ellipsis.js",
- "js/template.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "js/im_new.js",
- "html/home/js/search-bar.js",
- "common/cross/css/cross.css",
- "images/sousuo_icon.png",
- "fonts/font-awesome/css/font-awesome.min.css",
- "js/es6-promise.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/common_http.js",
- "html/js/l-scroll.js",
- "common/cross/images/logo_dibu_img.png",
- "js/im.client.js"
- ],
- "refer": [
- "html/home/html/sousuoliaotianjilu.html",
- "html/home/html/sousuoqianyuejumin.html",
- "html/home/html/sousuoqunliao.html",
- "html/home/html/sousuosimpleliaotianjilu.html",
- "html/home/html/sousuojuminoryisheng.html",
- "html/message/html/qiuzhuqunliao.html"
- ]
- },
- "html/home/html/admin.html": {
- "resources": [
- "html/home/images/qianyuguanli_hui_icon.png",
- "html/home/images/qiehuan_btn.png",
- "images/s-admin.png",
- "html/home/images/jixiaoguanli_icon.png",
- "html/home/images/yishenshiyong_hui_icon.png",
- "common/css/cyc.css",
- "html/home/images/yeweifenxi_icon.png",
- "images/wodegongzuo_icon.png",
- "html/home/css/admin.css",
- "html/home/images/tuigaiqian_icon.png",
- "images/fuwufenxi_icon.png",
- "html/home/images/jumingshiyong_hui_icon.png",
- "html/home/images/jumingfenxi_icon.png",
- "common/css/iscroll.css",
- "html/home/images/qianyujinzhan_icon.png",
- "html/home/images/huanzheguanli_icon.png",
- "js/iscroll-probe.js",
- "html/home/images/yishengguanli_icon.png",
- "html/home/images/jigouguanli_icon.png",
- "js/iscroll-pull-up-down.js",
- "html/home/images/mingyiguanli_icon.png",
- "js/waterbubble.js",
- "common/css/ss-doctor.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "common/cross/css/cross.min.css",
- "common/cross/css/ui.all.min.css",
- "images/s-male.png",
- "images/d-male.png",
- "html/home/images/lianglvfenxi_icon.png",
- "html/home/images/mingyiguanli_icon-dis.png",
- "common/css/l_size.css",
- "css/mui-pull.css",
- "html/js/common.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "js/mui.pullToRefresh.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "js/mui.pullToRefresh.material.js",
- "js/common_http.js",
- "html/home/images/yishengtijian_icon.png",
- "html/home/images/zixunfenxi.png",
- "html/home/images/jiebangshebei.png",
- "html/home/images/survey.png",
- "html/home/images/icon_manyidufenxi.png",
- "html/manager/images/guanbi_01_btn.png",
- "html/home/images/xuqianjinzhan_icon.png",
- "html/home/images/xiazhan_guanliyuan_icon.png",
- "common/cross/images/logo_dibu_img.png",
- "js/template.js",
- "css/mui.min.css",
- "images/hospital_default.png",
- "images/loading2.gif",
- "html/home/images/guanbi(dahao)_btn.png",
- "images/s-female.png",
- "html/home/images/icon_changfufangfenxi.png",
- "html/home/images/icon_zixunfenxi.png",
- "html/home/images/huodongfenxi.png",
- "html/home/images/device_manage.png",
- "html/home/js/admin.js",
- "html/home/images/icon_jianjiaotuisong.png"
- ],
- "refer": [
- "html/manager/html/yewufenxi.html",
- "html/observer/html/district.html",
- "html/manager/html/qianyuetongji2.html",
- "html/manager/html/analysis1.html",
- "html/manager/html/tuigaiqian.html",
- "html/manager/html/lianglvfenxi-sheguan.html",
- "html/observer/html/doctors.html",
- "html/survey/html/survey_list.html",
- "html/manager/html/manyidufenxi.html",
- "html/manager/html/xuqiantongji.html",
- "html/mine/html/shezhimima.html",
- "html/home/html/jianjiaotuisong.html",
- "html/manager/html/prescription-analysis.html",
- "html/login/html/login.html",
- "html/manager/html/qianyuetongji-new.html"
- ]
- },
- "html/home/html/qiehuan.html": {
- "resources": [
- "common/cross/css/cross.min.css",
- "html/home/images/yisheng_btn.png",
- "html/home/css/qiehuan.css",
- "html/home/images/checked.png",
- "html/home/images/colorback.jpg",
- "html/home/images/guanliyuan_btn.png",
- "common/cross/css/ui.all.min.css",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": []
- },
- "html/huanzhe/html/huanzeziliao.html": {
- "resources": [
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "html/js/expensesUpdate.js",
- "js/mui.min.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "common/css/doc-style.css",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "html/js/common.js",
- "js/underscore.js",
- "js/jquery/2.1.3/jquery.js",
- "js/template.js",
- "js/common_http.js",
- "html/huanzhe/js/huanzeziliao.js"
- ],
- "refer": []
- },
- "html/wdyy/html/huanzhe.html": {
- "resources": [
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "images/sousuo_icon.png",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/wdyy/js/huanzhe.js",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/common_http.js",
- "images/p-female.png",
- "html/wdyy/images/checked_blue.png"
- ],
- "refer": [
- "html/wdyy/html/appointment-register.html",
- "html/login/html/login.html"
- ]
- },
- "html/wdyy/html/appointment-register.html": {
- "resources": [
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "html/wdyy/css/appointment-register.css",
- "html/wdyy/images/hospital_default.png",
- "html/wdyy/css/sq-style.css",
- "js/mui.min.js",
- "html/wdyy/js/appointment-register.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/security.js",
- "html/wdyy/css/sfp-style.css",
- "common/images/pull-icon@2x.png",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "js/common_http.js",
- "js/template.js",
- "html/wdyy/images/yuyuejilu_icon.png"
- ],
- "refer": [
- "html/wdyy/html/hospital-dept.html",
- "html/xtfw/html/xietongfuwu-deal.html",
- "html/xtfw/html/xietongfuwu-yy.html",
- "html/wdyy/html/detail-appointment.html"
- ]
- },
- "html/wdyy/html/info-confirm.html": {
- "resources": [
- "html/wdyy/css/detail-appointment.css",
- "html/wdyy/js/info-confirm.js",
- "html/wdyy/images/tixing_icon.png"
- ],
- "refer": [
- "html/wdyy/html/detail-appointment.html"
- ]
- },
- "html/wdyy/html/select-doctor.html": {
- "resources": [
- "html/wdyy/js/select-doctor.js",
- "images/d-male.png",
- "html/wdyy/css/my-appointment.css",
- "css/cross.css",
- "css/iscroll.css",
- "images/d-female.png",
- "iconfont/iconfont.css",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "html/wdyy/css/sq-style.css",
- "common/images/pull-icon@2x.png",
- "common/cross/css/cross.css",
- "html/wdyy/css/sfp-style.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "js/security.js",
- "js/template.js",
- "js/common_http.js",
- "html/wdyy/images/wufayuyue_icon.png",
- "common/cross/images/logo_dibu_img.png",
- "images/shujuweikong_img.png"
- ],
- "refer": [
- "html/wdyy/html/doctor-detail.html"
- ]
- },
- "html/wdyy/html/hospital-dept.html": {
- "resources": [
- "html/wdyy/css/zx-style.css",
- "html/wdyy/js/hospital-dept.js",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "common/images/pull-icon@2x.png",
- "common/cross/css/cross.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "js/security.js",
- "js/template.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/wdyy/html/select-doctor.html"
- ]
- },
- "html/wdyy/html/doctor-detail.html": {
- "resources": [
- "html/wdyy/js/doctor-detail.js",
- "html/wdyy/images/shijian_icon.png",
- "html/wdyy/images/shou02_icon.png",
- "html/wdyy/css/doctor-detail.css",
- "html/wdyy/css/sfdoc-style.css",
- "html/wdyy/images/yishengxiangqing_bg.png",
- "images/p-default.png",
- "html/wdyy/images/shou_icon.png"
- ],
- "refer": [
- "html/wdyy/html/info-confirm.html"
- ]
- },
- "html/message/html/p2p.html": {
- "resources": [
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "js/app.js",
- "js/im_new.js",
- "html/js/l-img-view.js",
- "html/js/l-scroll.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "html/message/images/fenxiang_icon.png",
- "html/css/chatroom.css",
- "html/message/js/chatRoom.js",
- "js/underscore.js",
- "js/mui.zoom.js",
- "js/mui.min.js",
- "html/message/images/more-tb2.png",
- "js/jquery/2.1.3/jquery.js",
- "html/message/js/p2p.js",
- "css/mui.min.css",
- "js/mui.previewimage.js",
- "html/message/css/yy-style.css",
- "css/mui.previmg.css",
- "js/template.js",
- "js/common_http.js",
- "html/message/images/more-tb1.png",
- "html/message/images/gerenxinxi_pre.png",
- "html/message/images/tw-add.png",
- "html/js/l-scroll.js",
- "html/message/images/paizhao_icon.png",
- "images/d-male.png",
- "html/message/images/tupian_icon.png",
- "html/message/js/socketConnect.js",
- "html/js/service.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "html/js/sqliteUtil.js",
- "html/message/images/yuying_icon.png",
- "html/message/images/jianpang_icon.png",
- "js/im.client.js",
- "html/message/images/kuaijiehuifu_icon.png",
- "html/message/images/yuyin_icon.png",
- "html/message/images/bofang_icon.png",
- "html/message/images/zuoshanjiao_bg.png",
- "html/message/images/youshanjiao_bg.png",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/huanzhe/html/huanzhexinxi.html"
- ]
- },
- "html/wdyy/html/my-appointment.html": {
- "resources": [
- "html/wdyy/js/my-appointment.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/mui.min.js",
- "html/wdyy/css/my-appointment.css",
- "js/security.js",
- "images/shujuweikong_img.png"
- ],
- "refer": []
- },
- "html/qygl/html/qianyuexiaoxi.html": {
- "resources": [
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/js/common.js",
- "images/shujuweikong_img.png",
- "common/cross/css/cross.css",
- "js/template.js",
- "js/common_http.js",
- "images/p-female.png"
- ],
- "refer": [
- "html/qygl/html/xiaoxichuli.html",
- "html/qygl/html/xuqian_management.html"
- ]
- },
- "html/qygl/html/xiaoxichuli.html": {
- "resources": [
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "fonts/mui.ttf",
- "html/qygl/js/xiaoxichuli.js"
- ],
- "refer": [
- "html/huanzhe/html/disease-label-choose.html"
- ]
- },
- "html/huanzhe/html/disease-label-choose.html": {
- "resources": [
- "common/css/ss-doctor.css",
- "js/app.js",
- "common/cross/css/cross.min.css",
- "html/huanzhe/css/disease.css",
- "html/huanzhe/images/jiankangqingkuang_icon.png",
- "html/huanzhe/images/jibingleixing_icon.png",
- "html/huanzhe/images/zidingyibiaoqian_icon.png",
- "common/cross/css/ui.all.min.css",
- "common/cross/css/cross.ui.css",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js"
- ],
- "refer": []
- },
- "html/hzzd/html/xinzengzhidao.html": {
- "resources": [
- "js/upload_preview.js",
- "html/hzzd/iconfont/iconfont.css"
- ],
- "refer": []
- },
- "html/huanzhe/html/disease-label.html": {
- "resources": [
- "common/css/ss-doctor.css",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/cross/css/cross.min.css",
- "html/huanzhe/css/disease.css",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "html/huanzhe/images/jiankangqingkuang_icon.png",
- "js/jquery/2.1.3/jquery.js",
- "html/huanzhe/images/jibingleixing_icon.png",
- "js/common_http.js",
- "html/huanzhe/images/zidingyibiaoqian_icon.png",
- "common/cross/css/ui.all.min.css"
- ],
- "refer": [
- "html/huanzhe/html/disease-label-edit.html"
- ]
- },
- "html/manager/html/yewufenxi.html": {
- "resources": [
- "html/manager/js/wc-motion-chart.js",
- "html/manager/js/l-picker.js",
- "common/cross/css/cross.ui.css",
- "widget/echarts/2.2.7/js/echarts-all.js",
- "html/manager/css/manager.css",
- "common/images/pull-icon@2x.png",
- "common/cross/css/cross.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/underscore.js",
- "html/manager/js/yewufenxi.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "css/mui.min.css",
- "common/css/doc-style.css",
- "html/manager/css/animate.css",
- "js/waterbubble.js",
- "js/common_http.js",
- "js/template.js",
- "html/manager/images/dizhi_icon.png",
- "html/manager/images/hanbaobao_icon.png",
- "html/manager/images/yiwen_icon.png",
- "common/css/l_size.css",
- "html/manager/images/guanbi_01_btn.png",
- "common/cross/css/cross.min.css",
- "common/cross/images/logo_dibu_img.png",
- "images/noset.png"
- ],
- "refer": [
- "html/manager/html/shaixuan2.html",
- "html/error/html/error.html"
- ]
- },
- "html/home/html/sousuoliaotianjilu.html": {
- "resources": [
- "html/home/js/sousuoliaotianjilu.js",
- "html/home/images/fanhui.png",
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "html/js/android.js",
- "html/home/css/search-bar.css",
- "js/underscore.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "html/home/css/sousuojuming.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "images/shujuweikong_img.png",
- "common/css/doc-style.css",
- "js/jquery.ellipsis.js",
- "js/template.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/css/jy-style.css",
- "js/app.js",
- "js/im_new.js",
- "common/iconfont/iconfont.css",
- "html/home/js/search-bar.js",
- "html/js/l-scroll.css",
- "common/cross/css/cross.css",
- "images/sousuo_icon.png",
- "js/es6-promise.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/common_http.js",
- "html/js/l-scroll.js"
- ],
- "refer": [
- "html/home/html/sousuosimpleliaotianjilu.html",
- "html/home/html/sousuosimpleliaotianjilu-ys.html"
- ]
- },
- "html/home/html/sousuoqianyuejumin.html": {
- "resources": [
- "html/home/images/fanhui.png",
- "html/home/js/sousuoqianyuejumin.js"
- ],
- "refer": []
- },
- "html/huanzhe/html/jianchajianyan.html": {
- "resources": [
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "common/images/pull-icon@2x.png",
- "common/cross/css/cross.css",
- "html/huanzhe/css/jianchajianyan.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "html/huanzhe/js/jianchajianyan.js",
- "common/css/doc-style.css",
- "images/shujuweikong_img.png",
- "js/common_http.js",
- "js/template.js"
- ],
- "refer": [
- "html/huanzhe/html/single-profile.html"
- ]
- },
- "html/huanzhe/html/zhuyuanjilu.html": {
- "resources": [
- "html/huanzhe/js/zhuyuanjilu.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "common/images/pull-icon@2x.png",
- "common/cross/css/cross.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "common/css/doc-style.css",
- "images/shujuweikong_img.png",
- "js/common_http.js",
- "js/template.js",
- "html/huanzhe/css/zhuyuanjilu.css"
- ],
- "refer": [
- "html/huanzhe/html/event-profile.html"
- ]
- },
- "html/huanzhe/html/menzhenjilu.html": {
- "resources": [
- "html/huanzhe/js/menzhenjilu.js",
- "html/huanzhe/css/menzhenjilu.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/iscroll-pull-up-down.js",
- "common/images/pull-icon@2x.png",
- "common/css/doc-style.css"
- ],
- "refer": [
- "html/huanzhe/html/event-profile.html"
- ]
- },
- "html/mygl/html/mingyizixunliebiao.html": {
- "resources": [
- "html/mygl/css/mingyizixunliebiao.css",
- "images/d-default.png",
- "html/mygl/js/search-bar.js",
- "common/images/pull-icon@2x.png",
- "html/mygl/js/mingyizixunliebiao.js",
- "images/p-default.png",
- "images/p-female.png",
- "html/mygl/css/search-bar.css"
- ],
- "refer": [
- "html/mygl/html/zixun-xuanzeyisheng.html",
- "html/message/html/p2p.html"
- ]
- },
- "html/mygl/html/faqizixun.html": {
- "resources": [
- "widget/scale/scale.js",
- "js/security.js",
- "html/mygl/js/faqizixun.js",
- "js/upload_preview.js"
- ],
- "refer": []
- },
- "html/mygl/html/zixun-xuanzeyisheng.html": {
- "resources": [
- "html/mygl/js/zixun-xuanzeyisheng.js",
- "html/mygl/css/zixun-xuanzeyisheng.css"
- ],
- "refer": [
- "html/mygl/html/faqizixun.html"
- ]
- },
- "html/huanzhe/html/searchhuanzhe.html": {
- "resources": [
- "html/huanzhe/js/search-bar.js",
- "html/huanzhe/js/searchhuanzhe.js",
- "html/huanzhe/css/searchhuanzhe.css",
- "html/huanzhe/css/search-bar.css",
- "images/weixing_icon.png",
- "images/p-default.png",
- "html/huanzhe/images/sousuo_qianyu_icon.png",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "html/js/l-scroll.css",
- "html/js/android.js",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/iscroll-pull-up-down.js",
- "html/js/l-scroll.js",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "html/js/common.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "images/sousuo_icon.png",
- "js/es6-promise.js",
- "js/common_http.js",
- "images/p-female.png",
- "common/images/pull-icon@2x.png",
- "html/huanzhe/js/pull-up-down-2.js"
- ],
- "refer": [
- "html/huanzhe/html/huanzhexinxi.html",
- "html/huanzhe/html/search_all.html"
- ]
- },
- "html/wdsb/html/my-equipments.html": {
- "resources": [
- "css/ss-style.css",
- "html/wdsb/images/bangding_img.png",
- "html/wdsb/images/xuanfu_btn.png",
- "html/wdsb/js/tounthcyc.js",
- "css/iscroll.css",
- "html/wdsb/js/my-equipments.js",
- "html/wdsb/images/tuoyuan.png",
- "html/wdsb/css/my-equipments.css",
- "iconfont/iconfont.css",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/cross/css/cross.css",
- "common/cross/css/ui.all.min.css",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/common_http.js"
- ],
- "refer": []
- },
- "html/message/html/p2dzixun.html": {
- "resources": [
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "html/message/images/qiuzhuyisheng_icon.png",
- "html/js/common.js",
- "html/message/images/paizhao_icon.png",
- "html/message/images/fenxiang_icon.png",
- "html/message/js/chatRoom.js",
- "js/underscore.js",
- "js/mui.zoom.js",
- "js/mui.min.js",
- "html/message/images/jiankangjiaoyu_icon.png",
- "js/jquery/2.1.3/jquery.js",
- "js/mui.previewimage.js",
- "js/template.js",
- "html/message/images/tw-add.png",
- "js/app.js",
- "js/im_new.js",
- "html/js/l-img-view.js",
- "html/js/l-scroll.css",
- "common/cross/css/cross.css",
- "html/message/images/tupian_icon.png",
- "html/css/chatroom.css",
- "html/message/js/p2dzixun.js",
- "css/mui.min.css",
- "html/message/images/daiyuyue_icon.png",
- "html/message/css/yy-style.css",
- "css/mui.previmg.css",
- "js/common_http.js",
- "html/js/l-scroll.js",
- "html/message/images/gerenxinxi_pre.png",
- "images/d-male.png",
- "html/js/sqliteUtil.js",
- "html/message/images/jiankangzhidao_icon.png",
- "html/message/js/socketConnect.js",
- "html/message/images/linshisuifang_icon.png",
- "html/message/images/yuying_icon.png",
- "html/message/images/jianpang_icon.png",
- "html/js/service.js",
- "html/message/images/kuaijiehuifu_icon.png",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/im.client.js",
- "images/default_share_blue.png",
- "html/message/images/bofang_icon.png",
- "html/message/images/youshanjiao_bg.png",
- "html/message/images/yuyin4_icon.png",
- "html/message/images/zuoshanjiao_bg.png",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/qzys/html/select_quanke.html",
- "html/huanzhe/html/huanzhexinxi.html",
- "html/hzzd/html/guidance_info.html",
- "html/kjhf/html/list.html",
- "html/error/html/error.html",
- "html/hzzd/html/guidance_list.html",
- "html/login/html/login.html",
- "html/qzys/html/select_doctor.html",
- "html/jkjy/html/jiankangjiaoyu.html"
- ]
- },
- "html/message/html/qiuzhuqunliao.html": {
- "resources": [
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "html/message/images/qiuzhuyisheng_icon.png",
- "html/js/common.js",
- "html/message/images/paizhao_icon.png",
- "html/message/images/fenxiang_icon.png",
- "html/message/js/chatRoom.js",
- "js/underscore.js",
- "js/mui.zoom.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/mui.previewimage.js",
- "js/template.js",
- "html/message/images/tw-add.png",
- "js/app.js",
- "js/im_new.js",
- "html/js/l-img-view.js",
- "html/js/l-scroll.css",
- "common/cross/css/cross.css",
- "html/message/images/tupian_icon.png",
- "html/css/chatroom.css",
- "css/mui.min.css",
- "html/message/css/yy-style.css",
- "css/mui.previmg.css",
- "js/common_http.js",
- "html/message/js/qiuzhuqunliao.js",
- "html/js/l-scroll.js",
- "images/d-male.png",
- "html/message/images/tuandui_pre.png"
- ],
- "refer": [
- "html/browser/html/browser.html"
- ]
- },
- "html/home/html/sousuoqunliao.html": {
- "resources": [
- "html/home/js/sousuoqunliao.js",
- "html/home/images/fanhui.png",
- "images/d-male.png"
- ],
- "refer": [
- "html/message/html/qiuzhuqunliao.html"
- ]
- },
- "html/home/html/sousuosimpleliaotianjilu.html": {
- "resources": [
- "html/home/js/sousuosimpleliaotianjilu.js"
- ],
- "refer": []
- },
- "html/home/html/sousuosimpleliaotianjilu-ys.html": {
- "resources": [
- "html/home/js/sousuosimpleliaotianjilu-ys.js"
- ],
- "refer": []
- },
- "html/home/html/sousuojuminoryisheng.html": {
- "resources": [
- "html/home/js/sousuojuminoryisheng.js",
- "html/home/images/fanhui.png"
- ],
- "refer": [
- "html/message/html/p2p.html"
- ]
- },
- "html/message/html/tuanduiqunliao.html": {
- "resources": [
- "html/message/js/chatRoom.js",
- "js/mui.zoom.js",
- "html/js/l-img-view.js",
- "html/message/js/tuanduiqunliao.js",
- "js/mui.previewimage.js",
- "html/message/css/yy-style.css",
- "html/message/images/paizhao_icon.png",
- "css/mui.previmg.css",
- "html/message/images/fenxiang_icon.png",
- "html/message/images/tuandui_pre.png",
- "html/message/images/tupian_icon.png",
- "html/message/images/tw-add.png",
- "html/css/chatroom.css",
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "js/app.js",
- "js/im_new.js",
- "html/js/l-scroll.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/template.js",
- "js/common_http.js",
- "html/js/l-scroll.js",
- "images/d-male.png",
- "html/js/service.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "html/js/sqliteUtil.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "html/message/images/yuying_icon.png",
- "html/message/images/jianpang_icon.png",
- "js/im.client.js",
- "html/message/images/kuaijiehuifu_icon.png",
- "html/message/images/bofang_icon.png",
- "html/message/images/zuoshanjiao_bg.png",
- "html/message/js/socketConnect.js"
- ],
- "refer": [
- "html/error/html/error.html",
- "html/tuandui/html/tuanduishezhi.html"
- ]
- },
- "html/xiaoxi/html/tizhengzhibiao.html": {
- "resources": [
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "js/common_http.js",
- "js/template.js"
- ],
- "refer": []
- },
- "html/browser/html/browser.html": {
- "resources": [
- "common/images/close.png"
- ],
- "refer": []
- },
- "html/mine/html/clip_photo.html": {
- "resources": [
- "html/mine/images/fangda_icon.png",
- "html/mine/images/suoxiao_icon.png"
- ],
- "refer": []
- },
- "html/qzys/html/select_quanke.html": {
- "resources": [
- "html/qzys/css/search-bar.css",
- "html/qzys/css/select_doctor.css",
- "html/js/templateHelp.js",
- "js/es6-promise.js",
- "images/shujuweikong_img.png"
- ],
- "refer": [
- "html/qzys/html/faqizixun.html"
- ]
- },
- "html/qzys/html/faqizixun.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/css/jy-style.css",
- "widget/scale/scale.js",
- "common/iconfont/iconfont.css",
- "html/qzys/js/faqizixun.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "html/qzys/js/auto_rec_ssc_photo.js",
- "js/security.js",
- "common/css/doc-style.css",
- "js/upload_preview.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "js/im_new.js",
- "common/cross/css/cross.css",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/message/html/qiuzhuqunliao.html"
- ]
- },
- "html/tuandui/html/tuanduishezhi.html": {
- "resources": [
- "html/js/templateHelp.js",
- "html/tuandui/css/tuandui.css",
- "common/iconfont/iconfont.css",
- "html/tuandui/css/tuanduishezhi.css"
- ],
- "refer": []
- },
- "html/wdyy/html/doctor-appointment.html": {
- "resources": [
- "html/wdyy/css/appointment-register.css",
- "html/wdyy/css/sq-style.css",
- "html/wdyy/css/my-appointment.css",
- "js/security.js",
- "html/wdyy/js/doctor-appointment.js",
- "html/wdyy/css/sfp-style.css",
- "common/images/pull-icon@2x.png",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/common_http.js",
- "js/template.js",
- "images/shujuweikong_img.png",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/wdyy/html/huanzhe.html",
- "html/wdyy/html/detail-appointment.html"
- ]
- },
- "html/wdyy/html/detail-appointment.html": {
- "resources": [
- "html/wdyy/css/detail-appointment.css",
- "html/wdyy/js/detail-appointment.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/iconfont/iconfont.css",
- "html/wdyy/css/sq-style.css",
- "common/cross/css/cross.css",
- "html/wdyy/css/sfp-style.css",
- "common/css/pull-up-down.css",
- "common/cross/images/logo_dibu_img.png",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "html/wdyy/css/appointment-register.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/security.js",
- "js/common_http.js",
- "js/template.js"
- ],
- "refer": []
- },
- "html/mine/html/dailiqianyue-next.html": {
- "resources": [
- "html/mine/js/dailiqianyue-next.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/iconfont/iconfont.css",
- "fonts/mui.ttf",
- "common/cross/css/cross.css",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "widget/scale/scale.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/security.js",
- "common/css/doc-style.css",
- "js/common_http.js"
- ],
- "refer": [
- "html/huanzhe/html/disease-label-choose.html",
- "html/error/html/error.html"
- ]
- },
- "html/mine/html/erweima.html": {
- "resources": [
- "common/cross/css/cross.ui.css",
- "images/d-male.png",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "common/cross/images/d-male.png",
- "js/mui.min.js",
- "html/mine/js/jquery.qrcode.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/mine/css/yy-style.css",
- "common/cross/css/cross.css",
- "js/common_http.js"
- ],
- "refer": []
- },
- "html/hzzd/html/guidance_list.html": {
- "resources": [
- "html/hzzd/images/xinzhengmoban_icon.png",
- "html/hzzd/images/yiyongmoban_icon.png",
- "css/mui.min.css",
- "common/cross/css/ui.all.css",
- "html/hzzd/iconfont/iconfont.css",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "images/shujuweikong_img.png",
- "common/cross/css/cross.css",
- "js/template.js",
- "js/common_http.js",
- "html/hzzd/images/shiyongren_icon.png",
- "fonts/mui.ttf",
- "html/hzzd/images/xuanfu_btn.png",
- "js/es6-promise.js",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/hzzd/html/edit_guidance.html",
- "html/hzzd/html/guidance_detail.html",
- "html/hzzd/html/sys_guidance_list.html",
- "html/hzzd/html/tuanduimubanliebiao.html"
- ]
- },
- "html/mine/html/gongzuoshezhi.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "html/mine/css/mui.switch.css",
- "html/mine/js/gongzuoshezhi.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/underscore.js",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "common/css/doc-style.css",
- "js/common_http.js",
- "js/template.js",
- "html/mine/css/gongzuoshezhi.css"
- ],
- "refer": [
- "html/mine/html/worktime.html"
- ]
- },
- "html/mine/html/edit_mobilephone.html": {
- "resources": [
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "common/css/doc-style.css",
- "js/common_http.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/cross/css/cross.css",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css"
- ],
- "refer": []
- },
- "html/mine/html/modify.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "fonts/mui.ttf",
- "common/css/doc-style.css",
- "css/mui.min.css"
- ],
- "refer": []
- },
- "html/mine/html/zuyuanziliao.html": {
- "resources": [
- "html/mine/images/man.png",
- "common/css/doc-style.css",
- "html/mine/css/zuyuanziliao.css",
- "html/mine/images/woman.png"
- ],
- "refer": [
- "html/tuandui/html/qianyuejumin.html",
- "html/message/html/p2p.html"
- ]
- },
- "html/huanzhe/html/jiatingchengyuan.html": {
- "resources": [
- "common/css/pull-up-down.css",
- "html/huanzhe/js/jiatingchengyuan.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "images/p-female.png",
- "html/huanzhe/css/huanzhexinxi.css",
- "js/jquery/2.1.3/jquery.js",
- "js/mui.js",
- "js/common_http.js",
- "js/template.js"
- ],
- "refer": []
- },
- "html/observer/html/district.html": {
- "resources": [
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/underscore.js",
- "js/es6-promise.js",
- "html/observer/css/search-bar.css",
- "images/sousuo_icon.png",
- "common/cross/css/cross.css",
- "js/template.js"
- ],
- "refer": [
- "html/observer/html/hospital.html",
- "html/observer/html/search_doctor.html"
- ]
- },
- "html/observer/html/hospital.html": {
- "resources": [
- "images/hospital_default.png"
- ],
- "refer": [
- "html/observer/html/doctors.html"
- ]
- },
- "html/observer/html/doctors.html": {
- "refer": [
- "html/home/html/relogin.html"
- ],
- "resources": [
- "html/observer/css/search-bar.css",
- "images/sousuo_icon.png",
- "images/d-male.png"
- ]
- },
- "html/ggzx/html/ggzx-zhuanxiehuida.html": {
- "resources": [
- "js/upload_preview.js"
- ],
- "refer": []
- },
- "html/hzzd/html/guidance_info.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css",
- "js/template.js",
- "js/common_http.js",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": []
- },
- "html/kjhf/html/list.html": {
- "resources": [
- "html/kjhf/images/delete.png",
- "html/kjhf/js/Sortable-edit.js",
- "html/kjhf/js/list.js",
- "html/kjhf/css/list.css",
- "html/kjhf/images/yidong_icon.png",
- "js/es6-promise.js",
- "common/iconfont/iconfont.css"
- ],
- "refer": [
- "html/kjhf/html/add_reply.html",
- "html/error/html/error.html"
- ]
- },
- "html/search/html/xuanzejumin_one.html": {
- "resources": [
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "html/search/images/tanchuang_icon.png",
- "html/search/css/xuanzejumin.css",
- "html/search/images/checked_blue.png",
- "images/sousuo_icon.png",
- "html/search/images/unchecked.png",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "html/search/images/checked_all.png",
- "html/search/js/xuanzejumin_one.js",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png",
- "html/search/images/btn_record.png",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "js/template.js",
- "images/weixing_icon.png",
- "images/p-female.png",
- "images/weixing_zihui_icon.png",
- "images/icon_xueyaji_zhihui.png",
- "images/weixing_icon2.png",
- "images/icon_xuetangyi_zhihui.png"
- ],
- "refer": [
- "html/search/html/sousuojumin_one.html",
- "html/error/html/error.html",
- "html/suifang/html/add_plan.html",
- "html/wdyy/html/appointment-register.html",
- "html/wdyy/html/doctor-appointment.html"
- ]
- },
- "html/search/html/sousuojumin_one.html": {
- "resources": [
- "html/search/images/guanbi_btn.png",
- "html/search/js/search_jumin_one.js",
- "html/js/android.js",
- "images/weixing_icon.png",
- "common/images/pull-icon@2x.png",
- "images/p-female.png",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "html/search/css/xuanzejumin.css",
- "images/sousuo_icon.png",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/error/html/error.html",
- "html/wdyy/html/appointment-register.html"
- ]
- },
- "html/search/html/xuanzejumin_more.html": {
- "resources": [
- "html/search/js/xuanzejumin_more.js",
- "html/search/images/tanchuang_icon.png",
- "html/search/images/checked_all.png",
- "html/search/css/xuanzejumin.css",
- "html/search/images/checked_blue.png",
- "html/search/images/unchecked.png",
- "common/cross/css/cross.ui.css",
- "html/js/templateHelp.js",
- "html/js/common.js",
- "js/iscroll-probe.js",
- "js/underscore.js",
- "js/pull-up-down.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "images/sousuo_icon.png",
- "common/cross/css/cross.css",
- "common/css/pull-up-down.css",
- "js/es6-promise.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/search/html/sousuojumin_more.html"
- ]
- },
- "html/search/html/sousuojumin_more.html": {
- "resources": [
- "html/search/js/search_jumin_more.js",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "html/search/css/xuanzejumin.css",
- "images/sousuo_icon.png",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "html/js/android.js",
- "html/search/images/guanbi_btn.png",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/common_http.js",
- "images/p-female.png",
- "common/images/pull-icon@2x.png"
- ],
- "refer": [
- "html/error/html/error.html"
- ]
- },
- "html/tuandui/html/zyjm-layer.html": {
- "resources": [
- "html/tuandui/css/zyjm-layer.css",
- "css/mui.min.css",
- "js/mui.min.js"
- ],
- "refer": [
- "html/search/html/zhuanyijumin.html"
- ]
- },
- "html/search/html/zhuanyijumin_search.html": {
- "resources": [
- "html/search/js/zhuanyijumin_search.js",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "html/search/css/xuanzejumin.css",
- "images/sousuo_icon.png",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "html/js/android.js",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/common_http.js",
- "html/search/images/checked_blue.png",
- "html/search/images/checked_all.png",
- "html/search/images/unchecked.png",
- "images/p-female.png",
- "common/images/pull-icon@2x.png"
- ],
- "refer": [
- "html/tuandui/html/choose_doctor.html"
- ]
- },
- "html/search/html/zhuanyijumin.html": {
- "resources": [
- "html/search/images/icon_sousuo.png",
- "html/search/js/zhuanyijumin.js",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "common/iconfont/iconfont.css",
- "html/search/css/xuanzejumin.css",
- "common/cross/css/cross.css",
- "html/js/common.js",
- "js/underscore.js",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/common_http.js",
- "js/template.js",
- "html/search/images/icon_jinru.png",
- "js/mui.js"
- ],
- "refer": [
- "html/search/html/zhuanyijumin_search.html",
- "html/tuandui/html/choose_doctor.html",
- "html/error/html/error.html",
- "html/login/html/login.html"
- ]
- },
- "html/tuandui/html/choose_doctor.html": {
- "resources": [
- "html/tuandui/css/tianjiachengyuan.css",
- "html/tuandui/js/choose_doctor.js",
- "html/tuandui/images/xanxuan_btn.png",
- "html/tuandui/images/banxuan_pre.png",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "common/iconfont/iconfont.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "html/tuandui/css/tuandui.css",
- "js/underscore.js",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "js/template.js",
- "images/d-male.png",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css"
- ],
- "refer": []
- },
- "html/home/html/fzxz-jumingim.html": {
- "resources": [
- "html/home/js/fzxz-jumingim.js",
- "images/p-female.png",
- "common/css/ss-doctor.css",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "html/home/js/search-bar.js",
- "html/js/l-scroll.css",
- "fonts/font-awesome/css/font-awesome.min.css",
- "html/home/css/jumingim.css",
- "common/css/pull-up-down.css",
- "html/home/css/search-bar.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/iscroll-pull-up-down.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "common/css/doc-style.css",
- "js/jquery.ellipsis.js",
- "js/im.client.js",
- "html/js/l-scroll.js"
- ],
- "refer": [
- "html/message/html/p2dzixun.html",
- "html/message/html/xufangzixun.html"
- ]
- },
- "html/tuandui/html/qianyuejumin.html": {
- "resources": [
- "html/tuandui/js/qianyuejumin.js",
- "js/mui.lazyload.js",
- "html/tuandui/css/xuanzejumin.css",
- "js/mui.lazyload.img.js",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "html/js/common.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/common_http.js",
- "js/template.js",
- "images/morenjiazhai_icon.png",
- "images/p-female.png"
- ],
- "refer": [
- "html/tuandui/html/zyjm-layer.html",
- "html/search/html/zhuanyijumin.html"
- ]
- },
- "html/home/html/relogin.html": {
- "refer": [
- "html/home/html/main.html"
- ],
- "resources": [
- "common/cross/images/logo_dibu_img.png",
- "js/app.js",
- "common/cross/css/cross.min.css",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/js/common.js",
- "js/common_http.js"
- ]
- },
- "html/huanzhe/html/fuwujilu.html": {
- "resources": [
- "html/huanzhe/js/fuwujilu.js",
- "html/huanzhe/images/checked_blue.png",
- "html/huanzhe/images/tianjia_icon_1.png",
- "html/huanzhe/css/fuwujilu.css",
- "html/js/l-scroll.css",
- "html/js/l-scroll.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "js/underscore.js",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/template.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/zdzx/html/zixunxiangqing.html",
- "html/jkjy/html/article.html",
- "html/suifang/html/start_plan.html",
- "html/suifang/html/fvDetail.html",
- "html/hzzd/html/guidance_list.html",
- "html/suifang/html/suifang_detail.html",
- "html/jkjy/html/jiankangjiaoyu.html",
- "html/error/html/error.html",
- "html/huanzhe/html/fuwutongji.html",
- "html/suifang/html/follow_way.html",
- "html/wdyy/html/detail-appointment.html"
- ]
- },
- "html/zdzx/html/zixunxiangqing.html": {
- "resources": [
- "html/zdzx/js/zixunxiangqing.js",
- "js/mui.zoom.js",
- "html/js/l-img-view.js",
- "html/js/service.js",
- "js/mui.previewimage.js",
- "css/mui.previmg.css",
- "html/zdzx/css/yy-style.css",
- "html/css/chatroom.css",
- "html/js/l-scroll.js",
- "html/js/l-scroll.css",
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "js/app.js",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/im.client.js",
- "js/template.js",
- "js/common_http.js",
- "html/zdzx/images/BG_shangla.png",
- "html/zdzx/images/pull-bg.png",
- "html/zdzx/images/icon_xiala.png",
- "html/zdzx/images/icon_shangla.png",
- "html/zdzx/images/1.jpg",
- "html/zdzx/css/zixunxiangqing.css",
- "html/zdzx/images/icon_xingxing.png",
- "html/zdzx/images/gerenxinxi_pre.png"
- ],
- "refer": [
- "html/message/html/p2dzixun.html",
- "html/login/html/login.html",
- "html/error/html/error.html",
- "html/huanzhe/html/huanzhexinxi.html"
- ]
- },
- "html/huanzhe/html/event-profile.html": {
- "resources": [
- "html/huanzhe/template/0101.html",
- "html/huanzhe/js/event-profile.js",
- "html/huanzhe/css/base.css",
- "html/huanzhe/js/avalon.modern.js",
- "html/huanzhe/images/img/i-visiting-result.png",
- "html/huanzhe/images/img/i-ess-info.png",
- "html/huanzhe/js/info.js",
- "html/huanzhe/images/img/i-switch.png",
- "html/huanzhe/css/info.css",
- "html/huanzhe/images/img/i-dia-basis.png",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/css/doc-style.css",
- "js/template.js",
- "js/common_http.js",
- "html/huanzhe/template/0131.html",
- "html/huanzhe/images/img/i-ins-res.png",
- "html/huanzhe/template/0141.html",
- "html/huanzhe/images/img/i-inspectors.png",
- "html/huanzhe/template/0102.html",
- "html/huanzhe/images/img/Rp.png",
- "html/huanzhe/template/0201.html",
- "html/huanzhe/template/0215.html",
- "html/huanzhe/template/0214.html",
- "html/huanzhe/images/img/i-hos-sum.png",
- "html/huanzhe/template/0202.html",
- "html/huanzhe/template/0213.html",
- "html/huanzhe/template/0241.html",
- "html/huanzhe/images/img/i-drop-down.png",
- "html/huanzhe/template/0121.html",
- "html/huanzhe/template/0221.html",
- "html/huanzhe/images/img/i-test-results.png",
- "html/huanzhe/template/0231.html",
- "html/huanzhe/images/img/i-doc-info.png",
- "html/huanzhe/images/img/i-pha-info.png",
- "html/huanzhe/template/0211.html"
- ],
- "refer": []
- },
- "html/mine/html/shenfenyanzheng.html": {
- "resources": [
- "common/css/doc-style.css",
- "html/mine/css/shenfenyanzheng.css",
- "js/underscore.js",
- "js/es6-promise.js",
- "common/cross/css/cross.ui.css",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/security.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/mine/html/account_back.html"
- ]
- },
- "html/zdzx/html/tuanduitongji.html": {
- "resources": [
- "html/zdzx/css/td-style.css",
- "html/zdzx/iconfont/iconfont.css",
- "images/d-male.png",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "common/css/jy-style.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css",
- "js/common_http.js",
- "js/template.js"
- ],
- "refer": [
- "html/zdzx/html/huifuqingkuang.html",
- "html/error/html/error.html"
- ]
- },
- "html/zdzx/html/huifuqingkuang.html": {
- "refer": [
- "html/zdzx/html/zixunxiangqing.html",
- "html/error/html/error.html"
- ],
- "resources": [
- "html/zdzx/css/cross.css",
- "common/cross/css/cross.ui.css",
- "html/js/templateHelp.js",
- "html/js/common.js",
- "html/zdzx/css/yy-qygl.css",
- "html/zdzx/css/yy-style.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/css/doc-style.css",
- "js/im.client.js",
- "js/common_http.js",
- "js/template.js",
- "html/zdzx/js/base.js",
- "images/shujuweikong_img.png"
- ]
- },
- "html/huanzhe/html/yongyaojilu.html": {
- "resources": [
- "html/huanzhe/css/yongyaojilu.css",
- "html/huanzhe/js/yongyaojilu.js",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/iscroll-pull-up-down.js",
- "common/images/pull-icon@2x.png",
- "common/css/doc-style.css"
- ],
- "refer": [
- "html/huanzhe/html/single-profile.html"
- ]
- },
- "html/huanzhe/html/single-profile.html": {
- "resources": [
- "html/huanzhe/css/base.css",
- "html/huanzhe/js/avalon.modern.js",
- "html/huanzhe/js/single-profile.js",
- "html/huanzhe/css/info.css",
- "html/huanzhe/images/img/i-visiting-result.png",
- "html/huanzhe/images/img/i-ess-info.png",
- "html/huanzhe/template/0141.html",
- "html/huanzhe/template/0131.html",
- "html/huanzhe/images/img/i-ins-res.png",
- "html/huanzhe/images/img/i-inspectors.png",
- "html/huanzhe/images/img/i-test-results.png",
- "html/huanzhe/template/0121.html",
- "html/huanzhe/images/img/Rp.png",
- "html/huanzhe/template/0221.html"
- ],
- "refer": []
- },
- "html/xiaoxi/html/yichangjilu.html": {
- "resources": [
- "html/xiaoxi/images/gao_icon.png",
- "html/xiaoxi/images/gerenxinxi_pre.png",
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "html/js/l-scroll.css",
- "common/cross/css/cross.css",
- "html/js/common.js",
- "fonts/font-awesome/css/font-awesome.min.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "images/shujuweikong_img.png",
- "js/common_http.js",
- "js/template.js",
- "html/js/l-scroll.js"
- ],
- "refer": [
- "html/huanzhe/html/huanzhexinxi.html",
- "html/jkjl/html/health-record.html"
- ]
- },
- "html/xiaoxi/html/jiankangtizheng.html": {
- "resources": [
- "html/xiaoxi/css/jiankangtizheng.css",
- "fonts/font-awesome/css/font-awesome.min.css",
- "common/css/doc-style.css"
- ],
- "refer": [
- "html/xiaoxi/html/yichangjilu.html"
- ]
- },
- "html/huanzhe/html/jiankangtijian.html": {
- "resources": [
- "html/huanzhe/js/jiankangtijian.js",
- "html/huanzhe/css/jiankangtijian.css"
- ],
- "refer": [
- "html/huanzhe/html/jiankangtijianxiangqing.html"
- ]
- },
- "html/huanzhe/html/disease-label-edit.html": {
- "resources": [
- "html/huanzhe/css/disease.css",
- "html/huanzhe/images/jiankangqingkuang_icon.png",
- "html/huanzhe/images/jibingleixing_icon.png",
- "html/huanzhe/images/zidingyibiaoqian_icon.png"
- ],
- "refer": []
- },
- "html/jkjl/html/health-record.html": {
- "resources": [
- "html/jkjl/js/xueya.js",
- "html/jkjl/images/yaowei.png",
- "html/jkjl/images/xuetang_pre.png",
- "html/jkjl/css/ss-style.css",
- "html/jkjl/images/tizhong.png",
- "html/jkjl/js/yongyao.js",
- "html/jkjl/js/yinshi.js",
- "css/iscroll.css",
- "html/jkjl/js/health-record.js",
- "html/jkjl/images/fenxiang01_icon.png",
- "widget/switchery/switchery.js",
- "widget/swiper/3.1/swiper.min.css",
- "html/jkjl/images/xueya.png",
- "html/jkjl/js/xuetang.js",
- "widget/swiper/3.1/swiper.jquery.min.js",
- "html/jkjl/js/yundong.js",
- "html/jkjl/css/health-record.css",
- "widget/switchery/switchery.css",
- "html/jkjl/js/yaowei.js",
- "widget/echarts/echarts.js",
- "html/jkjl/js/health-index.js",
- "html/jkjl/js/tizhong.js",
- "html/jkjl/images/yundong_pre.png",
- "html/jkjl/images/yinshi.png",
- "html/jkjl/images/yundong.png",
- "html/jkjl/images/yinshi_pre.png",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "html/jkjl/images/zhibiao_di_icon.png",
- "html/jkjl/images/zhibiao_gao_icon.png",
- "html/jkjl/css/health-record-new.css",
- "js/iscroll-probe.js",
- "js/iscroll-pull-up-down.js"
- ],
- "refer": [
- "html/jkjl/html/xuetang-view.html",
- "html/jkjl/html/xueya-view.html"
- ]
- },
- "html/huanzhe/html/search_all.html": {
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "html/huanzhe/js/search_all.js",
- "js/mui.pullToRefresh.js",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "css/mui-pull.css",
- "js/mui.pullToRefresh.material.js",
- "images/sousuo_icon.png",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "html/js/android.js",
- "html/huanzhe/css/searchhuanzhe.css",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "html/huanzhe/js/search-bar.js",
- "js/jquery/2.1.3/jquery.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/common_http.js",
- "html/huanzhe/css/search-bar.css",
- "html/huanzhe/images/weiqianyue_icon.png"
- ],
- "refer": []
- },
- "html/huanzhe/html/jiankangtijianxiangqing.html": {
- "resources": [
- "html/huanzhe/js/jiankangtijianxiangqing.js",
- "html/huanzhe/images/shou_icon.png",
- "html/huanzhe/css/jiankangtijianxiangqing.css",
- "html/huanzhe/js/elastic-columns.js",
- "html/huanzhe/images/jiankangxiangqing_icon.png",
- "html/huanzhe/images/shou02_icon.png"
- ],
- "refer": []
- },
- "html/mine/html/about.html": {
- "resources": [
- "html/mine/images/about.png",
- "html/mine/css/about.css",
- "html/mine/images/settings/icon6.png"
- ],
- "refer": []
- },
- "html/mine/html/feedback.html": {
- "resources": [
- "html/mine/css/feedback.css",
- "js/app.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/common_http.js",
- "html/mine/js/feedback.js",
- "fonts/mui.ttf",
- "common/cross/css/cross.ui.css",
- "common/cross/css/cross.css",
- "html/mine/js/upload_photo_modify.js",
- "html/js/common.js",
- "html/mine/js/auto_rec_ssc_photo.js",
- "html/mine/images/tianjiatupian_btn.png",
- "html/mine/js/feedback_photo.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "html/mine/images/delete_icon.png"
- ],
- "refer": []
- },
- "html/mine/html/clip_photo2.html": {
- "resources": [
- "html/mine/js/transform.js",
- "html/mine/js/alloy_crop.js",
- "html/mine/js/lrz.all.bundle.js",
- "html/mine/js/alloy_finger.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/cross/css/cross.css",
- "html/js/common.js",
- "common/cross/images/logo_dibu_img.png",
- "html/mine/js/upload_photo_modify.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js"
- ],
- "refer": []
- },
- "html/hzzd/html/edit_guidance.html": {
- "resources": [
- "html/hzzd/images/tianjiatupian_btn.png",
- "html/hzzd/js/edit_guidance.js",
- "html/hzzd/js/auto_rec_ssc_photo.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/app.js",
- "common/cross/css/cross.css",
- "html/hzzd/iconfont/iconfont.css",
- "js/underscore.js",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/common_http.js",
- "js/template.js",
- "common/cross/css/ui.all.css",
- "html/hzzd/images/delete_icon.png",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": []
- },
- "html/mine/html/account_back.html": {
- "resources": [
- "html/mine/images/tianjiatupian_btn.png",
- "fonts/mui.ttf",
- "html/mine/css/feedback.css",
- "html/mine/js/feedback.js",
- "html/mine/js/feedback_photo.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/app.js",
- "common/cross/css/cross.css",
- "html/js/common.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/common_http.js",
- "html/mine/js/account_back.js",
- "html/mine/images/delete_icon.png"
- ],
- "refer": []
- },
- "html/message/html/xitongxiaoxi.html": {
- "resources": [
- "html/message/js/xitongxiaoxi.js",
- "html/message/css/xitongxiaoxi.css",
- "images/shujuweikong_img.png",
- "images/new_icon.png"
- ],
- "refer": [
- "html/search/html/zhuanyijumin.html"
- ]
- },
- "html/suifang/html/index.html": {
- "resources": [
- "widget/swiper/3.1/swiper.jquery.min.js",
- "html/suifang/js/index.js",
- "html/suifang/css/index.css",
- "fonts/mui.ttf",
- "html/suifang/images/tianjia_button.png",
- "html/suifang/images/zhangkai_icon.png",
- "widget/swiper/3.1/swiper.min.css",
- "html/suifang/css/mf-style.css",
- "html/suifang/css/iconfont/iconfont.css",
- "common/cross/css/cross.ui.css",
- "js/es6-promise.js",
- "js/underscore.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "images/shujuweikong_img.png",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/app.js",
- "common/cross/css/cross.min.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/template.js",
- "js/common_http.js",
- "images/p-female.png",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/search/html/xuanzejumin_one.html",
- "html/suifang/html/suifang_detail.html",
- "html/login/html/login.html",
- "html/suifang/html/fvDetail.html",
- "html/suifang/html/follow_way.html"
- ]
- },
- "html/mine/html/manyidu.html": {
- "resources": [
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/js/common.js",
- "common/css/doc-style.css",
- "common/cross/css/cross.css",
- "js/common_http.js",
- "js/template.js",
- "html/mine/css/manyidu.css"
- ],
- "refer": [
- "html/login/html/login.html"
- ]
- },
- "html/manager/html/qianyuetongji2.html": {
- "resources": [
- "html/manager/js/wc-motion-chart.js",
- "html/manager/js/l-picker.js",
- "html/manager/css/manager.css",
- "widget/echarts/2.2.7/js/echarts-all.js",
- "common/images/pull-icon@2x.png",
- "html/manager/js/qianyuetongji2.js",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/underscore.js",
- "js/pull-up-down.js",
- "html/manager/images/dizhi_icon.png",
- "js/iscroll-pull-up-down.js",
- "html/manager/images/checked_blue.png",
- "html/manager/css/animate.css",
- "common/css/doc-style.css",
- "common/cross/css/cross.ui.css",
- "html/manager/images/yiwen_icon.png",
- "html/manager/images/hanbaobao_icon.png",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/css/l_size.css",
- "html/manager/images/guanbi_01_btn.png",
- "js/template.js",
- "common/cross/css/cross.min.css",
- "common/cross/images/logo_dibu_img.png",
- "css/mui.min.css",
- "js/waterbubble.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/manager/html/shaixuan2.html",
- "html/error/html/error.html"
- ]
- },
- "html/manager/html/analysis1.html": {
- "resources": [
- "html/manager/html/analysis2.html",
- "html/manager/images/rili.png",
- "html/manager/images/qiehuan_icon.png"
- ],
- "refer": [
- "html/manager/html/analysis2.html",
- "html/manager/html/shaixuan.html"
- ]
- },
- "html/manager/html/analysis2.html": {
- "resources": [
- "html/manager/images/xingbiefenbu_icon.png",
- "images/tit5.png",
- "widget/echarts/3.0/js/echarts.min.js",
- "html/manager/images/jiankangfenbu_icon.png",
- "html/manager/images/jiaofeiqingk_icon.png",
- "html/manager/js/analysis2.js",
- "html/manager/images/fuwufenbu_icon.png"
- ],
- "refer": []
- },
- "html/manager/html/shaixuan.html": {
- "resources": [
- "js/es6-promise.js"
- ],
- "refer": []
- },
- "html/manager/html/tuigaiqian.html": {
- "resources": [
- "html/manager/js/tuigaiqian.js"
- ],
- "refer": []
- },
- "html/manager/html/lianglvfenxi-sheguan.html": {
- "resources": [
- "html/manager/images/gaoweirenqun.png",
- "html/manager/images/snashi_icon.png"
- ],
- "refer": []
- },
- "html/jkjy/html/fasongjilu.html": {
- "resources": [
- "html/jkjy/js/fasongjilu.js",
- "html/jkjy/css/fasongjilu.css"
- ],
- "refer": [
- "html/jkjy/html/jiluxiangqing.html"
- ]
- },
- "html/jkjy/html/jiluxiangqing.html": {
- "resources": [
- "html/jkjy/css/jiluxiangqing.css",
- "html/jkjy/js/jiluxiangqing.js"
- ],
- "refer": []
- },
- "html/suifang/html/add_plan.html": {
- "resources": [
- "js/im_new.js",
- "html/suifang/js/add_plan.js",
- "html/suifang/css/iconfont/iconfont.woff",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/app.js",
- "common/cross/css/cross.css",
- "html/suifang/css/mf-style.css",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "js/common_http.js",
- "js/template.js",
- "html/suifang/css/iconfont/iconfont.css"
- ],
- "refer": [
- "html/huanzhe/html/fuwujilu.html"
- ]
- },
- "html/suifang/html/start_plan.html": {
- "refer": [
- "html/suifang/html/fvDetail.html"
- ],
- "resources": [
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/im_new.js",
- "js/underscore.js",
- "js/es6-promise.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "css/mui.min.css",
- "js/template.js",
- "html/suifang/css/mf-style.css"
- ]
- },
- "html/suifang/html/fvDetail.html": {
- "resources": [
- "html/suifang/js/fvDetail.js",
- "js/im_new.js",
- "html/suifang/css/mf-style.css",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/css/jy-style.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "js/template.js",
- "common/iconfont/iconfont.woff"
- ],
- "refer": [
- "html/suifang/html/questionaires.html",
- "html/suifang/html/drugs.html",
- "html/login/html/login.html",
- "html/error/html/error.html"
- ]
- },
- "html/suifang/html/questionaires.html": {
- "resources": [
- "html/suifang/css/mobiscroll_numpad.css",
- "html/suifang/js/template_tnb.js",
- "html/suifang/js/mobiscroll-2.17.1.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "html/suifang/js/template_gxy.js",
- "html/suifang/js/questionaires.js",
- "html/suifang/images/backspace.png",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "html/suifang/css/mf-style.css",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "js/template.js",
- "common/cross/images/logo_dibu_img.png",
- "js/underscore.js"
- ],
- "refer": [
- "html/suifang/html/dyy_history.html",
- "html/suifang/html/edu_history.html",
- "html/suifang/html/history_record.html"
- ]
- },
- "html/suifang/html/suifang_detail.html": {
- "refer": [
- "html/suifang/html/choose_suifang.html",
- "html/suifang/html/fvDetail.html",
- "html/suifang/html/start_plan.html",
- "html/suifang/html/edit_plan.html"
- ],
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/cross/css/cross.css",
- "js/common_http.js",
- "common/cross/images/logo_dibu_img.png"
- ]
- },
- "html/suifang/html/choose_suifang.html": {
- "refer": [
- "html/suifang/html/add_plan.html",
- "html/suifang/html/follow_way.html"
- ],
- "resources": [
- "common/iconfont/iconfont.css"
- ]
- },
- "html/suifang/html/edit_plan.html": {
- "resources": [
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/im_new.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "html/suifang/css/mf-style.css",
- "html/suifang/css/iconfont/iconfont.css",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/app.js",
- "common/cross/css/cross.css",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "js/template.js"
- ],
- "refer": []
- },
- "html/suifang/html/drugs.html": {
- "resources": [
- "html/suifang/js/measure_unit_dict.js",
- "html/suifang/images/tianjia_icon.png",
- "html/suifang/css/drugs.css",
- "html/suifang/images/yongyao_icon.png",
- "html/suifang/js/recipe_frequency_dict.js",
- "html/suifang/images/unchecked.png",
- "html/suifang/js/drugs.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/app.js",
- "common/iconfont/iconfont.css",
- "js/im_new.js",
- "common/cross/css/cross.css",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/template.js",
- "js/common_http.js",
- "html/suifang/images/RP_icon.png",
- "html/suifang/images/xinzhengyaopin_icon.png",
- "html/suifang/images/xiala_icon.png",
- "html/suifang/images/delete.png",
- "js/underscore.js",
- "css/mui.min.css",
- "common/cross/images/logo_dibu_img.png"
- ],
- "refer": [
- "html/suifang/html/history_medication.html",
- "html/suifang/html/add_drug.html"
- ]
- },
- "html/hzzd/html/guidance_detail.html": {
- "refer": [
- "html/hzzd/html/edit_guidance.html"
- ],
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/cross/css/cross.css",
- "html/hzzd/iconfont/iconfont.css",
- "common/cross/images/logo_dibu_img.png",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/common_http.js",
- "js/template.js",
- "common/cross/css/ui.all.css"
- ]
- },
- "html/suifang/html/dyy_history.html": {
- "resources": [
- "html/suifang/js/dyy_history.js",
- "html/suifang/css/edu_history.css",
- "fonts/mui.ttf",
- "html/suifang/images/checked_all.png"
- ],
- "refer": []
- },
- "html/huanzhe/html/fuwutongji.html": {
- "resources": [
- "html/huanzhe/js/fuwutongji.js",
- "html/huanzhe/css/fuwutongji.css"
- ],
- "refer": []
- },
- "html/huanzhe/html/searchhuanzhe2.html": {
- "resources": [
- "html/huanzhe/js/searchhuanzhe2.js",
- "html/huanzhe/js/pull-up-down-2.js",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "html/huanzhe/images/sousuo_qianyu_icon.png",
- "html/js/l-scroll.css",
- "html/js/android.js",
- "html/huanzhe/css/searchhuanzhe.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "html/huanzhe/js/search-bar.js",
- "js/iscroll-pull-up-down.js",
- "html/huanzhe/css/search-bar.css",
- "html/js/l-scroll.js"
- ],
- "refer": []
- },
- "html/jkjl/html/xuetang-view.html": {
- "resources": [
- "html/jkjl/js/xuetang-view.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "html/jkjl/js/health-chart.js",
- "html/jkjl/css/xuetang-view.css",
- "html/jkjl/css/health-record-info.css",
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "css/iscroll.css",
- "widget/swiper/3.1/swiper.min.css",
- "widget/switchery/switchery.js",
- "js/iscroll-probe.js",
- "js/underscore.js",
- "widget/switchery/switchery.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "js/template.js",
- "html/jkjl/js/health-index.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "html/jkjl/css/ss-style.css",
- "common/cross/css/cross.css",
- "widget/swiper/3.1/swiper.jquery.min.js",
- "html/jkjl/css/health-record.css",
- "js/es6-promise.js",
- "widget/echarts/echarts.js",
- "js/common_http.js",
- "html/jkjl/images/icon_shijian.png"
- ],
- "refer": []
- },
- "html/jkjl/html/xueya-view.html": {
- "resources": [
- "html/jkjl/js/xueya-view.js"
- ],
- "refer": []
- },
- "html/suifang/html/follow_way.html": {
- "resources": [
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "html/suifang/css/mf-style.css"
- ],
- "refer": [
- "html/suifang/html/fvDetail.html",
- "html/login/html/login.html"
- ]
- },
- "html/huanzhe/html/huanzhe-by-type.html": {
- "resources": [
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "html/huanzhe/js/huanzhe-by-type.js",
- "images/weixing_icon.png",
- "js/iscroll-pull-up-down.js",
- "html/huanzhe/images/shezi_icon.png",
- "images/p-female.png",
- "html/js/templateHelp.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/css/jy-style.css",
- "common/iconfont/iconfont.css",
- "html/js/common.js",
- "common/cross/css/cross.css",
- "images/sousuo_icon.png",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/common_http.js",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css"
- ],
- "refer": [
- "html/huanzhe/html/searchhuanzhe.html",
- "html/huanzhe/html/huanzhexinxi.html"
- ]
- },
- "html/suifang/html/edu_history.html": {
- "resources": [
- "html/suifang/js/edu_history.js",
- "html/suifang/css/edu_history.css",
- "html/suifang/images/checked_all.png"
- ],
- "refer": []
- },
- "html/survey/html/survey_list.html": {
- "resources": [
- "html/survey/css/base.css",
- "html/survey/js/survey_list.js"
- ],
- "refer": [
- "html/survey/html/template_list.html",
- "html/survey/html/survey_info.html"
- ]
- },
- "html/survey/html/template_list.html": {
- "resources": [
- "html/survey/images/tanchuang_icon.png",
- "html/survey/js/template_list.js"
- ],
- "refer": [
- "html/survey/html/template_info.html"
- ]
- },
- "html/survey/html/template_info.html": {
- "refer": [
- "html/survey/html/survey_detail.html"
- ],
- "resources": []
- },
- "html/survey/html/new_summary.html": {
- "resources": [
- "html/js/sqliteUtil.js",
- "html/survey/js/new_summary.js"
- ],
- "refer": [
- "html/survey/html/preview.html"
- ]
- },
- "html/survey/html/survey_detail.html": {
- "refer": [
- "html/survey/html/new_summary.html"
- ],
- "resources": []
- },
- "html/survey/html/preview.html": {
- "resources": [
- "html/survey/js/preview.js"
- ],
- "refer": [
- "html/survey/html/choose_respondent.html"
- ]
- },
- "html/survey/html/choose_respondent.html": {
- "refer": [
- "html/survey/html/new_confirm.html"
- ],
- "resources": []
- },
- "html/survey/html/new_confirm.html": {
- "resources": [
- "html/survey/js/new_confirm.js"
- ],
- "refer": []
- },
- "html/hzzd/html/sys_guidance_list.html": {
- "resources": [
- "html/hzzd/images/shiyongren_icon.png",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "fonts/mui.ttf",
- "common/cross/css/cross.css",
- "html/hzzd/iconfont/iconfont.css",
- "common/cross/images/logo_dibu_img.png",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "images/shujuweikong_img.png",
- "js/common_http.js",
- "js/template.js",
- "common/cross/css/ui.all.css"
- ],
- "refer": [
- "html/hzzd/html/guidance_detail.html"
- ]
- },
- "html/qzys/html/select_doctor.html": {
- "resources": [
- "html/qzys/js/qiuzhu_common.js",
- "html/qzys/css/search-bar.css",
- "html/qzys/js/select_doctor.js",
- "js/jquery.ellipsis.js",
- "html/qzys/css/select_doctor.css",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/es6-promise.js",
- "js/iscroll-pull-up-down.js",
- "images/shujuweikong_img.png"
- ],
- "refer": [
- "html/message/html/p2p.html"
- ]
- },
- "html/hzzd/html/tuanduimubanliebiao.html": {
- "resources": [
- "html/tuandui/css/tuandui.css",
- "html/tuandui/images/checked_blue.png",
- "js/underscore.js",
- "js/mui.js",
- "css/mui-pull.css",
- "html/hzzd/images/shiyongren_icon.png",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "fonts/mui.ttf",
- "common/cross/css/cross.css",
- "html/hzzd/iconfont/iconfont.css",
- "common/cross/images/logo_dibu_img.png",
- "js/es6-promise.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/common_http.js",
- "common/cross/css/ui.all.css",
- "html/hzzd/images/xuanfu_btn.png"
- ],
- "refer": [
- "html/hzzd/html/chakantuanduimuban.html",
- "html/hzzd/html/bianjituanduimuban.html"
- ]
- },
- "html/manager/html/manyidufenxi.html": {
- "resources": [
- "html/manager/js/l-picker.js",
- "html/manager/js/manyidufenxi.js",
- "html/manager/images/icon_dizhi.png",
- "html/manager/css/manyidufenxi.css",
- "widget/echarts/2.2.7/js/echarts-all.js",
- "html/manager/css/manager.css",
- "html/manager/css/animate.css"
- ],
- "refer": []
- },
- "html/manager/html/xuqiantongji.html": {
- "resources": [
- "html/manager/js/wc-motion-chart.js",
- "html/manager/images/yiwen_icon.png",
- "html/manager/js/l-picker.js",
- "html/manager/css/manager.css",
- "widget/echarts/2.2.7/js/echarts-all.js",
- "common/images/pull-icon@2x.png",
- "html/manager/js/xuqiantongji.js",
- "common/css/pull-up-down.css",
- "js/iscroll-probe.js",
- "js/pull-up-down.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "html/manager/images/dizhi_icon.png",
- "js/iscroll-pull-up-down.js",
- "html/manager/css/animate.css",
- "html/manager/css/xuqiantongji.css",
- "common/cross/css/cross.ui.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/manager/images/guanbi_01_btn.png",
- "js/template.js",
- "common/cross/css/cross.min.css",
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "common/cross/images/logo_dibu_img.png",
- "html/manager/images/hanbaobao_icon.png",
- "css/mui.min.css",
- "js/waterbubble.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/manager/html/shaixuan2.html",
- "html/manager/html/xq-shaixuan.html",
- "html/manager/html/renew-analysis.html"
- ]
- },
- "html/manager/html/shaixuan2.html": {
- "resources": [
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "common/cross/css/ui.all.min.css",
- "common/css/pull-up-down.css",
- "common/cross/images/logo_dibu_img.png",
- "js/iscroll-probe.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/pull-up-down.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "js/common_http.js"
- ],
- "refer": []
- },
- "html/manager/html/xq-shaixuan.html": {
- "resources": [
- "common/iconfont/iconfont.css",
- "common/cross/css/cross.css",
- "common/cross/css/ui.all.min.css",
- "common/css/pull-up-down.css",
- "common/cross/images/logo_dibu_img.png",
- "js/iscroll-probe.js",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/pull-up-down.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/iscroll-pull-up-down.js",
- "js/common_http.js"
- ],
- "refer": []
- },
- "html/observer/html/search_doctor.html": {
- "resources": [
- "images/shujuweikong_img.png",
- "html/js/android.js",
- "images/d-male.png"
- ],
- "refer": [
- "html/home/html/relogin.html",
- "html/login/html/login.html"
- ]
- },
- "html/message/html/xufangzixun.html": {
- "resources": [
- "common/cross/css/cross.ui.css",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "html/message/images/shouqi_icon.png",
- "html/message/js/socketConnect.js",
- "html/js/common.js",
- "html/message/images/paizhao_icon.png",
- "html/message/images/fenxiang_icon.png",
- "js/underscore.js",
- "js/mui.zoom.js",
- "html/js/service.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/mui.previewimage.js",
- "js/template.js",
- "html/message/images/tw-add.png",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "html/js/sqliteUtil.js",
- "js/app.js",
- "html/js/l-img-view.js",
- "html/js/l-scroll.css",
- "html/message/js/xufangzixun.js",
- "common/cross/css/cross.css",
- "html/message/images/tupian_icon.png",
- "html/css/chatroom.css",
- "common/cross/images/logo_dibu_img.png",
- "html/message/images/yuying_icon.png",
- "html/message/images/jianpang_icon.png",
- "css/mui.min.css",
- "html/message/css/yy-style.css",
- "css/mui.previmg.css",
- "js/im.client.js",
- "html/message/images/kuaijiehuifu_icon.png",
- "js/common_http.js",
- "html/message/images/gerenxinxi_pre.png",
- "html/message/js/xf-chatRoom.js",
- "html/js/l-scroll.js",
- "html/message/images/xitongtixing_im_icon.png",
- "html/message/images/zhankai_icon.png",
- "html/message/css/xufangzixun.css"
- ],
- "refer": [
- "html/prescription/html/xufangxiangqing.html",
- "html/message/html/questionaires.html",
- "html/error/html/error.html",
- "html/kjhf/html/list.html",
- "html/prescription/html/chufangxiangqing.html",
- "html/suifang/html/start_plan.html",
- "html/huanzhe/html/huanzhexinxi.html",
- "html/suifang/html/follow_way.html",
- "html/message/html/wenjuan.html",
- "html/suifang/html/fvDetail.html",
- "html/prescription/html/juminxufangjilu.html",
- "html/huanzhe/html/jianchajianyan.html",
- "html/login/html/login.html"
- ]
- },
- "html/hzzd/html/bianjituanduimuban.html": {
- "resources": [
- "html/hzzd/js/bianjituanduimuban.js",
- "html/hzzd/images/tianjiatupian_btn.png",
- "html/hzzd/js/auto_rec_ssc_photo.js",
- "html/hzzd/images/delete_icon.png",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "js/app.js",
- "common/cross/css/cross.css",
- "html/hzzd/iconfont/iconfont.css",
- "common/cross/images/logo_dibu_img.png",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "js/underscore.js",
- "html/tuandui/css/tuandui.css",
- "js/es6-promise.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "css/mui.min.css",
- "js/template.js",
- "js/common_http.js",
- "common/cross/css/ui.all.css"
- ],
- "refer": [
- "html/hzzd/html/yulantuanduimuban.html"
- ]
- },
- "html/hzzd/html/chakantuanduimuban.html": {
- "refer": [
- "html/hzzd/html/bianjituanduimuban.html"
- ],
- "resources": [
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/cross/css/cross.css",
- "html/hzzd/iconfont/iconfont.css",
- "common/cross/images/logo_dibu_img.png",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/common_http.js",
- "js/template.js",
- "common/cross/css/ui.all.css"
- ]
- },
- "html/manager/html/renew-analysis.html": {
- "resources": [
- "html/manager/css/renew-analysis.css",
- "widget/echarts/3.0/js/echarts.min.js",
- "html/manager/js/renew-analysis.js",
- "html/manager/images/zhuanqianfenbu_icon.png",
- "html/manager/images/zhuanqianyuanyin_icon.png",
- "common/cross/css/cross.ui.css",
- "js/iscroll-probe.js",
- "js/underscore.js",
- "js/pull-up-down.js",
- "html/manager/images/dizhi_icon.png",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/manager/images/guanbi_01_btn.png",
- "js/iscroll-pull-up-down.js",
- "js/template.js",
- "html/manager/images/yiwen_icon.png",
- "html/manager/js/l-picker.js",
- "common/cross/css/cross.min.css",
- "common/iconfont/iconfont.css",
- "html/manager/css/manager.css",
- "common/images/pull-icon@2x.png",
- "common/cross/css/cross.css",
- "common/css/pull-up-down.css",
- "common/cross/images/logo_dibu_img.png",
- "js/es6-promise.js",
- "css/mui.min.css",
- "js/common_http.js"
- ],
- "refer": []
- },
- "html/suifang/html/suifang_list.html": {
- "resources": [
- "html/suifang/css/suifang_list.css",
- "html/suifang/images/checked_blue.png",
- "html/js/l-scroll.css",
- "html/suifang/images/tianjia_icon_1.png",
- "html/suifang/js/suifang_list.js",
- "html/js/l-scroll.js",
- "widget/iscroll/5.1.3/js/iscroll.js",
- "js/mui.min.js",
- "images/shujuweikong_img.png"
- ],
- "refer": [
- "html/suifang/html/choose_suifang.html",
- "html/suifang/html/suifang_detail.html",
- "html/login/html/login.html",
- "html/suifang/html/follow_way.html",
- "html/suifang/html/fvDetail.html"
- ]
- },
- "html/suifang/html/drug_detail.html": {
- "resources": [
- "html/huanzhe/css/base.css",
- "html/suifang/css/drugs.css",
- "html/suifang/images/RP_icon.png"
- ],
- "refer": []
- },
- "html/suifang/html/history_medication.html": {
- "resources": [
- "fonts/mui.ttf",
- "images/shujuweikong_img.png",
- "common/cross/images/logo_dibu_img.png",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "js/underscore.js",
- "common/iconfont/iconfont.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "common/cross/css/cross.css",
- "js/template.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/suifang/html/drug_detail.html"
- ]
- },
- "html/prescription/html/xufangzixun.html": {
- "resources": [
- "html/prescription/js/base.js",
- "html/prescription/css/yy-qygl.css",
- "html/prescription/css/yy-style.css",
- "html/prescription/css/cross.css",
- "common/cross/css/cross.ui.css",
- "html/js/templateHelp.js",
- "html/js/common.js",
- "common/cross/images/logo_dibu_img.png",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "common/css/doc-style.css",
- "js/common_http.js",
- "js/template.js"
- ],
- "refer": [
- "html/prescription/html/xufangzixunxiangqing.html",
- "html/error/html/error.html"
- ]
- },
- "html/suifang/html/add_drug.html": {
- "resources": [
- "html/suifang/js/add_drug.js",
- "images/sousuo_icon.png",
- "images/shujuweikong_img.png",
- "html/suifang/css/add-drug.css"
- ],
- "refer": []
- },
- "html/prescription/html/xufangguanli.html": {
- "resources": [
- "fonts/font-awesome/fonts/fontawesome-webfont.woff",
- "html/prescription/images/icon_sousuo.png",
- "fonts/mui.ttf",
- "html/prescription/images/checked_blue.png",
- "fonts/font-awesome/css/font-awesome.min.css",
- "html/prescription/js/xufangguanli.js",
- "html/prescription/css/xufangguanli.css",
- "common/cross/css/cross.ui.css",
- "common/cross/css/cross.css",
- "common/cross/images/logo_dibu_img.png",
- "js/es6-promise.js",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "images/shujuweikong_img.png",
- "js/template.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/prescription/html/xufangxiangqing.html",
- "html/prescription/html/xufangsousuo.html"
- ]
- },
- "html/prescription/html/xufangxiangqing.html": {
- "resources": [
- "html/prescription/images/RP_icon.png",
- "html/prescription/images/jumingxinxi_icon.png",
- "html/huanzhe/css/base.css",
- "html/prescription/images/huidajuming_btn.png",
- "widget/mobiscroll/2.17.1/js/mobiscroll.js",
- "html/prescription/images/yuanchufangjilu_icon.png",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "html/prescription/images/dhenhejilu_icon.png",
- "html/prescription/images/jr-rop.png",
- "html/prescription/css/xufangxiangqing.css",
- "html/prescription/images/linchuanzhenduan_icon.png",
- "html/prescription/images/xunfangxinxi_icon.png",
- "html/prescription/js/xufangxiangqing.js",
- "html/prescription/images/ca.png",
- "widget/artDialog/6.0.5/js/dialog-plus.min.js",
- "widget/artDialog/6.0.5/css/ui-dialog.min.css",
- "common/cross/css/cross.ui.css",
- "common/cross/images/logo_dibu_img.png",
- "js/underscore.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "css/mui.min.css",
- "js/template.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/prescription/html/shenfenrenzheng.html",
- "html/message/html/xufangzixun.html",
- "html/prescription/html/change-chufang2.html"
- ]
- },
- "html/prescription/html/xufangzixunxiangqing.html": {
- "resources": [
- "widget/iscroll/5.1.3/js/iscroll.js",
- "html/js/l-img-view.js",
- "html/js/l-scroll.css",
- "html/prescription/css/xufangzixunxiangqing.css",
- "html/message/images/xitongtixing_im_icon.png",
- "html/css/chatroom.css",
- "js/underscore.js",
- "js/mui.zoom.js",
- "html/prescription/js/xufangzixunxiangqing.js",
- "html/js/service.js",
- "html/prescription/images/gerenxinxi_pre.png",
- "html/prescription/images/shouqi_icon.png",
- "js/mui.previewimage.js",
- "css/mui.previmg.css",
- "html/js/l-scroll.js",
- "common/cross/css/cross.ui.css",
- "html/js/common.js",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/template.js",
- "js/app.js",
- "common/cross/css/cross.css",
- "common/cross/images/logo_dibu_img.png",
- "css/mui.min.css",
- "js/common_http.js",
- "js/im.client.js",
- "html/prescription/css/yy-style.css"
- ],
- "refer": [
- "html/message/html/xufangzixun.html",
- "html/message/html/questionaires.html",
- "html/suifang/html/follow_way.html",
- "html/suifang/html/fvDetail.html",
- "html/prescription/html/xufangxiangqing.html",
- "html/message/html/wenjuan.html",
- "html/huanzhe/html/huanzhexinxi.html"
- ]
- },
- "html/message/html/questionaires.html": {
- "resources": [
- "html/message/js/template_gxy.js",
- "widget/mobiscroll/2.17.1/css/mobiscroll.css",
- "css/cross.ui.css",
- "css/cross.css",
- "html/message/js/questionaires.js",
- "html/message/css/mf-style.css",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "js/common_http.js",
- "js/template.js",
- "html/suifang/css/mobiscroll_numpad.css",
- "html/suifang/js/mobiscroll-2.17.1.js",
- "common/cross/css/cross.ui.css",
- "common/cross/css/cross.css",
- "common/cross/images/logo_dibu_img.png",
- "html/suifang/images/backspace.png"
- ],
- "refer": []
- },
- "html/prescription/html/xufangxiaoxi.html": {
- "refer": [
- "html/message/html/xufangzixun.html",
- "html/error/html/error.html",
- "html/login/html/login.html"
- ],
- "resources": []
- },
- "html/message/html/wenjuan.html": {
- "refer": [
- "html/message/html/questionaires.html"
- ],
- "resources": []
- },
- "html/prescription/html/change-chufang2.html": {
- "refer": [
- "html/prescription/html/linchuangzhenduan.html"
- ],
- "resources": []
- },
- "html/mine/html/worktime.html": {
- "refer": [
- "html/mine/html/gongzuoshezhi.html"
- ],
- "resources": []
- },
- "html/xtfw/html/xietongfuwu-management.html": {
- "refer": [
- "html/xtfw/html/xietongfuwu-search.html",
- "html/xtfw/html/xietongfuwu-detail.html"
- ],
- "resources": []
- },
- "html/xtfw/html/xietongfuwu-search.html": {
- "refer": [
- "html/xtfw/html/xietongfuwu-detail.html"
- ],
- "resources": []
- },
- "html/xtfw/html/xietongfuwu-detail.html": {
- "refer": [
- "html/wdyy/html/appointment-register.html",
- "html/xtfw/html/xietongfuwu-deal.html"
- ],
- "resources": []
- },
- "html/xtfw/html/xietongfuwu-yy.html": {
- "refer": [
- "html/xtfw/html/xietongfuwu-deal.html",
- "html/error/html/error.html"
- ],
- "resources": []
- },
- "html/xtfw/html/xietongfuwu-message.html": {
- "refer": [
- "html/error/html/error.html",
- "html/xtfw/html/xietongfuwu-detail.html"
- ],
- "resources": []
- },
- "html/home/html/jianjiaotuisong.html": {
- "refer": [
- "html/error/html/error.html",
- "html/home/html/jianjiaotuisong-xiangqing.html",
- "html/home/html/tuisong_duixiang.html",
- "html/home/html/jianjiaotuisong-yituisong.html"
- ],
- "resources": []
- },
- "html/home/html/jianjiaotuisong-xiangqing.html": {
- "refer": [
- "html/home/html/tuisong_duixiang.html"
- ],
- "resources": []
- },
- "html/mbgl/html/manbingguanli.html": {
- "refer": [
- "html/mbgl/html/manbingjumin.html",
- "html/mbgl/html/yujingshezhi.html",
- "html/mbgl/html/jc-xuanzejumin.html"
- ],
- "resources": []
- },
- "html/mbgl/html/manbingjumin.html": {
- "refer": [
- "html/mbgl/html/juminsousuo.html",
- "html/huanzhe/html/huanzhexinxi.html"
- ],
- "resources": []
- },
- "html/mbgl/html/jc-xuanzefangan.html": {
- "refer": [
- "html/mbgl/html/jc-addxuetang.html"
- ],
- "resources": []
- },
- "html/mbgl/html/jc-xuanzejumin.html": {
- "refer": [
- "html/mbgl/html/jc-xuanzefangan.html"
- ],
- "resources": []
- },
- "html/tuandui/html/tuanduisuifangxiangqing.html": {
- "refer": [
- "html/tuandui/html/gerensuifangxiangqing.html"
- ],
- "resources": []
- },
- "html/tuandui/html/gongzuobaogao.html": {
- "refer": [
- "html/tuandui/html/tuanduisuifangxiangqing.html"
- ],
- "resources": []
- },
- "html/manager/html/prescription-analysis.html": {
- "refer": [
- "html/manager/html/prescription-shaixuan.html"
- ],
- "resources": []
- },
- "html/qygl/html/patient-manage.html": {
- "refer": [
- "html/huanzhe/html/huanzhexinxi.html",
- "html/qygl/html/xieyishu.html"
- ],
- "resources": [
- "html/js/expensesUpdate.js"
- ]
- },
- "html/jkjy/html/article-store.html": {
- "resources": [
- "html/jkjy/html/article-list.html"
- ],
- "refer": [
- "html/jkjy/html/article-list.html"
- ]
- },
- "html/jkjy/html/shenhexiaoxi.html": {
- "refer": [
- "html/error/html/error.html",
- "html/jkjy/html/article-edit.html",
- "html/jkjy/html/myArticle.html",
- "html/login/html/login.html"
- ],
- "resources": []
- },
- "html/jkjy/html/article-list.html": {
- "refer": [
- "html/jkjy/html/myArticle.html"
- ],
- "resources": []
- },
- "html/kfgl/html/denizen.html": {
- "refer": [
- "html/jkjl/html/health-record.html",
- "html/kfgl/html/denizen-info.html",
- "html/mbgl/html/jumin-manbingdangan.html"
- ],
- "resources": []
- },
- "html/kfgl/html/denizen-info.html": {
- "refer": [
- "html/qygl/html/xieyishu.html"
- ],
- "resources": []
- },
- "html/home/html/huanzhe-specal.html": {
- "refer": [
- "html/kfgl/html/denizen.html",
- "html/login/html/login.html"
- ],
- "resources": []
- },
- "html/manager/html/qianyuetongji-new.html": {
- "resources": [
- "html/manager/images/yiwen_icon.png",
- "html/manager/js/qianyuetongji-new.js",
- "html/manager/js/echarts.min.js",
- "fonts/mui.ttf",
- "html/manager/images/paiming_2_icon.png",
- "html/manager/images/paiming_4_icon.png",
- "fonts/font-awesome/css/font-awesome.min.css",
- "html/manager/css/common.css",
- "js/es6-promise.js",
- "js/underscore.js",
- "fonts/font-awesome/fonts/fontawesome-webfont.woff",
- "html/manager/images/dizhi_icon.png",
- "html/manager/images/paiming_1_icon.png",
- "html/manager/images/paiming_3_icon.png",
- "html/manager/images/hanbaobao_icon.png",
- "common/cross/css/cross.ui.css",
- "js/app.js",
- "common/cross/css/cross.css",
- "common/cross/images/logo_dibu_img.png",
- "js/mui.min.js",
- "js/jquery/2.1.3/jquery.js",
- "html/manager/images/guanbi_01_btn.png",
- "css/mui.min.css",
- "js/waterbubble.js",
- "js/template.js",
- "js/common_http.js"
- ],
- "refer": [
- "html/manager/html/shaixuan2.html",
- "html/manager/html/qianyuetongji-online.html"
- ]
- },
- "html/mine/html/xiaoxitongzhishezhi.html": {
- "resources": [
- "html/mine/js/xiaoxituisongshezhil.js"
- ],
- "refer": []
- },
- "html/manager/html/qianyuetongji-online.html": {
- "resources": [
- "html/manager/js/echarts.common.min.js",
- "html/manager/js/qianyuetongji-online.js"
- ],
- "refer": [
- "html/manager/html/shaixuan2.html"
- ]
- }
- }
|