.confirmed_dependencies 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422
  1. {
  2. "html/home/html/suifangjihua.html": {
  3. "resources": [
  4. "fonts/mui.ttf",
  5. "js/mui.min.js",
  6. "css/mui.min.css",
  7. "js/common_http.js"
  8. ],
  9. "refer": []
  10. },
  11. "index.html": {
  12. "resources": [
  13. "js/mui.min.js",
  14. "css/mui.min.css",
  15. "js/common_http.js",
  16. "js/jquery/2.1.3/jquery.js",
  17. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  18. "widget/artDialog/6.0.5/css/ui-dialog.min.css"
  19. ],
  20. "refer": [
  21. "html/home/html/main.html",
  22. "html/login/html/login.html"
  23. ]
  24. },
  25. "html/home/html/xiaoxi.html": {
  26. "resources": [
  27. "js/im_new.js",
  28. "common/images/msg_02.png",
  29. "common/images/msg_01.png",
  30. "common/images/msg_05.png",
  31. "common/images/msg_03.png",
  32. "common/cross/css/cross.ui.css",
  33. "js/app.js",
  34. "common/css/jy-style.css",
  35. "common/cross/css/cross.min.css",
  36. "common/iconfont/iconfont.woff",
  37. "common/iconfont/iconfont.css",
  38. "js/mui.min.js",
  39. "js/jquery/2.1.3/jquery.js",
  40. "js/common_http.js",
  41. "common/css/ss-doctor.css",
  42. "common/cross/css/ui.all.min.css",
  43. "common/cross/css/cross.css",
  44. "html/home/images/jiankangtizheng_icon.png",
  45. "html/home/css/xiaoxi.css",
  46. "html/home/js/xiaoxi.js",
  47. "html/home/images/taolunzu_n.png",
  48. "html/home/images/qianyuexiaoxi_icon.png",
  49. "html/js/date-ext.js",
  50. "html/home/images/xitongxiaoxi.png",
  51. "widget/iscroll/5.1.3/js/iscroll.js",
  52. "html/js/l-scroll.css",
  53. "html/home/images/mingyizixun_icon.png",
  54. "js/template.js",
  55. "html/js/l-scroll.js",
  56. "images/d-male.png",
  57. "html/js/templateHelp.js",
  58. "html/home/html/xiaoxipage.html",
  59. "html/home/images/yisheng_button.png",
  60. "html/js/common.js",
  61. "html/home/images/xiaoxi_pre.png",
  62. "html/home/images/juming_button.png",
  63. "html/home/images/juming_pres.png",
  64. "html/home/images/xiaoxi_button.png",
  65. "html/home/images/yisheng_pre.png",
  66. "common/cross/images/logo_dibu_img.png"
  67. ],
  68. "refer": [
  69. "html/home/html/xiaoxipage.html",
  70. "html/home/html/jumingim.html",
  71. "html/home/html/yishengim.html"
  72. ]
  73. },
  74. "html/home/html/mine.html": {
  75. "resources": [
  76. "common/images/demo-linehead.png",
  77. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  78. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  79. "common/images/demo-por02.png",
  80. "common/images/demo-por01.png",
  81. "common/cross/css/cross.ui.css",
  82. "js/app.js",
  83. "common/css/jy-style.css",
  84. "js/template.js",
  85. "common/iconfont/iconfont.woff",
  86. "common/iconfont/iconfont.css",
  87. "common/cross/css/cross.css",
  88. "js/mui.min.js",
  89. "js/jquery/2.1.3/jquery.js",
  90. "js/common_http.js",
  91. "html/home/images/wodemingpian_icon.png",
  92. "html/js/templateHelp.js",
  93. "html/home/images/gongzuoshezhi_icon.png",
  94. "html/home/images/shezhi_icon.png",
  95. "html/js/common.js",
  96. "images/d-male.png",
  97. "images/s-male.png",
  98. "html/home/images/gongzuoshezi_icon.png",
  99. "html/home/images/shezi_icon.png",
  100. "html/home/images/zhidaomoban_icon.png",
  101. "html/home/images/mingpian_icon.png",
  102. "js/mui.pullToRefresh.js",
  103. "css/mui-pull.css",
  104. "js/mui.pullToRefresh.material.js",
  105. "html/home/images/icon_manyidu.png",
  106. "html/home/images/gengxin_icon.png",
  107. "common/cross/images/logo_dibu_img.png"
  108. ],
  109. "refer": [
  110. "html/mine/html/set.html",
  111. "html/mine/html/dailiqianyue.html",
  112. "html/home/html/gongzuozu.html",
  113. "html/error/html/error.html",
  114. "html/mine/html/gerenziliao.html",
  115. "html/login/html/login.html",
  116. "html/hzzd/html/guidance_list.html",
  117. "html/mine/html/gongzuoshezhi.html",
  118. "html/home/html/relogin.html",
  119. "html/mine/html/manyidu.html",
  120. "html/mine/html/erweima.html"
  121. ]
  122. },
  123. "html/home/html/main.html": {
  124. "resources": [
  125. "common/iconfont/iconfont.woff",
  126. "js/app.js",
  127. "common/iconfont/iconfont.css",
  128. "html/home/js/main.js",
  129. "html/home/html/xiaoxi.html",
  130. "js/jquery/2.1.3/jquery.js",
  131. "common/cross/css/cross.css",
  132. "js/mui.min.js",
  133. "css/mui.min.css",
  134. "js/common_http.js",
  135. "html/home/html/home1.html",
  136. "html/home/html/home2.html",
  137. "js/im_new.js",
  138. "html/home/images/juming_btn.png",
  139. "html/home/images/xiaoxi_btn.png",
  140. "html/js/common.js",
  141. "html/home/images/shouye_pre.png",
  142. "html/home/images/tuandui_btn.png",
  143. "html/home/images/wode_btn.png",
  144. "html/home/images/shouye_btn.png",
  145. "html/home/images/juming_pre.png",
  146. "html/home/images/wode_pre.png",
  147. "html/tuandui/html/tuandui.html",
  148. "html/home/images/xiaoxi_pre.png",
  149. "html/home/images/tuandui_pre.png",
  150. "js/im.client.js",
  151. "common/cross/images/logo_dibu_img.png",
  152. "html/home/html/admin.html"
  153. ],
  154. "refer": [
  155. "html/home/html/suifangjihua.html",
  156. "html/home/html/mine.html",
  157. "html/home/html/xiaoxi.html",
  158. "html/home/html/huanzhe.html",
  159. "html/home/html/home1.html",
  160. "html/home/html/home2.html",
  161. "html/tuandui/html/tuandui.html",
  162. "html/login/html/login.html",
  163. "html/error/html/error.html",
  164. "html/home/html/admin.html",
  165. "html/home/html/qiehuan.html",
  166. "html/home/html/huanzhe-specal.html"
  167. ]
  168. },
  169. "html/home/html/huanzhe.html": {
  170. "resources": [
  171. "images/gaoyou@2x.png",
  172. "common/cross/css/cross.ui.css",
  173. "common/css/jy-style.css",
  174. "js/template.js",
  175. "images/tangyou@2x.png",
  176. "images/p-female.png",
  177. "images/p-default.png",
  178. "common/iconfont/iconfont.woff",
  179. "common/iconfont/iconfont.css",
  180. "js/mui.min.js",
  181. "js/jquery/2.1.3/jquery.js",
  182. "common/cross/css/cross.css",
  183. "js/common_http.js",
  184. "html/home/images/zidingyibiaoqian_icon.png",
  185. "html/home/images/checked_blue.png",
  186. "html/home/images/guanbi_btn.png",
  187. "html/home/images/weifenpei_icon.png",
  188. "common/css/pull-up-down.css",
  189. "html/home/js/huanzhe.js",
  190. "js/iscroll-probe.js",
  191. "js/pull-up-down.js",
  192. "html/home/images/jibingleixing_icon.png",
  193. "html/home/images/qianyueshijian_icon.png",
  194. "js/iscroll-pull-up-down.js",
  195. "images/shujuweikong_img.png",
  196. "html/home/images/jiankangqingkuang_icon.png",
  197. "images/sousuo_icon.png",
  198. "js/underscore.js",
  199. "js/es6-promise.js",
  200. "html/js/templateHelp.js",
  201. "html/js/common.js",
  202. "js/app.js",
  203. "images/weixing_icon.png",
  204. "html/home/images/guanli_icon.png",
  205. "css/mui-pull.css",
  206. "js/mui.pullToRefresh.js",
  207. "js/mui.pullToRefresh.material.js",
  208. "html/home/images/icon_tuanduibiaoqian.png",
  209. "html/home/images/icon_qianyuedaoqi.png",
  210. "html/home/css/huanzhe.css",
  211. "common/cross/images/logo_dibu_img.png",
  212. "html/home/images/tijiantixing_icon.png",
  213. "images/icon_xueyaji.png",
  214. "images/icon_xueyaji_zhihui.png",
  215. "images/weixing_icon2.png",
  216. "images/yujing_biaoqian_icon.png",
  217. "images/icon_xuetangyi_zhihui.png"
  218. ],
  219. "refer": [
  220. "html/huanzhe/html/huanzhexinxi.html",
  221. "html/login/html/login.html",
  222. "html/error/html/error.html",
  223. "html/huanzhe/html/searchhuanzhe.html",
  224. "html/search/html/zhuanyijumin.html",
  225. "html/huanzhe/html/searchhuanzhe2.html",
  226. "html/huanzhe/html/huanzhe-by-type.html",
  227. "html/huanzhe/html/huanzhe-tijian.html"
  228. ]
  229. },
  230. "html/login/html/login.html": {
  231. "resources": [
  232. "html/login/iconfont/iconfont.css",
  233. "html/login/iconfont/iconfont.ttf",
  234. "js/rtcsdk.js",
  235. "js/jquery/2.1.3/jquery.js",
  236. "js/security.js",
  237. "html/login/css/login.css",
  238. "html/login/images/logo.png",
  239. "fonts/mui.ttf",
  240. "js/mui.min.js",
  241. "css/mui.min.css",
  242. "js/common_http.js",
  243. "common/cross/css/cross.ui.css",
  244. "js/im_new.js",
  245. "html/login/js/login.js",
  246. "html/login/images/ditu_png.png",
  247. "html/js/common.js",
  248. "html/login/images/view_icon.png",
  249. "js/im.client.js",
  250. "common/cross/images/logo_dibu_img.png"
  251. ],
  252. "refer": [
  253. "html/home/html/main.html",
  254. "html/mine/html/shenfenyanzheng.html"
  255. ]
  256. },
  257. "html/home/html/home1.html": {
  258. "resources": [
  259. "common/css/ss-doctor.css",
  260. "common/cross/css/cross.min.css",
  261. "images/d-default.png",
  262. "js/template.js",
  263. "common/cross/css/ui.all.min.css",
  264. "images/d-male.png",
  265. "images/p-default.png",
  266. "images/shujuweikong_img.png",
  267. "js/mui.pullToRefresh.js",
  268. "html/home/images/qiehuan_btn.png",
  269. "css/mui-pull.css",
  270. "js/mui.pullToRefresh.material.js",
  271. "html/home/html/jumingim.html"
  272. ],
  273. "refer": [
  274. "html/mine/html/shezhimima.html",
  275. "html/message/html/p2dzixun.html",
  276. "html/message/html/p2p.html",
  277. "html/message/html/tuanduiqunliao.html",
  278. "html/mine/html/modify.html",
  279. "html/home/html/jumingim.html",
  280. "html/home/html/yishengim.html"
  281. ]
  282. },
  283. "html/mine/html/set.html": {
  284. "resources": [
  285. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  286. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  287. "js/im_new.js",
  288. "html/mine/css/cross.ui.css",
  289. "html/mine/js/base.js",
  290. "html/mine/images/settings/icon6.png",
  291. "html/mine/css/cross.css",
  292. "html/mine/css/setting.css",
  293. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  294. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  295. "common/cross/css/cross.ui.css",
  296. "js/app.js",
  297. "js/mui.min.js",
  298. "js/jquery/2.1.3/jquery.js",
  299. "common/cross/css/cross.css",
  300. "js/im.client.js",
  301. "js/common_http.js",
  302. "common/cross/images/logo_dibu_img.png"
  303. ],
  304. "refer": [
  305. "html/login/html/login.html",
  306. "html/mine/html/edit_mobilephone.html",
  307. "html/mine/html/about.html",
  308. "html/mine/html/feedback.html",
  309. "html/mine/html/shezhimima.html",
  310. "html/mine/html/xiaoxitongzhishezhi.html"
  311. ]
  312. },
  313. "html/home/html/home2.html": {
  314. "resources": [
  315. "images/doc-ico3.jpg",
  316. "common/css/ss-doctor.css",
  317. "images/d-default.png",
  318. "images/doc-ico1.jpg",
  319. "images/doc-ico2.jpg",
  320. "common/cross/css/ui.all.min.css",
  321. "common/iconfont/iconfont.woff",
  322. "common/cross/css/cross.min.css",
  323. "js/app.js",
  324. "common/iconfont/iconfont.css",
  325. "js/mui.min.js",
  326. "js/jquery/2.1.3/jquery.js",
  327. "js/common_http.js",
  328. "js/template.js",
  329. "html/home/css/home2.css",
  330. "html/home/images/qiehuan_btn.png",
  331. "html/home/images/qianyueguanli-icon.png",
  332. "common/css/cyc.css",
  333. "html/home/images/banner-font.png",
  334. "html/home/images/dailiqianyue_icon.png",
  335. "images/wodegongzuo_icon.png",
  336. "html/home/images/loading_03.gif",
  337. "html/home/images/suifangjihua_icon.png",
  338. "html/home/images/jiankangjiaoyu_icon.png",
  339. "html/home/images/mingyizixun_icon.png",
  340. "html/home/js/home2.js",
  341. "html/home/images/daiyuyue_icon.png",
  342. "html/home/images/banner-doctor.png",
  343. "html/home/images/banner-bg.png",
  344. "html/home/images/jiankangzixun_icon.png",
  345. "images/d-male.png",
  346. "images/d-female.png",
  347. "js/im_new.js",
  348. "html/home/images/wodemingpian_icon.png",
  349. "html/js/common.js",
  350. "css/mui-pull.css",
  351. "js/mui.pullToRefresh.js",
  352. "js/mui.pullToRefresh.material.js",
  353. "js/im.client.js",
  354. "images/doc-ico-new5.png",
  355. "images/doc-ico-new1.png",
  356. "images/doc-ico-new3.png",
  357. "images/doc-ico-new4.png",
  358. "images/doc-ico-new2.png",
  359. "html/home/images/tuanduigongzuobaogao_icon.png",
  360. "html/home/images/saomiao_icon.png",
  361. "html/home/images/xufangguanli_quanke_icon.png",
  362. "html/home/images/xufangdingdan_quanke_icon.png",
  363. "images/s-female.png",
  364. "common/cross/images/logo_dibu_img.png",
  365. "html/home/images/icon_manbingguanli.png",
  366. "html/home/images/dailijiandang_shouye_icon.png",
  367. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  368. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  369. "images/loading2.gif",
  370. "html/home/images/xitongfuwu_uanke_icon.png",
  371. "html/home/images/jiankangcujin.png",
  372. "html/home/images/jifenguanli_icon.png"
  373. ],
  374. "refer": [
  375. "html/home/html/xiaoxi.html",
  376. "html/mine/html/dailiqianyue.html",
  377. "html/xiaoxi/html/jiankangzixun.html",
  378. "html/home/html/huanzhe.html",
  379. "html/home/html/suifangjihua.html",
  380. "html/jkjy/html/jiankangjiaoyu.html",
  381. "html/qygl/html/sign_manage.html",
  382. "html/mine/html/shezhimima.html",
  383. "html/wdyy/html/huanzhe.html",
  384. "html/error/html/error.html",
  385. "html/login/html/login.html",
  386. "html/mygl/html/mingyizixunliebiao.html",
  387. "html/wdyy/html/doctor-appointment.html",
  388. "html/mine/html/erweima.html",
  389. "html/search/html/xuanzejumin_one.html",
  390. "html/suifang/html/index.html",
  391. "html/mine/html/manyidu.html",
  392. "html/prescription/html/xufangguanli.html",
  393. "html/prescription/html/xufangdingdan.html",
  394. "html/mine/html/dailijiandang.html",
  395. "html/tuandui/html/gongzuobaogao.html",
  396. "html/xtfw/html/xietongfuwu-management.html",
  397. "html/mbgl/html/manbingguanli.html",
  398. "html/jkjy/html/article-store.html",
  399. "html/kfgl/html/denizen.html"
  400. ]
  401. },
  402. "html/mine/html/dailiqianyue.html": {
  403. "resources": [
  404. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  405. "common/cross/css/cross.ui.css",
  406. "common/css/jy-style.css",
  407. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  408. "common/iconfont/iconfont.css",
  409. "common/cross/css/cross.css",
  410. "js/upload_preview.js",
  411. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  412. "widget/scale/scale.js",
  413. "js/mui.min.js",
  414. "js/jquery/2.1.3/jquery.js",
  415. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  416. "js/security.js",
  417. "common/css/doc-style.css",
  418. "js/common_http.js",
  419. "html/mine/js/dailiqianyue.js",
  420. "fonts/mui.ttf",
  421. "html/mine/js/auto_rec_ssc_photo.js",
  422. "js/es6-promise.js",
  423. "js/underscore.js",
  424. "js/template.js",
  425. "images/p-female.png"
  426. ],
  427. "refer": [
  428. "html/error/html/error.html",
  429. "html/mine/html/dailiqianyue-next.html",
  430. "html/login/html/login.html"
  431. ]
  432. },
  433. "html/home/html/gongzuozu.html": {
  434. "resources": [
  435. "html/home/css/cross.ui.css",
  436. "html/home/css/cross.css",
  437. "html/home/js/work_team.js",
  438. "html/home/images/list-tb3.png",
  439. "html/home/css/contacts.css",
  440. "html/home/js/base.js",
  441. "js/rtcsdk.js"
  442. ],
  443. "refer": []
  444. },
  445. "html/ggzx/html/gonggongzixun.html": {
  446. "resources": [
  447. "js/app.js",
  448. "widget/mobiscroll/2.17.1/js/mobiscroll.min.js",
  449. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  450. "html/ggzx/iconfont/iconfont.css",
  451. "images/p-default.png",
  452. "images/p-female.png",
  453. "common/css/doc-style.css",
  454. "js/template.js",
  455. "js/common_http.js",
  456. "common/cross/css/cross.ui.css",
  457. "js/mui.min.js",
  458. "js/jquery/2.1.3/jquery.js",
  459. "common/cross/css/cross.css"
  460. ],
  461. "refer": [
  462. "html/ggzx/html/ggzx-zixunxiangqing.html",
  463. "html/error/html/error.html",
  464. "html/login/html/login.html"
  465. ]
  466. },
  467. "html/zdzx/html/zhidingzixun.html": {
  468. "resources": [
  469. "html/zdzx/css/cross.css",
  470. "images/noset.png",
  471. "common/css/doc-style.css",
  472. "html/zdzx/css/yy-qygl.css",
  473. "js/template.js",
  474. "js/common_http.js",
  475. "html/zdzx/css/dhzs.css",
  476. "html/zdzx/js/base.js",
  477. "html/zdzx/css/yy-style.css",
  478. "html/js/templateHelp.js",
  479. "images/shujuweikong_img.png",
  480. "common/cross/css/cross.ui.css",
  481. "js/mui.min.js",
  482. "js/jquery/2.1.3/jquery.js",
  483. "html/js/common.js",
  484. "images/p-female.png"
  485. ],
  486. "refer": [
  487. "html/zdzx/html/zixunxiangqing.html",
  488. "html/error/html/error.html"
  489. ]
  490. },
  491. "html/xiaoxi/html/jiankangzixun.html": {
  492. "resources": [
  493. "html/ggzx/html/gonggongzixun.html",
  494. "common/cross/css/cross.ui.css",
  495. "common/css/jy-style.css",
  496. "js/mui.min.js",
  497. "js/jquery/2.1.3/jquery.js",
  498. "common/cross/css/cross.css",
  499. "html/js/common.js",
  500. "html/xiaoxi/images/checked_blue.png",
  501. "common/cross/images/logo_dibu_img.png",
  502. "html/prescription/html/xufangzixun.html"
  503. ],
  504. "refer": [
  505. "html/ggzx/html/gonggongzixun.html",
  506. "html/zdzx/html/zhidingzixun.html",
  507. "html/zdzx/html/tuanduitongji.html",
  508. "html/prescription/html/xufangzixun.html"
  509. ]
  510. },
  511. "html/ggzx/html/ggzx-zixunxiangqing.html": {
  512. "resources": [
  513. "widget/scale/scale.js",
  514. "html/ggzx/css/cross.css",
  515. "images/noset.png",
  516. "common/cross/css/cross.ui.css",
  517. "js/mui.min.js",
  518. "js/jquery/2.1.3/jquery.js",
  519. "common/cross/css/cross.css",
  520. "common/css/doc-style.css",
  521. "html/ggzx/iconfont/iconfont.css",
  522. "js/template.js",
  523. "js/common_http.js",
  524. "images/p-female.png",
  525. "images/d-male.png",
  526. "js/mui.previewimage.js",
  527. "js/mui.zoom.js",
  528. "css/mui.min.css"
  529. ],
  530. "refer": [
  531. "html/ggzx/html/ggzx-zhuanxiehuida.html"
  532. ]
  533. },
  534. "html/huanzhe/html/huanzhexinxi.html": {
  535. "resources": [
  536. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  537. "html/huanzhe/js/health-index.js",
  538. "common/cross/css/cross.ui.css",
  539. "images/noset.png",
  540. "common/css/jy-style.css",
  541. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  542. "common/iconfont/iconfont.css",
  543. "widget/echarts/2.2.7/js/echarts-all.js",
  544. "common/cross/css/cross.css",
  545. "images/p-female.png",
  546. "widget/swiper/3.1/swiper.min.css",
  547. "widget/swiper/3.1/swiper.jquery.min.js",
  548. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  549. "js/jquery/2.1.3/jquery.js",
  550. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  551. "js/template.js",
  552. "js/common_http.js",
  553. "js/mui.js",
  554. "html/huanzhe/js/index-charts.js",
  555. "html/js/templateHelp.js",
  556. "html/huanzhe/images/gengduo_icon.png",
  557. "html/huanzhe/images/yongyao_icon.png",
  558. "html/js/common.js",
  559. "html/huanzhe/images/tizheng_icon1.png",
  560. "html/huanzhe/images/bohao_icon.png",
  561. "js/iscroll-probe.js",
  562. "js/pull-up-down.js",
  563. "js/underscore.js",
  564. "html/huanzhe/css/huanzhexinxi.css",
  565. "js/iscroll-pull-up-down.js",
  566. "html/huanzhe/images/jianting_icon.png",
  567. "html/huanzhe/js/huanzhexinxi.js",
  568. "js/app.js",
  569. "html/huanzhe/images/anniu_icon.png",
  570. "html/huanzhe/images/zhuyuan_icon.png",
  571. "common/css/pull-up-down.css",
  572. "html/huanzhe/images/jiancha_icon.png",
  573. "js/es6-promise.js",
  574. "html/huanzhe/images/tixingjiaofei_btn.png",
  575. "html/huanzhe/images/menzhen_icon.png",
  576. "common/images/pull-icon@2x.png",
  577. "html/huanzhe/images/yitixing_btn.png",
  578. "images/weixing_icon.png",
  579. "html/huanzhe/images/jiankangtijian_icon.png",
  580. "html/huanzhe/images/tixingguanzhu_btn.png",
  581. "html/huanzhe/images/zhidao_icon2.png",
  582. "html/huanzhe/images/dianhua_icon.png",
  583. "html/huanzhe/images/jiaoyu_icon.png",
  584. "css/mui-pull.css",
  585. "js/mui.pullToRefresh.js",
  586. "js/mui.pullToRefresh.material.js",
  587. "html/huanzhe/images/icon_more.png",
  588. "css/mui.min.css",
  589. "html/huanzhe/images/xufangjilu_juming_icon.png",
  590. "html/huanzhe/images/chanjianjilu_juming_icon.png",
  591. "common/cross/images/logo_dibu_img.png",
  592. "html/huanzhe/images/manbingdangan_icon.png"
  593. ],
  594. "refer": [
  595. "html/huanzhe/html/huanzeziliao.html",
  596. "html/jkjy/html/jiankangjiaoyu.html",
  597. "html/wdyy/html/appointment-register.html",
  598. "html/wdyy/html/my-appointment.html",
  599. "html/error/html/error.html",
  600. "html/hzzd/html/xinzengzhidao.html",
  601. "html/huanzhe/html/disease-label.html",
  602. "html/huanzhe/html/jianchajianyan.html",
  603. "html/huanzhe/html/zhuyuanjilu.html",
  604. "html/huanzhe/html/menzhenjilu.html",
  605. "html/wdsb/html/my-equipments.html",
  606. "html/huanzhe/html/jiatingchengyuan.html",
  607. "html/huanzhe/html/fuwujilu.html",
  608. "html/huanzhe/html/yongyaojilu.html",
  609. "html/huanzhe/html/jiankangtijian.html",
  610. "html/huanzhe/html/disease-label-edit.html",
  611. "html/jkjl/html/health-record.html",
  612. "html/hzzd/html/guidance_list.html",
  613. "html/suifang/html/choose_suifang.html",
  614. "html/suifang/html/suifang_list.html"
  615. ]
  616. },
  617. "html/jkjy/html/my_store.html": {
  618. "resources": [
  619. "html/jkjy/images/liulan_icon.png",
  620. "html/jkjy/js/my_store.js",
  621. "html/js/templateHelp.js",
  622. "common/cross/css/cross.ui.css",
  623. "js/app.js",
  624. "common/css/jy-style.css",
  625. "common/iconfont/iconfont.css",
  626. "html/jkjy/images/zhuanfa_icon.png",
  627. "common/images/pull-icon@2x.png",
  628. "html/js/common.js",
  629. "common/cross/css/cross.css",
  630. "images/sousuo_icon.png",
  631. "html/jkjy/images/shoucang_pre.png",
  632. "html/jkjy/images/shoucang_button.png",
  633. "common/css/pull-up-down.css",
  634. "js/iscroll-probe.js",
  635. "js/pull-up-down.js",
  636. "js/es6-promise.js",
  637. "js/underscore.js",
  638. "js/mui.min.js",
  639. "html/jkjy/css/jiankangjiaoyu.css",
  640. "js/jquery/2.1.3/jquery.js",
  641. "js/iscroll-pull-up-down.js",
  642. "js/template.js",
  643. "js/common_http.js",
  644. "images/shujuweikong_img.png",
  645. "html/jkjy/images/yifasong_icon.png"
  646. ],
  647. "refer": [
  648. "html/login/html/login.html",
  649. "html/jkjy/html/xuanzejumin.html",
  650. "html/jkjy/html/article.html"
  651. ]
  652. },
  653. "html/jkjy/html/xuanzejumin.html": {
  654. "resources": [
  655. "html/jkjy/js/xuanzejumin.js",
  656. "html/jkjy/images/checked_all.png",
  657. "html/jkjy/css/xuanzejumin.css",
  658. "images/p-default.png",
  659. "images/p-female.png",
  660. "html/jkjy/images/tanchuang_icon.png",
  661. "html/jkjy/images/unchecked.png",
  662. "images/shujuweikong_img.png",
  663. "html/js/templateHelp.js",
  664. "common/cross/css/cross.ui.css",
  665. "js/app.js",
  666. "common/css/jy-style.css",
  667. "common/iconfont/iconfont.css",
  668. "html/js/common.js",
  669. "common/cross/css/cross.css",
  670. "images/sousuo_icon.png",
  671. "common/css/pull-up-down.css",
  672. "js/iscroll-probe.js",
  673. "js/pull-up-down.js",
  674. "js/underscore.js",
  675. "js/es6-promise.js",
  676. "js/mui.min.js",
  677. "js/jquery/2.1.3/jquery.js",
  678. "js/iscroll-pull-up-down.js",
  679. "js/template.js",
  680. "js/common_http.js",
  681. "images/weixing_icon.png",
  682. "html/jkjy/images/checked.png"
  683. ],
  684. "refer": [
  685. "html/error/html/error.html",
  686. "html/jkjy/html/search_jumin.html",
  687. "html/login/html/login.html"
  688. ]
  689. },
  690. "html/jkjy/html/jiankangjiaoyu.html": {
  691. "resources": [
  692. "html/jkjy/images/liulan_icon.png",
  693. "html/jkjy/js/jiankangjiaoyu.js",
  694. "html/jkjy/images/zhuanfa_icon.png",
  695. "html/jkjy/css/jiankangjiaoyu.css",
  696. "common/images/pull-icon@2x.png",
  697. "html/jkjy/images/shoucang_pre.png",
  698. "html/jkjy/images/shoucang_button.png",
  699. "html/js/templateHelp.js",
  700. "common/cross/css/cross.ui.css",
  701. "js/app.js",
  702. "common/css/jy-style.css",
  703. "common/iconfont/iconfont.css",
  704. "html/js/common.js",
  705. "common/cross/css/cross.css",
  706. "images/sousuo_icon.png",
  707. "common/css/pull-up-down.css",
  708. "js/iscroll-probe.js",
  709. "js/pull-up-down.js",
  710. "js/es6-promise.js",
  711. "js/underscore.js",
  712. "js/mui.min.js",
  713. "js/jquery/2.1.3/jquery.js",
  714. "js/iscroll-pull-up-down.js",
  715. "js/template.js",
  716. "js/common_http.js",
  717. "html/jkjy/images/yifasong_icon.png",
  718. "html/jkjy/images/sousuo_icon.png",
  719. "fonts/mui.ttf",
  720. "html/jkjy/images/soucang_icon.png",
  721. "html/jkjy/images/lishi_icon.png",
  722. "images/shujuweikong_img.png",
  723. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  724. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  725. "css/mui.min.css"
  726. ],
  727. "refer": [
  728. "html/jkjy/html/my_store.html",
  729. "html/jkjy/html/xuanzejumin.html",
  730. "html/jkjy/html/article.html",
  731. "html/login/html/login.html",
  732. "html/jkjy/html/search_article.html",
  733. "html/search/html/xuanzejumin_more.html",
  734. "html/jkjy/html/fasongjilu.html"
  735. ]
  736. },
  737. "html/tuandui/html/tuandui.html": {
  738. "resources": [
  739. "common/cross/css/cross.ui.css",
  740. "images/d-male.png",
  741. "widget/iscroll/5.1.3/js/iscroll.js",
  742. "html/js/l-scroll.css",
  743. "html/tuandui/images/tuanduquanliao_icon.png",
  744. "images/sousuo_icon.png",
  745. "html/tuandui/js/tuandui.js",
  746. "images/d-female.png",
  747. "html/tuandui/css/tuandui.css",
  748. "js/underscore.js",
  749. "js/es6-promise.js",
  750. "html/tuandui/images/checked_blue.png",
  751. "html/js/l-scroll.js",
  752. "js/template.js",
  753. "html/js/templateHelp.js",
  754. "common/iconfont/iconfont.css",
  755. "html/js/common.js",
  756. "common/cross/css/cross.css",
  757. "js/mui.min.js",
  758. "js/jquery/2.1.3/jquery.js",
  759. "js/common_http.js",
  760. "js/mui.pullToRefresh.js",
  761. "css/mui-pull.css",
  762. "js/mui.pullToRefresh.material.js",
  763. "js/im.client.js",
  764. "common/cross/images/logo_dibu_img.png"
  765. ],
  766. "refer": [
  767. "html/tuandui/html/search.html",
  768. "html/error/html/error.html",
  769. "html/message/html/p2p.html",
  770. "html/message/html/tuanduiqunliao.html",
  771. "html/mine/html/zuyuanziliao.html",
  772. "html/tuandui/html/zyjm-layer.html",
  773. "html/search/html/zhuanyijumin.html",
  774. "html/tuandui/html/gongzuobaogao.html",
  775. "html/login/html/login.html"
  776. ]
  777. },
  778. "html/tuandui/html/search.html": {
  779. "resources": [
  780. "html/js/android.js",
  781. "html/js/templateHelp.js",
  782. "widget/iscroll/5.1.3/js/iscroll.js",
  783. "html/tuandui/css/tuandui.css",
  784. "images/sousuo_icon.png",
  785. "images/shujuweikong_img.png",
  786. "common/cross/css/cross.ui.css",
  787. "common/iconfont/iconfont.css",
  788. "js/jquery/2.1.3/jquery.js",
  789. "common/cross/css/cross.css",
  790. "html/js/common.js",
  791. "js/app.js",
  792. "js/underscore.js",
  793. "js/es6-promise.js",
  794. "js/mui.min.js",
  795. "js/common_http.js",
  796. "js/template.js",
  797. "js/im.client.js",
  798. "common/cross/images/logo_dibu_img.png"
  799. ],
  800. "refer": []
  801. },
  802. "html/jkjy/html/article.html": {
  803. "resources": [
  804. "common/cross/css/cross.ui.css",
  805. "common/css/jy-style.css",
  806. "js/app.js",
  807. "common/iconfont/iconfont.css",
  808. "js/im_new.js",
  809. "html/js/common.js",
  810. "common/cross/css/cross.css",
  811. "html/jkjy/images/shoucang_button.png",
  812. "common/css/pull-up-down.css",
  813. "js/mui.min.js",
  814. "html/jkjy/css/jiankangjiaoyu.css",
  815. "js/jquery/2.1.3/jquery.js",
  816. "js/common_http.js",
  817. "js/template.js",
  818. "html/jkjy/images/zhuanfa2_icon.png",
  819. "html/jkjy/images/shoucang_pre.png"
  820. ],
  821. "refer": [
  822. "html/search/html/xuanzejumin_more.html"
  823. ]
  824. },
  825. "html/error/html/error.html": {
  826. "resources": [
  827. "images/quesheng_img.png",
  828. "html/error/css/error.css",
  829. "html/error/js/error.js",
  830. "common/cross/css/cross.ui.css",
  831. "js/underscore.js",
  832. "js/es6-promise.js",
  833. "js/app.js",
  834. "js/mui.min.js",
  835. "js/jquery/2.1.3/jquery.js",
  836. "common/cross/css/cross.css",
  837. "js/common_http.js",
  838. "js/template.js",
  839. "common/cross/images/logo_dibu_img.png"
  840. ],
  841. "refer": []
  842. },
  843. "html/jkjy/html/search_jumin.html": {
  844. "resources": [
  845. "html/jkjy/js/search_jumin.js"
  846. ],
  847. "refer": []
  848. },
  849. "html/jkjy/html/search_article.html": {
  850. "resources": [
  851. "html/js/templateHelp.js",
  852. "common/cross/css/cross.ui.css",
  853. "js/app.js",
  854. "widget/iscroll/5.1.3/js/iscroll.js",
  855. "common/iconfont/iconfont.css",
  856. "images/sousuo_icon.png",
  857. "html/js/common.js",
  858. "common/cross/css/cross.css",
  859. "html/js/android.js",
  860. "common/css/pull-up-down.css",
  861. "js/iscroll-probe.js",
  862. "js/pull-up-down.js",
  863. "js/es6-promise.js",
  864. "js/underscore.js",
  865. "js/mui.min.js",
  866. "html/jkjy/css/jiankangjiaoyu.css",
  867. "js/jquery/2.1.3/jquery.js",
  868. "js/iscroll-pull-up-down.js",
  869. "images/shujuweikong_img.png",
  870. "js/template.js",
  871. "js/common_http.js"
  872. ],
  873. "refer": [
  874. "html/jkjy/html/article.html"
  875. ]
  876. },
  877. "html/qygl/html/sign_manage.html": {
  878. "resources": [
  879. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  880. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  881. "html/qygl/js/sign_manage.js",
  882. "html/qygl/css/qygl.css",
  883. "images/p-female.png",
  884. "images/p-default.png",
  885. "html/qygl/js/base.js",
  886. "html/qygl/css/yy-qygl.css",
  887. "html/js/templateHelp.js",
  888. "common/cross/css/cross.ui.css",
  889. "widget/iscroll/5.1.3/js/iscroll.js",
  890. "js/app.js",
  891. "html/js/l-scroll.css",
  892. "html/js/common.js",
  893. "common/cross/css/cross.css",
  894. "js/mui.min.js",
  895. "js/jquery/2.1.3/jquery.js",
  896. "images/shujuweikong_img.png",
  897. "js/template.js",
  898. "js/common_http.js",
  899. "html/js/l-scroll.js",
  900. "html/qygl/images/quanbutixing_btn.png",
  901. "css/mui.min.css",
  902. "images/weixing_icon.png"
  903. ],
  904. "refer": [
  905. "html/qygl/html/xiaoxichuli.html",
  906. "html/huanzhe/html/huanzhexinxi.html",
  907. "html/qygl/html/patient-manage.html"
  908. ]
  909. },
  910. "html/mine/html/gerenziliao.html": {
  911. "resources": [
  912. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  913. "html/js/templateHelp.js",
  914. "common/cross/css/cross.ui.css",
  915. "js/app.js",
  916. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  917. "js/im_new.js",
  918. "html/mine/css/gerenziliao.css",
  919. "html/js/common.js",
  920. "common/cross/css/cross.css",
  921. "html/mine/js/upload_photo_modify.js",
  922. "js/mui.min.js",
  923. "js/jquery/2.1.3/jquery.js",
  924. "common/css/doc-style.css",
  925. "js/template.js",
  926. "js/common_http.js",
  927. "images/d-male.png",
  928. "common/cross/images/logo_dibu_img.png"
  929. ],
  930. "refer": [
  931. "html/mine/html/clip_photo.html",
  932. "html/mine/html/edit_mobilephone.html",
  933. "html/mine/html/modify.html",
  934. "html/mine/html/clip_photo2.html"
  935. ]
  936. },
  937. "html/mine/html/shezhimima.html": {
  938. "resources": [
  939. "common/css/doc-style.css",
  940. "html/mine/css/shenfenyanzheng.css",
  941. "js/security.js",
  942. "js/underscore.js",
  943. "js/es6-promise.js",
  944. "common/css/jy-style.css"
  945. ],
  946. "refer": []
  947. },
  948. "html/home/html/xiaoxipage.html": {
  949. "resources": [
  950. "html/home/images/jiankangtizheng_icon.png",
  951. "html/home/images/taolunzu_n.png",
  952. "html/home/js/xiaoxi.js",
  953. "html/home/images/qianyuexiaoxi_icon.png",
  954. "html/home/images/xitongxiaoxi.png",
  955. "common/css/ss-doctor.css",
  956. "html/js/templateHelp.js",
  957. "common/cross/css/cross.ui.css",
  958. "widget/iscroll/5.1.3/js/iscroll.js",
  959. "js/app.js",
  960. "common/cross/css/cross.min.css",
  961. "js/im_new.js",
  962. "common/iconfont/iconfont.css",
  963. "html/js/l-scroll.css",
  964. "html/js/common.js",
  965. "common/cross/css/ui.all.min.css",
  966. "html/home/css/xiaoxi.css",
  967. "js/mui.min.js",
  968. "js/jquery/2.1.3/jquery.js",
  969. "html/js/date-ext.js",
  970. "js/template.js",
  971. "js/common_http.js",
  972. "html/js/l-scroll.js",
  973. "css/mui-pull.css",
  974. "js/mui.pullToRefresh.material.js",
  975. "js/im.client.js",
  976. "html/home/images/xufangxiaoxi_icon.png",
  977. "common/cross/images/logo_dibu_img.png",
  978. "js/mui.pullToRefresh.js",
  979. "html/home/images/jiebang_xiaoxi_icon.png",
  980. "html/home/images/wenzhangshenhexiaoxi_icon.png"
  981. ],
  982. "refer": [
  983. "html/qygl/html/qianyuexiaoxi.html",
  984. "html/error/html/error.html",
  985. "html/xiaoxi/html/tizhengzhibiao.html",
  986. "html/xiaoxi/html/jiankangtizheng.html",
  987. "html/message/html/xitongxiaoxi.html",
  988. "html/prescription/html/xufangxiaoxi.html",
  989. "html/xtfw/html/xietongfuwu-message.html",
  990. "html/login/html/login.html",
  991. "html/jkjy/html/shenhexiaoxi.html"
  992. ]
  993. },
  994. "html/home/html/jumingim.html": {
  995. "resources": [
  996. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  997. "html/home/css/search-bar.css",
  998. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  999. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  1000. "html/home/js/search-bar.js",
  1001. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  1002. "common/css/doc-style.css",
  1003. "js/jquery.ellipsis.js",
  1004. "html/home/css/jumingim.css",
  1005. "fonts/font-awesome/css/font-awesome.min.css",
  1006. "html/home/js/jumingim.js",
  1007. "images/p-female.png",
  1008. "common/images/pull-icon@2x.png",
  1009. "common/cross/css/cross.ui.css",
  1010. "js/iscroll-probe.js",
  1011. "js/pull-up-down.js",
  1012. "js/underscore.js",
  1013. "js/mui.min.js",
  1014. "js/jquery/2.1.3/jquery.js",
  1015. "js/iscroll-pull-up-down.js",
  1016. "images/shujuweikong_img.png",
  1017. "js/template.js",
  1018. "common/css/jy-style.css",
  1019. "js/app.js",
  1020. "common/iconfont/iconfont.css",
  1021. "images/sousuo_icon.png",
  1022. "common/cross/css/cross.css",
  1023. "common/css/pull-up-down.css",
  1024. "js/es6-promise.js",
  1025. "js/common_http.js",
  1026. "html/js/l-scroll.js",
  1027. "common/css/ss-doctor.css",
  1028. "widget/iscroll/5.1.3/js/iscroll.js",
  1029. "js/im_new.js",
  1030. "html/js/l-scroll.css",
  1031. "images/p-default.png",
  1032. "images/d-male.png",
  1033. "html/home/images/feizixunzhong-juming_icon.png",
  1034. "css/mui-pull.css",
  1035. "js/mui.pullToRefresh.js",
  1036. "js/mui.pullToRefresh.material.js",
  1037. "js/im.client.js",
  1038. "common/cross/images/logo_dibu_img.png",
  1039. "images/loading2.gif"
  1040. ],
  1041. "refer": [
  1042. "html/home/html/sousuojuming.html",
  1043. "html/message/html/p2dzixun.html",
  1044. "html/message/html/qiuzhuqunliao.html",
  1045. "html/home/html/fzxz-jumingim.html",
  1046. "html/message/html/xufangzixun.html",
  1047. "html/error/html/error.html",
  1048. "html/login/html/login.html"
  1049. ]
  1050. },
  1051. "html/home/html/sousuoyisheng.html": {
  1052. "resources": [
  1053. "html/home/js/sousuoyisheng.js",
  1054. "html/home/css/sousuojuming.css",
  1055. "fonts/font-awesome/fonts/fontawesome-webfont.woff",
  1056. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  1057. "common/cross/css/cross.ui.css",
  1058. "common/css/jy-style.css",
  1059. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  1060. "common/iconfont/iconfont.css",
  1061. "html/home/js/search-bar.js",
  1062. "images/sousuo_icon.png",
  1063. "common/cross/css/cross.css",
  1064. "html/js/android.js",
  1065. "fonts/font-awesome/css/font-awesome.min.css",
  1066. "html/home/css/search-bar.css",
  1067. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1068. "js/underscore.js",
  1069. "js/es6-promise.js",
  1070. "js/mui.min.js",
  1071. "js/jquery/2.1.3/jquery.js",
  1072. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  1073. "common/css/doc-style.css",
  1074. "images/shujuweikong_img.png",
  1075. "js/common_http.js",
  1076. "js/template.js",
  1077. "html/js/l-scroll.js",
  1078. "images/d-male.png",
  1079. "js/jquery.ellipsis.js",
  1080. "js/app.js",
  1081. "common/cross/images/logo_dibu_img.png",
  1082. "js/im.client.js"
  1083. ],
  1084. "refer": [
  1085. "html/home/html/sousuosimpleliaotianjilu-ys.html",
  1086. "html/home/html/sousuoliaotianjilu.html",
  1087. "html/home/html/sousuoqunliao.html",
  1088. "html/home/html/sousuojuminoryisheng.html",
  1089. "html/message/html/p2p.html",
  1090. "html/message/html/qiuzhuqunliao.html"
  1091. ]
  1092. },
  1093. "html/home/html/yishengim.html": {
  1094. "resources": [
  1095. "html/home/js/yishengim.js",
  1096. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  1097. "html/home/css/search-bar.css",
  1098. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  1099. "html/home/js/search-bar.js",
  1100. "common/css/doc-style.css",
  1101. "html/home/css/jumingim.css",
  1102. "fonts/font-awesome/css/font-awesome.min.css",
  1103. "js/jquery.ellipsis.js",
  1104. "common/css/ss-doctor.css",
  1105. "common/cross/css/cross.ui.css",
  1106. "widget/iscroll/5.1.3/js/iscroll.js",
  1107. "js/iscroll-probe.js",
  1108. "js/pull-up-down.js",
  1109. "js/underscore.js",
  1110. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1111. "js/mui.min.js",
  1112. "js/jquery/2.1.3/jquery.js",
  1113. "js/iscroll-pull-up-down.js",
  1114. "images/shujuweikong_img.png",
  1115. "js/template.js",
  1116. "js/app.js",
  1117. "common/css/jy-style.css",
  1118. "js/im_new.js",
  1119. "common/iconfont/iconfont.css",
  1120. "html/js/l-scroll.css",
  1121. "common/cross/css/cross.css",
  1122. "common/css/pull-up-down.css",
  1123. "js/es6-promise.js",
  1124. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  1125. "js/common_http.js",
  1126. "html/js/l-scroll.js",
  1127. "images/d-default.png",
  1128. "images/d-male.png",
  1129. "images/sousuo_icon.png",
  1130. "css/mui-pull.css",
  1131. "js/mui.pullToRefresh.js",
  1132. "js/mui.pullToRefresh.material.js",
  1133. "js/im.client.js",
  1134. "images/p-female.png",
  1135. "common/cross/images/logo_dibu_img.png",
  1136. "images/loading2.gif"
  1137. ],
  1138. "refer": [
  1139. "html/home/html/sousuoyisheng.html",
  1140. "html/message/html/p2p.html",
  1141. "html/message/html/tuanduiqunliao.html",
  1142. "html/message/html/qiuzhuqunliao.html"
  1143. ]
  1144. },
  1145. "html/home/html/sousuojuming.html": {
  1146. "resources": [
  1147. "html/home/css/sousuojuming.css",
  1148. "html/home/js/sousuojuming.js",
  1149. "html/js/android.js",
  1150. "fonts/font-awesome/fonts/fontawesome-webfont.woff",
  1151. "common/cross/css/cross.ui.css",
  1152. "html/home/css/search-bar.css",
  1153. "js/underscore.js",
  1154. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1155. "js/mui.min.js",
  1156. "js/jquery/2.1.3/jquery.js",
  1157. "images/shujuweikong_img.png",
  1158. "common/css/doc-style.css",
  1159. "js/jquery.ellipsis.js",
  1160. "js/template.js",
  1161. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  1162. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  1163. "common/css/jy-style.css",
  1164. "js/app.js",
  1165. "common/iconfont/iconfont.css",
  1166. "js/im_new.js",
  1167. "html/home/js/search-bar.js",
  1168. "common/cross/css/cross.css",
  1169. "images/sousuo_icon.png",
  1170. "fonts/font-awesome/css/font-awesome.min.css",
  1171. "js/es6-promise.js",
  1172. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  1173. "js/common_http.js",
  1174. "html/js/l-scroll.js",
  1175. "common/cross/images/logo_dibu_img.png",
  1176. "js/im.client.js"
  1177. ],
  1178. "refer": [
  1179. "html/home/html/sousuoliaotianjilu.html",
  1180. "html/home/html/sousuoqianyuejumin.html",
  1181. "html/home/html/sousuoqunliao.html",
  1182. "html/home/html/sousuosimpleliaotianjilu.html",
  1183. "html/home/html/sousuojuminoryisheng.html",
  1184. "html/message/html/qiuzhuqunliao.html"
  1185. ]
  1186. },
  1187. "html/home/html/admin.html": {
  1188. "resources": [
  1189. "html/home/images/qianyuguanli_hui_icon.png",
  1190. "html/home/images/qiehuan_btn.png",
  1191. "images/s-admin.png",
  1192. "html/home/images/jixiaoguanli_icon.png",
  1193. "html/home/images/yishenshiyong_hui_icon.png",
  1194. "common/css/cyc.css",
  1195. "html/home/images/yeweifenxi_icon.png",
  1196. "images/wodegongzuo_icon.png",
  1197. "html/home/css/admin.css",
  1198. "html/home/images/tuigaiqian_icon.png",
  1199. "images/fuwufenxi_icon.png",
  1200. "html/home/images/jumingshiyong_hui_icon.png",
  1201. "html/home/images/jumingfenxi_icon.png",
  1202. "common/css/iscroll.css",
  1203. "html/home/images/qianyujinzhan_icon.png",
  1204. "html/home/images/huanzheguanli_icon.png",
  1205. "js/iscroll-probe.js",
  1206. "html/home/images/yishengguanli_icon.png",
  1207. "html/home/images/jigouguanli_icon.png",
  1208. "js/iscroll-pull-up-down.js",
  1209. "html/home/images/mingyiguanli_icon.png",
  1210. "js/waterbubble.js",
  1211. "common/css/ss-doctor.css",
  1212. "widget/iscroll/5.1.3/js/iscroll.js",
  1213. "common/cross/css/cross.min.css",
  1214. "common/cross/css/ui.all.min.css",
  1215. "images/s-male.png",
  1216. "images/d-male.png",
  1217. "html/home/images/lianglvfenxi_icon.png",
  1218. "html/home/images/mingyiguanli_icon-dis.png",
  1219. "common/css/l_size.css",
  1220. "css/mui-pull.css",
  1221. "html/js/common.js",
  1222. "js/mui.min.js",
  1223. "js/jquery/2.1.3/jquery.js",
  1224. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  1225. "js/mui.pullToRefresh.js",
  1226. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  1227. "js/app.js",
  1228. "common/iconfont/iconfont.css",
  1229. "js/mui.pullToRefresh.material.js",
  1230. "js/common_http.js",
  1231. "html/home/images/yishengtijian_icon.png",
  1232. "html/home/images/zixunfenxi.png",
  1233. "html/home/images/jiebangshebei.png",
  1234. "html/home/images/survey.png",
  1235. "html/home/images/icon_manyidufenxi.png",
  1236. "html/manager/images/guanbi_01_btn.png",
  1237. "html/home/images/xuqianjinzhan_icon.png",
  1238. "html/home/images/xiazhan_guanliyuan_icon.png",
  1239. "common/cross/images/logo_dibu_img.png",
  1240. "js/template.js",
  1241. "css/mui.min.css",
  1242. "images/hospital_default.png",
  1243. "images/loading2.gif",
  1244. "html/home/images/guanbi(dahao)_btn.png",
  1245. "images/s-female.png",
  1246. "html/home/images/icon_changfufangfenxi.png",
  1247. "html/home/images/icon_zixunfenxi.png",
  1248. "html/home/images/huodongfenxi.png",
  1249. "html/home/images/device_manage.png",
  1250. "html/home/js/admin.js",
  1251. "html/home/images/icon_jianjiaotuisong.png"
  1252. ],
  1253. "refer": [
  1254. "html/manager/html/yewufenxi.html",
  1255. "html/observer/html/district.html",
  1256. "html/manager/html/qianyuetongji2.html",
  1257. "html/manager/html/analysis1.html",
  1258. "html/manager/html/tuigaiqian.html",
  1259. "html/manager/html/lianglvfenxi-sheguan.html",
  1260. "html/observer/html/doctors.html",
  1261. "html/survey/html/survey_list.html",
  1262. "html/manager/html/manyidufenxi.html",
  1263. "html/manager/html/xuqiantongji.html",
  1264. "html/mine/html/shezhimima.html",
  1265. "html/home/html/jianjiaotuisong.html",
  1266. "html/manager/html/prescription-analysis.html",
  1267. "html/login/html/login.html",
  1268. "html/manager/html/qianyuetongji-new.html"
  1269. ]
  1270. },
  1271. "html/home/html/qiehuan.html": {
  1272. "resources": [
  1273. "common/cross/css/cross.min.css",
  1274. "html/home/images/yisheng_btn.png",
  1275. "html/home/css/qiehuan.css",
  1276. "html/home/images/checked.png",
  1277. "html/home/images/colorback.jpg",
  1278. "html/home/images/guanliyuan_btn.png",
  1279. "common/cross/css/ui.all.min.css",
  1280. "common/iconfont/iconfont.css",
  1281. "js/mui.min.js",
  1282. "js/jquery/2.1.3/jquery.js",
  1283. "js/common_http.js",
  1284. "common/cross/images/logo_dibu_img.png"
  1285. ],
  1286. "refer": []
  1287. },
  1288. "html/huanzhe/html/huanzeziliao.html": {
  1289. "resources": [
  1290. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1291. "html/js/expensesUpdate.js",
  1292. "js/mui.min.js",
  1293. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  1294. "common/css/doc-style.css",
  1295. "html/js/templateHelp.js",
  1296. "common/cross/css/cross.ui.css",
  1297. "common/css/jy-style.css",
  1298. "common/iconfont/iconfont.css",
  1299. "common/cross/css/cross.css",
  1300. "html/js/common.js",
  1301. "js/underscore.js",
  1302. "js/jquery/2.1.3/jquery.js",
  1303. "js/template.js",
  1304. "js/common_http.js",
  1305. "html/huanzhe/js/huanzeziliao.js"
  1306. ],
  1307. "refer": []
  1308. },
  1309. "html/wdyy/html/huanzhe.html": {
  1310. "resources": [
  1311. "html/js/templateHelp.js",
  1312. "common/cross/css/cross.ui.css",
  1313. "js/app.js",
  1314. "common/css/jy-style.css",
  1315. "common/iconfont/iconfont.css",
  1316. "html/js/common.js",
  1317. "common/cross/css/cross.css",
  1318. "images/sousuo_icon.png",
  1319. "common/css/pull-up-down.css",
  1320. "js/iscroll-probe.js",
  1321. "js/pull-up-down.js",
  1322. "js/es6-promise.js",
  1323. "js/underscore.js",
  1324. "js/mui.min.js",
  1325. "js/jquery/2.1.3/jquery.js",
  1326. "html/wdyy/js/huanzhe.js",
  1327. "js/iscroll-pull-up-down.js",
  1328. "images/shujuweikong_img.png",
  1329. "js/template.js",
  1330. "js/common_http.js",
  1331. "images/p-female.png",
  1332. "html/wdyy/images/checked_blue.png"
  1333. ],
  1334. "refer": [
  1335. "html/wdyy/html/appointment-register.html",
  1336. "html/login/html/login.html"
  1337. ]
  1338. },
  1339. "html/wdyy/html/appointment-register.html": {
  1340. "resources": [
  1341. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1342. "html/wdyy/css/appointment-register.css",
  1343. "html/wdyy/images/hospital_default.png",
  1344. "html/wdyy/css/sq-style.css",
  1345. "js/mui.min.js",
  1346. "html/wdyy/js/appointment-register.js",
  1347. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  1348. "js/security.js",
  1349. "html/wdyy/css/sfp-style.css",
  1350. "common/images/pull-icon@2x.png",
  1351. "common/cross/css/cross.ui.css",
  1352. "common/css/jy-style.css",
  1353. "js/app.js",
  1354. "common/iconfont/iconfont.css",
  1355. "common/cross/css/cross.css",
  1356. "common/css/pull-up-down.css",
  1357. "js/iscroll-probe.js",
  1358. "js/pull-up-down.js",
  1359. "js/jquery/2.1.3/jquery.js",
  1360. "js/iscroll-pull-up-down.js",
  1361. "js/common_http.js",
  1362. "js/template.js",
  1363. "html/wdyy/images/yuyuejilu_icon.png"
  1364. ],
  1365. "refer": [
  1366. "html/wdyy/html/hospital-dept.html",
  1367. "html/xtfw/html/xietongfuwu-deal.html",
  1368. "html/xtfw/html/xietongfuwu-yy.html",
  1369. "html/wdyy/html/detail-appointment.html"
  1370. ]
  1371. },
  1372. "html/wdyy/html/info-confirm.html": {
  1373. "resources": [
  1374. "html/wdyy/css/detail-appointment.css",
  1375. "html/wdyy/js/info-confirm.js",
  1376. "html/wdyy/images/tixing_icon.png"
  1377. ],
  1378. "refer": [
  1379. "html/wdyy/html/detail-appointment.html"
  1380. ]
  1381. },
  1382. "html/wdyy/html/select-doctor.html": {
  1383. "resources": [
  1384. "html/wdyy/js/select-doctor.js",
  1385. "images/d-male.png",
  1386. "html/wdyy/css/my-appointment.css",
  1387. "css/cross.css",
  1388. "css/iscroll.css",
  1389. "images/d-female.png",
  1390. "iconfont/iconfont.css",
  1391. "common/cross/css/cross.ui.css",
  1392. "common/css/jy-style.css",
  1393. "js/app.js",
  1394. "common/iconfont/iconfont.css",
  1395. "html/wdyy/css/sq-style.css",
  1396. "common/images/pull-icon@2x.png",
  1397. "common/cross/css/cross.css",
  1398. "html/wdyy/css/sfp-style.css",
  1399. "common/css/pull-up-down.css",
  1400. "js/iscroll-probe.js",
  1401. "js/pull-up-down.js",
  1402. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1403. "js/mui.min.js",
  1404. "js/jquery/2.1.3/jquery.js",
  1405. "js/iscroll-pull-up-down.js",
  1406. "js/security.js",
  1407. "js/template.js",
  1408. "js/common_http.js",
  1409. "html/wdyy/images/wufayuyue_icon.png",
  1410. "common/cross/images/logo_dibu_img.png",
  1411. "images/shujuweikong_img.png"
  1412. ],
  1413. "refer": [
  1414. "html/wdyy/html/doctor-detail.html"
  1415. ]
  1416. },
  1417. "html/wdyy/html/hospital-dept.html": {
  1418. "resources": [
  1419. "html/wdyy/css/zx-style.css",
  1420. "html/wdyy/js/hospital-dept.js",
  1421. "common/cross/css/cross.ui.css",
  1422. "common/css/jy-style.css",
  1423. "js/app.js",
  1424. "common/iconfont/iconfont.css",
  1425. "common/images/pull-icon@2x.png",
  1426. "common/cross/css/cross.css",
  1427. "common/css/pull-up-down.css",
  1428. "js/iscroll-probe.js",
  1429. "js/pull-up-down.js",
  1430. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1431. "js/mui.min.js",
  1432. "js/jquery/2.1.3/jquery.js",
  1433. "js/iscroll-pull-up-down.js",
  1434. "js/security.js",
  1435. "js/template.js",
  1436. "js/common_http.js"
  1437. ],
  1438. "refer": [
  1439. "html/wdyy/html/select-doctor.html"
  1440. ]
  1441. },
  1442. "html/wdyy/html/doctor-detail.html": {
  1443. "resources": [
  1444. "html/wdyy/js/doctor-detail.js",
  1445. "html/wdyy/images/shijian_icon.png",
  1446. "html/wdyy/images/shou02_icon.png",
  1447. "html/wdyy/css/doctor-detail.css",
  1448. "html/wdyy/css/sfdoc-style.css",
  1449. "html/wdyy/images/yishengxiangqing_bg.png",
  1450. "images/p-default.png",
  1451. "html/wdyy/images/shou_icon.png"
  1452. ],
  1453. "refer": [
  1454. "html/wdyy/html/info-confirm.html"
  1455. ]
  1456. },
  1457. "html/message/html/p2p.html": {
  1458. "resources": [
  1459. "common/cross/css/cross.ui.css",
  1460. "widget/iscroll/5.1.3/js/iscroll.js",
  1461. "js/app.js",
  1462. "js/im_new.js",
  1463. "html/js/l-img-view.js",
  1464. "html/js/l-scroll.css",
  1465. "html/js/common.js",
  1466. "common/cross/css/cross.css",
  1467. "html/message/images/fenxiang_icon.png",
  1468. "html/css/chatroom.css",
  1469. "html/message/js/chatRoom.js",
  1470. "js/underscore.js",
  1471. "js/mui.zoom.js",
  1472. "js/mui.min.js",
  1473. "html/message/images/more-tb2.png",
  1474. "js/jquery/2.1.3/jquery.js",
  1475. "html/message/js/p2p.js",
  1476. "css/mui.min.css",
  1477. "js/mui.previewimage.js",
  1478. "html/message/css/yy-style.css",
  1479. "css/mui.previmg.css",
  1480. "js/template.js",
  1481. "js/common_http.js",
  1482. "html/message/images/more-tb1.png",
  1483. "html/message/images/gerenxinxi_pre.png",
  1484. "html/message/images/tw-add.png",
  1485. "html/js/l-scroll.js",
  1486. "html/message/images/paizhao_icon.png",
  1487. "images/d-male.png",
  1488. "html/message/images/tupian_icon.png",
  1489. "html/message/js/socketConnect.js",
  1490. "html/js/service.js",
  1491. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  1492. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  1493. "html/js/sqliteUtil.js",
  1494. "html/message/images/yuying_icon.png",
  1495. "html/message/images/jianpang_icon.png",
  1496. "js/im.client.js",
  1497. "html/message/images/kuaijiehuifu_icon.png",
  1498. "html/message/images/yuyin_icon.png",
  1499. "html/message/images/bofang_icon.png",
  1500. "html/message/images/zuoshanjiao_bg.png",
  1501. "html/message/images/youshanjiao_bg.png",
  1502. "common/cross/images/logo_dibu_img.png"
  1503. ],
  1504. "refer": [
  1505. "html/huanzhe/html/huanzhexinxi.html"
  1506. ]
  1507. },
  1508. "html/wdyy/html/my-appointment.html": {
  1509. "resources": [
  1510. "html/wdyy/js/my-appointment.js",
  1511. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1512. "js/mui.min.js",
  1513. "html/wdyy/css/my-appointment.css",
  1514. "js/security.js",
  1515. "images/shujuweikong_img.png"
  1516. ],
  1517. "refer": []
  1518. },
  1519. "html/qygl/html/qianyuexiaoxi.html": {
  1520. "resources": [
  1521. "html/js/templateHelp.js",
  1522. "common/cross/css/cross.ui.css",
  1523. "common/css/jy-style.css",
  1524. "common/iconfont/iconfont.css",
  1525. "js/mui.min.js",
  1526. "js/jquery/2.1.3/jquery.js",
  1527. "html/js/common.js",
  1528. "images/shujuweikong_img.png",
  1529. "common/cross/css/cross.css",
  1530. "js/template.js",
  1531. "js/common_http.js",
  1532. "images/p-female.png"
  1533. ],
  1534. "refer": [
  1535. "html/qygl/html/xiaoxichuli.html",
  1536. "html/qygl/html/xuqian_management.html"
  1537. ]
  1538. },
  1539. "html/qygl/html/xiaoxichuli.html": {
  1540. "resources": [
  1541. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1542. "js/es6-promise.js",
  1543. "js/underscore.js",
  1544. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  1545. "fonts/mui.ttf",
  1546. "html/qygl/js/xiaoxichuli.js"
  1547. ],
  1548. "refer": [
  1549. "html/huanzhe/html/disease-label-choose.html"
  1550. ]
  1551. },
  1552. "html/huanzhe/html/disease-label-choose.html": {
  1553. "resources": [
  1554. "common/css/ss-doctor.css",
  1555. "js/app.js",
  1556. "common/cross/css/cross.min.css",
  1557. "html/huanzhe/css/disease.css",
  1558. "html/huanzhe/images/jiankangqingkuang_icon.png",
  1559. "html/huanzhe/images/jibingleixing_icon.png",
  1560. "html/huanzhe/images/zidingyibiaoqian_icon.png",
  1561. "common/cross/css/ui.all.min.css",
  1562. "common/cross/css/cross.ui.css",
  1563. "common/iconfont/iconfont.css",
  1564. "js/mui.min.js",
  1565. "js/jquery/2.1.3/jquery.js",
  1566. "js/common_http.js"
  1567. ],
  1568. "refer": []
  1569. },
  1570. "html/hzzd/html/xinzengzhidao.html": {
  1571. "resources": [
  1572. "js/upload_preview.js",
  1573. "html/hzzd/iconfont/iconfont.css"
  1574. ],
  1575. "refer": []
  1576. },
  1577. "html/huanzhe/html/disease-label.html": {
  1578. "resources": [
  1579. "common/css/ss-doctor.css",
  1580. "common/cross/css/cross.ui.css",
  1581. "js/app.js",
  1582. "common/cross/css/cross.min.css",
  1583. "html/huanzhe/css/disease.css",
  1584. "common/iconfont/iconfont.css",
  1585. "js/mui.min.js",
  1586. "html/huanzhe/images/jiankangqingkuang_icon.png",
  1587. "js/jquery/2.1.3/jquery.js",
  1588. "html/huanzhe/images/jibingleixing_icon.png",
  1589. "js/common_http.js",
  1590. "html/huanzhe/images/zidingyibiaoqian_icon.png",
  1591. "common/cross/css/ui.all.min.css"
  1592. ],
  1593. "refer": [
  1594. "html/huanzhe/html/disease-label-edit.html"
  1595. ]
  1596. },
  1597. "html/manager/html/yewufenxi.html": {
  1598. "resources": [
  1599. "html/manager/js/wc-motion-chart.js",
  1600. "html/manager/js/l-picker.js",
  1601. "common/cross/css/cross.ui.css",
  1602. "widget/echarts/2.2.7/js/echarts-all.js",
  1603. "html/manager/css/manager.css",
  1604. "common/images/pull-icon@2x.png",
  1605. "common/cross/css/cross.css",
  1606. "common/css/pull-up-down.css",
  1607. "js/iscroll-probe.js",
  1608. "js/pull-up-down.js",
  1609. "js/underscore.js",
  1610. "html/manager/js/yewufenxi.js",
  1611. "js/mui.min.js",
  1612. "js/jquery/2.1.3/jquery.js",
  1613. "js/iscroll-pull-up-down.js",
  1614. "css/mui.min.css",
  1615. "common/css/doc-style.css",
  1616. "html/manager/css/animate.css",
  1617. "js/waterbubble.js",
  1618. "js/common_http.js",
  1619. "js/template.js",
  1620. "html/manager/images/dizhi_icon.png",
  1621. "html/manager/images/hanbaobao_icon.png",
  1622. "html/manager/images/yiwen_icon.png",
  1623. "common/css/l_size.css",
  1624. "html/manager/images/guanbi_01_btn.png",
  1625. "common/cross/css/cross.min.css",
  1626. "common/cross/images/logo_dibu_img.png",
  1627. "images/noset.png"
  1628. ],
  1629. "refer": [
  1630. "html/manager/html/shaixuan2.html",
  1631. "html/error/html/error.html"
  1632. ]
  1633. },
  1634. "html/home/html/sousuoliaotianjilu.html": {
  1635. "resources": [
  1636. "html/home/js/sousuoliaotianjilu.js",
  1637. "html/home/images/fanhui.png",
  1638. "common/cross/css/cross.ui.css",
  1639. "widget/iscroll/5.1.3/js/iscroll.js",
  1640. "html/js/android.js",
  1641. "html/home/css/search-bar.css",
  1642. "js/underscore.js",
  1643. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1644. "html/home/css/sousuojuming.css",
  1645. "js/mui.min.js",
  1646. "js/jquery/2.1.3/jquery.js",
  1647. "images/shujuweikong_img.png",
  1648. "common/css/doc-style.css",
  1649. "js/jquery.ellipsis.js",
  1650. "js/template.js",
  1651. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  1652. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  1653. "common/css/jy-style.css",
  1654. "js/app.js",
  1655. "js/im_new.js",
  1656. "common/iconfont/iconfont.css",
  1657. "html/home/js/search-bar.js",
  1658. "html/js/l-scroll.css",
  1659. "common/cross/css/cross.css",
  1660. "images/sousuo_icon.png",
  1661. "js/es6-promise.js",
  1662. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  1663. "js/common_http.js",
  1664. "html/js/l-scroll.js"
  1665. ],
  1666. "refer": [
  1667. "html/home/html/sousuosimpleliaotianjilu.html",
  1668. "html/home/html/sousuosimpleliaotianjilu-ys.html"
  1669. ]
  1670. },
  1671. "html/home/html/sousuoqianyuejumin.html": {
  1672. "resources": [
  1673. "html/home/images/fanhui.png",
  1674. "html/home/js/sousuoqianyuejumin.js"
  1675. ],
  1676. "refer": []
  1677. },
  1678. "html/huanzhe/html/jianchajianyan.html": {
  1679. "resources": [
  1680. "common/cross/css/cross.ui.css",
  1681. "js/app.js",
  1682. "common/css/jy-style.css",
  1683. "common/iconfont/iconfont.css",
  1684. "common/images/pull-icon@2x.png",
  1685. "common/cross/css/cross.css",
  1686. "html/huanzhe/css/jianchajianyan.css",
  1687. "common/css/pull-up-down.css",
  1688. "js/iscroll-probe.js",
  1689. "js/pull-up-down.js",
  1690. "js/es6-promise.js",
  1691. "js/underscore.js",
  1692. "js/mui.min.js",
  1693. "js/jquery/2.1.3/jquery.js",
  1694. "js/iscroll-pull-up-down.js",
  1695. "html/huanzhe/js/jianchajianyan.js",
  1696. "common/css/doc-style.css",
  1697. "images/shujuweikong_img.png",
  1698. "js/common_http.js",
  1699. "js/template.js"
  1700. ],
  1701. "refer": [
  1702. "html/huanzhe/html/single-profile.html"
  1703. ]
  1704. },
  1705. "html/huanzhe/html/zhuyuanjilu.html": {
  1706. "resources": [
  1707. "html/huanzhe/js/zhuyuanjilu.js",
  1708. "common/cross/css/cross.ui.css",
  1709. "js/app.js",
  1710. "common/css/jy-style.css",
  1711. "common/iconfont/iconfont.css",
  1712. "common/images/pull-icon@2x.png",
  1713. "common/cross/css/cross.css",
  1714. "common/css/pull-up-down.css",
  1715. "js/iscroll-probe.js",
  1716. "js/pull-up-down.js",
  1717. "js/es6-promise.js",
  1718. "js/underscore.js",
  1719. "js/mui.min.js",
  1720. "js/jquery/2.1.3/jquery.js",
  1721. "js/iscroll-pull-up-down.js",
  1722. "common/css/doc-style.css",
  1723. "images/shujuweikong_img.png",
  1724. "js/common_http.js",
  1725. "js/template.js",
  1726. "html/huanzhe/css/zhuyuanjilu.css"
  1727. ],
  1728. "refer": [
  1729. "html/huanzhe/html/event-profile.html"
  1730. ]
  1731. },
  1732. "html/huanzhe/html/menzhenjilu.html": {
  1733. "resources": [
  1734. "html/huanzhe/js/menzhenjilu.js",
  1735. "html/huanzhe/css/menzhenjilu.css",
  1736. "common/css/pull-up-down.css",
  1737. "js/iscroll-probe.js",
  1738. "js/pull-up-down.js",
  1739. "js/iscroll-pull-up-down.js",
  1740. "common/images/pull-icon@2x.png",
  1741. "common/css/doc-style.css"
  1742. ],
  1743. "refer": [
  1744. "html/huanzhe/html/event-profile.html"
  1745. ]
  1746. },
  1747. "html/mygl/html/mingyizixunliebiao.html": {
  1748. "resources": [
  1749. "html/mygl/css/mingyizixunliebiao.css",
  1750. "images/d-default.png",
  1751. "html/mygl/js/search-bar.js",
  1752. "common/images/pull-icon@2x.png",
  1753. "html/mygl/js/mingyizixunliebiao.js",
  1754. "images/p-default.png",
  1755. "images/p-female.png",
  1756. "html/mygl/css/search-bar.css"
  1757. ],
  1758. "refer": [
  1759. "html/mygl/html/zixun-xuanzeyisheng.html",
  1760. "html/message/html/p2p.html"
  1761. ]
  1762. },
  1763. "html/mygl/html/faqizixun.html": {
  1764. "resources": [
  1765. "widget/scale/scale.js",
  1766. "js/security.js",
  1767. "html/mygl/js/faqizixun.js",
  1768. "js/upload_preview.js"
  1769. ],
  1770. "refer": []
  1771. },
  1772. "html/mygl/html/zixun-xuanzeyisheng.html": {
  1773. "resources": [
  1774. "html/mygl/js/zixun-xuanzeyisheng.js",
  1775. "html/mygl/css/zixun-xuanzeyisheng.css"
  1776. ],
  1777. "refer": [
  1778. "html/mygl/html/faqizixun.html"
  1779. ]
  1780. },
  1781. "html/huanzhe/html/searchhuanzhe.html": {
  1782. "resources": [
  1783. "html/huanzhe/js/search-bar.js",
  1784. "html/huanzhe/js/searchhuanzhe.js",
  1785. "html/huanzhe/css/searchhuanzhe.css",
  1786. "html/huanzhe/css/search-bar.css",
  1787. "images/weixing_icon.png",
  1788. "images/p-default.png",
  1789. "html/huanzhe/images/sousuo_qianyu_icon.png",
  1790. "widget/iscroll/5.1.3/js/iscroll.js",
  1791. "html/js/l-scroll.css",
  1792. "html/js/android.js",
  1793. "common/css/pull-up-down.css",
  1794. "js/iscroll-probe.js",
  1795. "js/pull-up-down.js",
  1796. "js/iscroll-pull-up-down.js",
  1797. "html/js/l-scroll.js",
  1798. "html/js/templateHelp.js",
  1799. "common/cross/css/cross.ui.css",
  1800. "html/js/common.js",
  1801. "js/underscore.js",
  1802. "js/mui.min.js",
  1803. "js/jquery/2.1.3/jquery.js",
  1804. "images/shujuweikong_img.png",
  1805. "js/template.js",
  1806. "common/css/jy-style.css",
  1807. "js/app.js",
  1808. "common/iconfont/iconfont.css",
  1809. "common/cross/css/cross.css",
  1810. "images/sousuo_icon.png",
  1811. "js/es6-promise.js",
  1812. "js/common_http.js",
  1813. "images/p-female.png",
  1814. "common/images/pull-icon@2x.png",
  1815. "html/huanzhe/js/pull-up-down-2.js"
  1816. ],
  1817. "refer": [
  1818. "html/huanzhe/html/huanzhexinxi.html",
  1819. "html/huanzhe/html/search_all.html"
  1820. ]
  1821. },
  1822. "html/wdsb/html/my-equipments.html": {
  1823. "resources": [
  1824. "css/ss-style.css",
  1825. "html/wdsb/images/bangding_img.png",
  1826. "html/wdsb/images/xuanfu_btn.png",
  1827. "html/wdsb/js/tounthcyc.js",
  1828. "css/iscroll.css",
  1829. "html/wdsb/js/my-equipments.js",
  1830. "html/wdsb/images/tuoyuan.png",
  1831. "html/wdsb/css/my-equipments.css",
  1832. "iconfont/iconfont.css",
  1833. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  1834. "common/cross/css/cross.ui.css",
  1835. "js/app.js",
  1836. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  1837. "common/cross/css/cross.css",
  1838. "common/cross/css/ui.all.min.css",
  1839. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  1840. "js/mui.min.js",
  1841. "js/jquery/2.1.3/jquery.js",
  1842. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  1843. "js/common_http.js"
  1844. ],
  1845. "refer": []
  1846. },
  1847. "html/message/html/p2dzixun.html": {
  1848. "resources": [
  1849. "common/cross/css/cross.ui.css",
  1850. "widget/iscroll/5.1.3/js/iscroll.js",
  1851. "html/message/images/qiuzhuyisheng_icon.png",
  1852. "html/js/common.js",
  1853. "html/message/images/paizhao_icon.png",
  1854. "html/message/images/fenxiang_icon.png",
  1855. "html/message/js/chatRoom.js",
  1856. "js/underscore.js",
  1857. "js/mui.zoom.js",
  1858. "js/mui.min.js",
  1859. "html/message/images/jiankangjiaoyu_icon.png",
  1860. "js/jquery/2.1.3/jquery.js",
  1861. "js/mui.previewimage.js",
  1862. "js/template.js",
  1863. "html/message/images/tw-add.png",
  1864. "js/app.js",
  1865. "js/im_new.js",
  1866. "html/js/l-img-view.js",
  1867. "html/js/l-scroll.css",
  1868. "common/cross/css/cross.css",
  1869. "html/message/images/tupian_icon.png",
  1870. "html/css/chatroom.css",
  1871. "html/message/js/p2dzixun.js",
  1872. "css/mui.min.css",
  1873. "html/message/images/daiyuyue_icon.png",
  1874. "html/message/css/yy-style.css",
  1875. "css/mui.previmg.css",
  1876. "js/common_http.js",
  1877. "html/js/l-scroll.js",
  1878. "html/message/images/gerenxinxi_pre.png",
  1879. "images/d-male.png",
  1880. "html/js/sqliteUtil.js",
  1881. "html/message/images/jiankangzhidao_icon.png",
  1882. "html/message/js/socketConnect.js",
  1883. "html/message/images/linshisuifang_icon.png",
  1884. "html/message/images/yuying_icon.png",
  1885. "html/message/images/jianpang_icon.png",
  1886. "html/js/service.js",
  1887. "html/message/images/kuaijiehuifu_icon.png",
  1888. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  1889. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  1890. "js/im.client.js",
  1891. "images/default_share_blue.png",
  1892. "html/message/images/bofang_icon.png",
  1893. "html/message/images/youshanjiao_bg.png",
  1894. "html/message/images/yuyin4_icon.png",
  1895. "html/message/images/zuoshanjiao_bg.png",
  1896. "common/cross/images/logo_dibu_img.png"
  1897. ],
  1898. "refer": [
  1899. "html/qzys/html/select_quanke.html",
  1900. "html/huanzhe/html/huanzhexinxi.html",
  1901. "html/hzzd/html/guidance_info.html",
  1902. "html/kjhf/html/list.html",
  1903. "html/error/html/error.html",
  1904. "html/hzzd/html/guidance_list.html",
  1905. "html/login/html/login.html",
  1906. "html/qzys/html/select_doctor.html",
  1907. "html/jkjy/html/jiankangjiaoyu.html"
  1908. ]
  1909. },
  1910. "html/message/html/qiuzhuqunliao.html": {
  1911. "resources": [
  1912. "common/cross/css/cross.ui.css",
  1913. "widget/iscroll/5.1.3/js/iscroll.js",
  1914. "html/message/images/qiuzhuyisheng_icon.png",
  1915. "html/js/common.js",
  1916. "html/message/images/paizhao_icon.png",
  1917. "html/message/images/fenxiang_icon.png",
  1918. "html/message/js/chatRoom.js",
  1919. "js/underscore.js",
  1920. "js/mui.zoom.js",
  1921. "js/mui.min.js",
  1922. "js/jquery/2.1.3/jquery.js",
  1923. "js/mui.previewimage.js",
  1924. "js/template.js",
  1925. "html/message/images/tw-add.png",
  1926. "js/app.js",
  1927. "js/im_new.js",
  1928. "html/js/l-img-view.js",
  1929. "html/js/l-scroll.css",
  1930. "common/cross/css/cross.css",
  1931. "html/message/images/tupian_icon.png",
  1932. "html/css/chatroom.css",
  1933. "css/mui.min.css",
  1934. "html/message/css/yy-style.css",
  1935. "css/mui.previmg.css",
  1936. "js/common_http.js",
  1937. "html/message/js/qiuzhuqunliao.js",
  1938. "html/js/l-scroll.js",
  1939. "images/d-male.png",
  1940. "html/message/images/tuandui_pre.png"
  1941. ],
  1942. "refer": [
  1943. "html/browser/html/browser.html"
  1944. ]
  1945. },
  1946. "html/home/html/sousuoqunliao.html": {
  1947. "resources": [
  1948. "html/home/js/sousuoqunliao.js",
  1949. "html/home/images/fanhui.png",
  1950. "images/d-male.png"
  1951. ],
  1952. "refer": [
  1953. "html/message/html/qiuzhuqunliao.html"
  1954. ]
  1955. },
  1956. "html/home/html/sousuosimpleliaotianjilu.html": {
  1957. "resources": [
  1958. "html/home/js/sousuosimpleliaotianjilu.js"
  1959. ],
  1960. "refer": []
  1961. },
  1962. "html/home/html/sousuosimpleliaotianjilu-ys.html": {
  1963. "resources": [
  1964. "html/home/js/sousuosimpleliaotianjilu-ys.js"
  1965. ],
  1966. "refer": []
  1967. },
  1968. "html/home/html/sousuojuminoryisheng.html": {
  1969. "resources": [
  1970. "html/home/js/sousuojuminoryisheng.js",
  1971. "html/home/images/fanhui.png"
  1972. ],
  1973. "refer": [
  1974. "html/message/html/p2p.html"
  1975. ]
  1976. },
  1977. "html/message/html/tuanduiqunliao.html": {
  1978. "resources": [
  1979. "html/message/js/chatRoom.js",
  1980. "js/mui.zoom.js",
  1981. "html/js/l-img-view.js",
  1982. "html/message/js/tuanduiqunliao.js",
  1983. "js/mui.previewimage.js",
  1984. "html/message/css/yy-style.css",
  1985. "html/message/images/paizhao_icon.png",
  1986. "css/mui.previmg.css",
  1987. "html/message/images/fenxiang_icon.png",
  1988. "html/message/images/tuandui_pre.png",
  1989. "html/message/images/tupian_icon.png",
  1990. "html/message/images/tw-add.png",
  1991. "html/css/chatroom.css",
  1992. "common/cross/css/cross.ui.css",
  1993. "widget/iscroll/5.1.3/js/iscroll.js",
  1994. "js/app.js",
  1995. "js/im_new.js",
  1996. "html/js/l-scroll.css",
  1997. "html/js/common.js",
  1998. "common/cross/css/cross.css",
  1999. "js/underscore.js",
  2000. "js/mui.min.js",
  2001. "js/jquery/2.1.3/jquery.js",
  2002. "css/mui.min.css",
  2003. "js/template.js",
  2004. "js/common_http.js",
  2005. "html/js/l-scroll.js",
  2006. "images/d-male.png",
  2007. "html/js/service.js",
  2008. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2009. "html/js/sqliteUtil.js",
  2010. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2011. "html/message/images/yuying_icon.png",
  2012. "html/message/images/jianpang_icon.png",
  2013. "js/im.client.js",
  2014. "html/message/images/kuaijiehuifu_icon.png",
  2015. "html/message/images/bofang_icon.png",
  2016. "html/message/images/zuoshanjiao_bg.png",
  2017. "html/message/js/socketConnect.js"
  2018. ],
  2019. "refer": [
  2020. "html/error/html/error.html",
  2021. "html/tuandui/html/tuanduishezhi.html"
  2022. ]
  2023. },
  2024. "html/xiaoxi/html/tizhengzhibiao.html": {
  2025. "resources": [
  2026. "common/cross/css/cross.ui.css",
  2027. "common/css/jy-style.css",
  2028. "js/mui.min.js",
  2029. "js/jquery/2.1.3/jquery.js",
  2030. "html/js/common.js",
  2031. "common/cross/css/cross.css",
  2032. "js/common_http.js",
  2033. "js/template.js"
  2034. ],
  2035. "refer": []
  2036. },
  2037. "html/browser/html/browser.html": {
  2038. "resources": [
  2039. "common/images/close.png"
  2040. ],
  2041. "refer": []
  2042. },
  2043. "html/mine/html/clip_photo.html": {
  2044. "resources": [
  2045. "html/mine/images/fangda_icon.png",
  2046. "html/mine/images/suoxiao_icon.png"
  2047. ],
  2048. "refer": []
  2049. },
  2050. "html/qzys/html/select_quanke.html": {
  2051. "resources": [
  2052. "html/qzys/css/search-bar.css",
  2053. "html/qzys/css/select_doctor.css",
  2054. "html/js/templateHelp.js",
  2055. "js/es6-promise.js",
  2056. "images/shujuweikong_img.png"
  2057. ],
  2058. "refer": [
  2059. "html/qzys/html/faqizixun.html"
  2060. ]
  2061. },
  2062. "html/qzys/html/faqizixun.html": {
  2063. "resources": [
  2064. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2065. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  2066. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2067. "common/css/jy-style.css",
  2068. "widget/scale/scale.js",
  2069. "common/iconfont/iconfont.css",
  2070. "html/qzys/js/faqizixun.js",
  2071. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  2072. "html/qzys/js/auto_rec_ssc_photo.js",
  2073. "js/security.js",
  2074. "common/css/doc-style.css",
  2075. "js/upload_preview.js",
  2076. "common/cross/css/cross.ui.css",
  2077. "js/app.js",
  2078. "js/im_new.js",
  2079. "common/cross/css/cross.css",
  2080. "js/es6-promise.js",
  2081. "js/underscore.js",
  2082. "js/mui.min.js",
  2083. "js/jquery/2.1.3/jquery.js",
  2084. "js/common_http.js"
  2085. ],
  2086. "refer": [
  2087. "html/message/html/qiuzhuqunliao.html"
  2088. ]
  2089. },
  2090. "html/tuandui/html/tuanduishezhi.html": {
  2091. "resources": [
  2092. "html/js/templateHelp.js",
  2093. "html/tuandui/css/tuandui.css",
  2094. "common/iconfont/iconfont.css",
  2095. "html/tuandui/css/tuanduishezhi.css"
  2096. ],
  2097. "refer": []
  2098. },
  2099. "html/wdyy/html/doctor-appointment.html": {
  2100. "resources": [
  2101. "html/wdyy/css/appointment-register.css",
  2102. "html/wdyy/css/sq-style.css",
  2103. "html/wdyy/css/my-appointment.css",
  2104. "js/security.js",
  2105. "html/wdyy/js/doctor-appointment.js",
  2106. "html/wdyy/css/sfp-style.css",
  2107. "common/images/pull-icon@2x.png",
  2108. "common/cross/css/cross.ui.css",
  2109. "js/app.js",
  2110. "common/css/jy-style.css",
  2111. "common/iconfont/iconfont.css",
  2112. "common/cross/css/cross.css",
  2113. "common/css/pull-up-down.css",
  2114. "js/iscroll-probe.js",
  2115. "js/pull-up-down.js",
  2116. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  2117. "js/mui.min.js",
  2118. "js/jquery/2.1.3/jquery.js",
  2119. "js/iscroll-pull-up-down.js",
  2120. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  2121. "js/common_http.js",
  2122. "js/template.js",
  2123. "images/shujuweikong_img.png",
  2124. "common/cross/images/logo_dibu_img.png"
  2125. ],
  2126. "refer": [
  2127. "html/wdyy/html/huanzhe.html",
  2128. "html/wdyy/html/detail-appointment.html"
  2129. ]
  2130. },
  2131. "html/wdyy/html/detail-appointment.html": {
  2132. "resources": [
  2133. "html/wdyy/css/detail-appointment.css",
  2134. "html/wdyy/js/detail-appointment.js",
  2135. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2136. "common/cross/css/cross.ui.css",
  2137. "js/app.js",
  2138. "common/css/jy-style.css",
  2139. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2140. "common/iconfont/iconfont.css",
  2141. "html/wdyy/css/sq-style.css",
  2142. "common/cross/css/cross.css",
  2143. "html/wdyy/css/sfp-style.css",
  2144. "common/css/pull-up-down.css",
  2145. "common/cross/images/logo_dibu_img.png",
  2146. "js/iscroll-probe.js",
  2147. "js/pull-up-down.js",
  2148. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  2149. "html/wdyy/css/appointment-register.css",
  2150. "js/mui.min.js",
  2151. "js/jquery/2.1.3/jquery.js",
  2152. "js/iscroll-pull-up-down.js",
  2153. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  2154. "js/security.js",
  2155. "js/common_http.js",
  2156. "js/template.js"
  2157. ],
  2158. "refer": []
  2159. },
  2160. "html/mine/html/dailiqianyue-next.html": {
  2161. "resources": [
  2162. "html/mine/js/dailiqianyue-next.js",
  2163. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2164. "common/cross/css/cross.ui.css",
  2165. "common/css/jy-style.css",
  2166. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2167. "common/iconfont/iconfont.css",
  2168. "fonts/mui.ttf",
  2169. "common/cross/css/cross.css",
  2170. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  2171. "js/es6-promise.js",
  2172. "js/underscore.js",
  2173. "widget/scale/scale.js",
  2174. "js/mui.min.js",
  2175. "js/jquery/2.1.3/jquery.js",
  2176. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  2177. "js/security.js",
  2178. "common/css/doc-style.css",
  2179. "js/common_http.js"
  2180. ],
  2181. "refer": [
  2182. "html/huanzhe/html/disease-label-choose.html",
  2183. "html/error/html/error.html"
  2184. ]
  2185. },
  2186. "html/mine/html/erweima.html": {
  2187. "resources": [
  2188. "common/cross/css/cross.ui.css",
  2189. "images/d-male.png",
  2190. "common/css/jy-style.css",
  2191. "common/iconfont/iconfont.css",
  2192. "common/cross/images/d-male.png",
  2193. "js/mui.min.js",
  2194. "html/mine/js/jquery.qrcode.min.js",
  2195. "js/jquery/2.1.3/jquery.js",
  2196. "html/mine/css/yy-style.css",
  2197. "common/cross/css/cross.css",
  2198. "js/common_http.js"
  2199. ],
  2200. "refer": []
  2201. },
  2202. "html/hzzd/html/guidance_list.html": {
  2203. "resources": [
  2204. "html/hzzd/images/xinzhengmoban_icon.png",
  2205. "html/hzzd/images/yiyongmoban_icon.png",
  2206. "css/mui.min.css",
  2207. "common/cross/css/ui.all.css",
  2208. "html/hzzd/iconfont/iconfont.css",
  2209. "common/cross/css/cross.ui.css",
  2210. "js/app.js",
  2211. "js/mui.min.js",
  2212. "js/jquery/2.1.3/jquery.js",
  2213. "images/shujuweikong_img.png",
  2214. "common/cross/css/cross.css",
  2215. "js/template.js",
  2216. "js/common_http.js",
  2217. "html/hzzd/images/shiyongren_icon.png",
  2218. "fonts/mui.ttf",
  2219. "html/hzzd/images/xuanfu_btn.png",
  2220. "js/es6-promise.js",
  2221. "common/cross/images/logo_dibu_img.png"
  2222. ],
  2223. "refer": [
  2224. "html/hzzd/html/edit_guidance.html",
  2225. "html/hzzd/html/guidance_detail.html",
  2226. "html/hzzd/html/sys_guidance_list.html",
  2227. "html/hzzd/html/tuanduimubanliebiao.html"
  2228. ]
  2229. },
  2230. "html/mine/html/gongzuoshezhi.html": {
  2231. "resources": [
  2232. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2233. "common/cross/css/cross.ui.css",
  2234. "common/css/jy-style.css",
  2235. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2236. "common/iconfont/iconfont.css",
  2237. "common/cross/css/cross.css",
  2238. "html/mine/css/mui.switch.css",
  2239. "html/mine/js/gongzuoshezhi.js",
  2240. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  2241. "js/underscore.js",
  2242. "js/es6-promise.js",
  2243. "js/mui.min.js",
  2244. "js/jquery/2.1.3/jquery.js",
  2245. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  2246. "common/css/doc-style.css",
  2247. "js/common_http.js",
  2248. "js/template.js",
  2249. "html/mine/css/gongzuoshezhi.css"
  2250. ],
  2251. "refer": [
  2252. "html/mine/html/worktime.html"
  2253. ]
  2254. },
  2255. "html/mine/html/edit_mobilephone.html": {
  2256. "resources": [
  2257. "common/css/jy-style.css",
  2258. "common/iconfont/iconfont.css",
  2259. "common/css/doc-style.css",
  2260. "js/common_http.js",
  2261. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2262. "common/cross/css/cross.ui.css",
  2263. "js/app.js",
  2264. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2265. "common/cross/css/cross.css",
  2266. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  2267. "js/mui.min.js",
  2268. "js/jquery/2.1.3/jquery.js",
  2269. "widget/mobiscroll/2.17.1/css/mobiscroll.css"
  2270. ],
  2271. "refer": []
  2272. },
  2273. "html/mine/html/modify.html": {
  2274. "resources": [
  2275. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2276. "common/cross/css/cross.ui.css",
  2277. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2278. "fonts/mui.ttf",
  2279. "common/css/doc-style.css",
  2280. "css/mui.min.css"
  2281. ],
  2282. "refer": []
  2283. },
  2284. "html/mine/html/zuyuanziliao.html": {
  2285. "resources": [
  2286. "html/mine/images/man.png",
  2287. "common/css/doc-style.css",
  2288. "html/mine/css/zuyuanziliao.css",
  2289. "html/mine/images/woman.png"
  2290. ],
  2291. "refer": [
  2292. "html/tuandui/html/qianyuejumin.html",
  2293. "html/message/html/p2p.html"
  2294. ]
  2295. },
  2296. "html/huanzhe/html/jiatingchengyuan.html": {
  2297. "resources": [
  2298. "common/css/pull-up-down.css",
  2299. "html/huanzhe/js/jiatingchengyuan.js",
  2300. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2301. "html/js/templateHelp.js",
  2302. "common/cross/css/cross.ui.css",
  2303. "common/css/jy-style.css",
  2304. "js/app.js",
  2305. "common/iconfont/iconfont.css",
  2306. "html/js/common.js",
  2307. "common/cross/css/cross.css",
  2308. "images/p-female.png",
  2309. "html/huanzhe/css/huanzhexinxi.css",
  2310. "js/jquery/2.1.3/jquery.js",
  2311. "js/mui.js",
  2312. "js/common_http.js",
  2313. "js/template.js"
  2314. ],
  2315. "refer": []
  2316. },
  2317. "html/observer/html/district.html": {
  2318. "resources": [
  2319. "html/js/templateHelp.js",
  2320. "common/cross/css/cross.ui.css",
  2321. "js/underscore.js",
  2322. "js/es6-promise.js",
  2323. "html/observer/css/search-bar.css",
  2324. "images/sousuo_icon.png",
  2325. "common/cross/css/cross.css",
  2326. "js/template.js"
  2327. ],
  2328. "refer": [
  2329. "html/observer/html/hospital.html",
  2330. "html/observer/html/search_doctor.html"
  2331. ]
  2332. },
  2333. "html/observer/html/hospital.html": {
  2334. "resources": [
  2335. "images/hospital_default.png"
  2336. ],
  2337. "refer": [
  2338. "html/observer/html/doctors.html"
  2339. ]
  2340. },
  2341. "html/observer/html/doctors.html": {
  2342. "refer": [
  2343. "html/home/html/relogin.html"
  2344. ],
  2345. "resources": [
  2346. "html/observer/css/search-bar.css",
  2347. "images/sousuo_icon.png",
  2348. "images/d-male.png"
  2349. ]
  2350. },
  2351. "html/ggzx/html/ggzx-zhuanxiehuida.html": {
  2352. "resources": [
  2353. "js/upload_preview.js"
  2354. ],
  2355. "refer": []
  2356. },
  2357. "html/hzzd/html/guidance_info.html": {
  2358. "resources": [
  2359. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2360. "common/cross/css/cross.ui.css",
  2361. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2362. "js/app.js",
  2363. "common/iconfont/iconfont.css",
  2364. "js/mui.min.js",
  2365. "js/jquery/2.1.3/jquery.js",
  2366. "common/cross/css/cross.css",
  2367. "js/template.js",
  2368. "js/common_http.js",
  2369. "common/cross/images/logo_dibu_img.png"
  2370. ],
  2371. "refer": []
  2372. },
  2373. "html/kjhf/html/list.html": {
  2374. "resources": [
  2375. "html/kjhf/images/delete.png",
  2376. "html/kjhf/js/Sortable-edit.js",
  2377. "html/kjhf/js/list.js",
  2378. "html/kjhf/css/list.css",
  2379. "html/kjhf/images/yidong_icon.png",
  2380. "js/es6-promise.js",
  2381. "common/iconfont/iconfont.css"
  2382. ],
  2383. "refer": [
  2384. "html/kjhf/html/add_reply.html",
  2385. "html/error/html/error.html"
  2386. ]
  2387. },
  2388. "html/search/html/xuanzejumin_one.html": {
  2389. "resources": [
  2390. "html/js/templateHelp.js",
  2391. "common/cross/css/cross.ui.css",
  2392. "common/css/jy-style.css",
  2393. "html/search/images/tanchuang_icon.png",
  2394. "html/search/css/xuanzejumin.css",
  2395. "html/search/images/checked_blue.png",
  2396. "images/sousuo_icon.png",
  2397. "html/search/images/unchecked.png",
  2398. "common/css/pull-up-down.css",
  2399. "js/iscroll-probe.js",
  2400. "js/pull-up-down.js",
  2401. "js/es6-promise.js",
  2402. "js/underscore.js",
  2403. "html/search/images/checked_all.png",
  2404. "html/search/js/xuanzejumin_one.js",
  2405. "js/iscroll-pull-up-down.js",
  2406. "images/shujuweikong_img.png",
  2407. "html/search/images/btn_record.png",
  2408. "js/app.js",
  2409. "common/iconfont/iconfont.css",
  2410. "html/js/common.js",
  2411. "common/cross/css/cross.css",
  2412. "js/mui.min.js",
  2413. "js/jquery/2.1.3/jquery.js",
  2414. "js/common_http.js",
  2415. "js/template.js",
  2416. "images/weixing_icon.png",
  2417. "images/p-female.png",
  2418. "images/weixing_zihui_icon.png",
  2419. "images/icon_xueyaji_zhihui.png",
  2420. "images/weixing_icon2.png",
  2421. "images/icon_xuetangyi_zhihui.png"
  2422. ],
  2423. "refer": [
  2424. "html/search/html/sousuojumin_one.html",
  2425. "html/error/html/error.html",
  2426. "html/suifang/html/add_plan.html",
  2427. "html/wdyy/html/appointment-register.html",
  2428. "html/wdyy/html/doctor-appointment.html"
  2429. ]
  2430. },
  2431. "html/search/html/sousuojumin_one.html": {
  2432. "resources": [
  2433. "html/search/images/guanbi_btn.png",
  2434. "html/search/js/search_jumin_one.js",
  2435. "html/js/android.js",
  2436. "images/weixing_icon.png",
  2437. "common/images/pull-icon@2x.png",
  2438. "images/p-female.png",
  2439. "html/js/templateHelp.js",
  2440. "common/cross/css/cross.ui.css",
  2441. "js/app.js",
  2442. "common/css/jy-style.css",
  2443. "common/iconfont/iconfont.css",
  2444. "html/search/css/xuanzejumin.css",
  2445. "images/sousuo_icon.png",
  2446. "html/js/common.js",
  2447. "common/cross/css/cross.css",
  2448. "common/css/pull-up-down.css",
  2449. "js/iscroll-probe.js",
  2450. "js/pull-up-down.js",
  2451. "js/es6-promise.js",
  2452. "js/underscore.js",
  2453. "js/mui.min.js",
  2454. "js/jquery/2.1.3/jquery.js",
  2455. "js/iscroll-pull-up-down.js",
  2456. "images/shujuweikong_img.png",
  2457. "js/template.js",
  2458. "js/common_http.js"
  2459. ],
  2460. "refer": [
  2461. "html/error/html/error.html",
  2462. "html/wdyy/html/appointment-register.html"
  2463. ]
  2464. },
  2465. "html/search/html/xuanzejumin_more.html": {
  2466. "resources": [
  2467. "html/search/js/xuanzejumin_more.js",
  2468. "html/search/images/tanchuang_icon.png",
  2469. "html/search/images/checked_all.png",
  2470. "html/search/css/xuanzejumin.css",
  2471. "html/search/images/checked_blue.png",
  2472. "html/search/images/unchecked.png",
  2473. "common/cross/css/cross.ui.css",
  2474. "html/js/templateHelp.js",
  2475. "html/js/common.js",
  2476. "js/iscroll-probe.js",
  2477. "js/underscore.js",
  2478. "js/pull-up-down.js",
  2479. "js/mui.min.js",
  2480. "js/jquery/2.1.3/jquery.js",
  2481. "js/iscroll-pull-up-down.js",
  2482. "images/shujuweikong_img.png",
  2483. "js/template.js",
  2484. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2485. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2486. "common/css/jy-style.css",
  2487. "js/app.js",
  2488. "common/iconfont/iconfont.css",
  2489. "images/sousuo_icon.png",
  2490. "common/cross/css/cross.css",
  2491. "common/css/pull-up-down.css",
  2492. "js/es6-promise.js",
  2493. "js/common_http.js"
  2494. ],
  2495. "refer": [
  2496. "html/search/html/sousuojumin_more.html"
  2497. ]
  2498. },
  2499. "html/search/html/sousuojumin_more.html": {
  2500. "resources": [
  2501. "html/search/js/search_jumin_more.js",
  2502. "html/js/templateHelp.js",
  2503. "common/cross/css/cross.ui.css",
  2504. "js/app.js",
  2505. "common/css/jy-style.css",
  2506. "common/iconfont/iconfont.css",
  2507. "html/search/css/xuanzejumin.css",
  2508. "images/sousuo_icon.png",
  2509. "html/js/common.js",
  2510. "common/cross/css/cross.css",
  2511. "html/js/android.js",
  2512. "html/search/images/guanbi_btn.png",
  2513. "common/css/pull-up-down.css",
  2514. "js/iscroll-probe.js",
  2515. "js/pull-up-down.js",
  2516. "js/es6-promise.js",
  2517. "js/underscore.js",
  2518. "js/mui.min.js",
  2519. "js/jquery/2.1.3/jquery.js",
  2520. "js/iscroll-pull-up-down.js",
  2521. "images/shujuweikong_img.png",
  2522. "js/template.js",
  2523. "js/common_http.js",
  2524. "images/p-female.png",
  2525. "common/images/pull-icon@2x.png"
  2526. ],
  2527. "refer": [
  2528. "html/error/html/error.html"
  2529. ]
  2530. },
  2531. "html/tuandui/html/zyjm-layer.html": {
  2532. "resources": [
  2533. "html/tuandui/css/zyjm-layer.css",
  2534. "css/mui.min.css",
  2535. "js/mui.min.js"
  2536. ],
  2537. "refer": [
  2538. "html/search/html/zhuanyijumin.html"
  2539. ]
  2540. },
  2541. "html/search/html/zhuanyijumin_search.html": {
  2542. "resources": [
  2543. "html/search/js/zhuanyijumin_search.js",
  2544. "html/js/templateHelp.js",
  2545. "common/cross/css/cross.ui.css",
  2546. "js/app.js",
  2547. "common/css/jy-style.css",
  2548. "common/iconfont/iconfont.css",
  2549. "html/search/css/xuanzejumin.css",
  2550. "images/sousuo_icon.png",
  2551. "html/js/common.js",
  2552. "common/cross/css/cross.css",
  2553. "html/js/android.js",
  2554. "common/css/pull-up-down.css",
  2555. "js/iscroll-probe.js",
  2556. "js/pull-up-down.js",
  2557. "js/es6-promise.js",
  2558. "js/underscore.js",
  2559. "js/mui.min.js",
  2560. "js/jquery/2.1.3/jquery.js",
  2561. "js/iscroll-pull-up-down.js",
  2562. "images/shujuweikong_img.png",
  2563. "js/template.js",
  2564. "js/common_http.js",
  2565. "html/search/images/checked_blue.png",
  2566. "html/search/images/checked_all.png",
  2567. "html/search/images/unchecked.png",
  2568. "images/p-female.png",
  2569. "common/images/pull-icon@2x.png"
  2570. ],
  2571. "refer": [
  2572. "html/tuandui/html/choose_doctor.html"
  2573. ]
  2574. },
  2575. "html/search/html/zhuanyijumin.html": {
  2576. "resources": [
  2577. "html/search/images/icon_sousuo.png",
  2578. "html/search/js/zhuanyijumin.js",
  2579. "html/js/templateHelp.js",
  2580. "common/cross/css/cross.ui.css",
  2581. "common/iconfont/iconfont.css",
  2582. "html/search/css/xuanzejumin.css",
  2583. "common/cross/css/cross.css",
  2584. "html/js/common.js",
  2585. "js/underscore.js",
  2586. "js/es6-promise.js",
  2587. "js/mui.min.js",
  2588. "js/jquery/2.1.3/jquery.js",
  2589. "css/mui.min.css",
  2590. "js/common_http.js",
  2591. "js/template.js",
  2592. "html/search/images/icon_jinru.png",
  2593. "js/mui.js"
  2594. ],
  2595. "refer": [
  2596. "html/search/html/zhuanyijumin_search.html",
  2597. "html/tuandui/html/choose_doctor.html",
  2598. "html/error/html/error.html",
  2599. "html/login/html/login.html"
  2600. ]
  2601. },
  2602. "html/tuandui/html/choose_doctor.html": {
  2603. "resources": [
  2604. "html/tuandui/css/tianjiachengyuan.css",
  2605. "html/tuandui/js/choose_doctor.js",
  2606. "html/tuandui/images/xanxuan_btn.png",
  2607. "html/tuandui/images/banxuan_pre.png",
  2608. "html/js/templateHelp.js",
  2609. "common/cross/css/cross.ui.css",
  2610. "widget/iscroll/5.1.3/js/iscroll.js",
  2611. "common/iconfont/iconfont.css",
  2612. "html/js/common.js",
  2613. "common/cross/css/cross.css",
  2614. "html/tuandui/css/tuandui.css",
  2615. "js/underscore.js",
  2616. "js/es6-promise.js",
  2617. "js/mui.min.js",
  2618. "js/jquery/2.1.3/jquery.js",
  2619. "js/common_http.js",
  2620. "js/template.js",
  2621. "images/d-male.png",
  2622. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2623. "widget/artDialog/6.0.5/css/ui-dialog.min.css"
  2624. ],
  2625. "refer": []
  2626. },
  2627. "html/home/html/fzxz-jumingim.html": {
  2628. "resources": [
  2629. "html/home/js/fzxz-jumingim.js",
  2630. "images/p-female.png",
  2631. "common/css/ss-doctor.css",
  2632. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2633. "widget/iscroll/5.1.3/js/iscroll.js",
  2634. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2635. "html/home/js/search-bar.js",
  2636. "html/js/l-scroll.css",
  2637. "fonts/font-awesome/css/font-awesome.min.css",
  2638. "html/home/css/jumingim.css",
  2639. "common/css/pull-up-down.css",
  2640. "html/home/css/search-bar.css",
  2641. "js/iscroll-probe.js",
  2642. "js/pull-up-down.js",
  2643. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  2644. "js/iscroll-pull-up-down.js",
  2645. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  2646. "common/css/doc-style.css",
  2647. "js/jquery.ellipsis.js",
  2648. "js/im.client.js",
  2649. "html/js/l-scroll.js"
  2650. ],
  2651. "refer": [
  2652. "html/message/html/p2dzixun.html",
  2653. "html/message/html/xufangzixun.html"
  2654. ]
  2655. },
  2656. "html/tuandui/html/qianyuejumin.html": {
  2657. "resources": [
  2658. "html/tuandui/js/qianyuejumin.js",
  2659. "js/mui.lazyload.js",
  2660. "html/tuandui/css/xuanzejumin.css",
  2661. "js/mui.lazyload.img.js",
  2662. "html/js/templateHelp.js",
  2663. "common/cross/css/cross.ui.css",
  2664. "js/app.js",
  2665. "common/css/jy-style.css",
  2666. "common/iconfont/iconfont.css",
  2667. "common/cross/css/cross.css",
  2668. "html/js/common.js",
  2669. "js/mui.min.js",
  2670. "js/jquery/2.1.3/jquery.js",
  2671. "css/mui.min.css",
  2672. "js/common_http.js",
  2673. "js/template.js",
  2674. "images/morenjiazhai_icon.png",
  2675. "images/p-female.png"
  2676. ],
  2677. "refer": [
  2678. "html/tuandui/html/zyjm-layer.html",
  2679. "html/search/html/zhuanyijumin.html"
  2680. ]
  2681. },
  2682. "html/home/html/relogin.html": {
  2683. "refer": [
  2684. "html/home/html/main.html"
  2685. ],
  2686. "resources": [
  2687. "common/cross/images/logo_dibu_img.png",
  2688. "js/app.js",
  2689. "common/cross/css/cross.min.css",
  2690. "common/iconfont/iconfont.css",
  2691. "js/mui.min.js",
  2692. "js/jquery/2.1.3/jquery.js",
  2693. "html/js/common.js",
  2694. "js/common_http.js"
  2695. ]
  2696. },
  2697. "html/huanzhe/html/fuwujilu.html": {
  2698. "resources": [
  2699. "html/huanzhe/js/fuwujilu.js",
  2700. "html/huanzhe/images/checked_blue.png",
  2701. "html/huanzhe/images/tianjia_icon_1.png",
  2702. "html/huanzhe/css/fuwujilu.css",
  2703. "html/js/l-scroll.css",
  2704. "html/js/l-scroll.js",
  2705. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  2706. "common/cross/css/cross.ui.css",
  2707. "js/app.js",
  2708. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  2709. "widget/iscroll/5.1.3/js/iscroll.js",
  2710. "common/iconfont/iconfont.css",
  2711. "common/cross/css/cross.css",
  2712. "js/underscore.js",
  2713. "js/es6-promise.js",
  2714. "js/mui.min.js",
  2715. "js/jquery/2.1.3/jquery.js",
  2716. "css/mui.min.css",
  2717. "js/template.js",
  2718. "js/common_http.js"
  2719. ],
  2720. "refer": [
  2721. "html/zdzx/html/zixunxiangqing.html",
  2722. "html/jkjy/html/article.html",
  2723. "html/suifang/html/start_plan.html",
  2724. "html/suifang/html/fvDetail.html",
  2725. "html/hzzd/html/guidance_list.html",
  2726. "html/suifang/html/suifang_detail.html",
  2727. "html/jkjy/html/jiankangjiaoyu.html",
  2728. "html/error/html/error.html",
  2729. "html/huanzhe/html/fuwutongji.html",
  2730. "html/suifang/html/follow_way.html",
  2731. "html/wdyy/html/detail-appointment.html"
  2732. ]
  2733. },
  2734. "html/zdzx/html/zixunxiangqing.html": {
  2735. "resources": [
  2736. "html/zdzx/js/zixunxiangqing.js",
  2737. "js/mui.zoom.js",
  2738. "html/js/l-img-view.js",
  2739. "html/js/service.js",
  2740. "js/mui.previewimage.js",
  2741. "css/mui.previmg.css",
  2742. "html/zdzx/css/yy-style.css",
  2743. "html/css/chatroom.css",
  2744. "html/js/l-scroll.js",
  2745. "html/js/l-scroll.css",
  2746. "common/cross/css/cross.ui.css",
  2747. "widget/iscroll/5.1.3/js/iscroll.js",
  2748. "js/app.js",
  2749. "html/js/common.js",
  2750. "common/cross/css/cross.css",
  2751. "js/underscore.js",
  2752. "js/mui.min.js",
  2753. "js/jquery/2.1.3/jquery.js",
  2754. "css/mui.min.css",
  2755. "js/im.client.js",
  2756. "js/template.js",
  2757. "js/common_http.js",
  2758. "html/zdzx/images/BG_shangla.png",
  2759. "html/zdzx/images/pull-bg.png",
  2760. "html/zdzx/images/icon_xiala.png",
  2761. "html/zdzx/images/icon_shangla.png",
  2762. "html/zdzx/images/1.jpg",
  2763. "html/zdzx/css/zixunxiangqing.css",
  2764. "html/zdzx/images/icon_xingxing.png",
  2765. "html/zdzx/images/gerenxinxi_pre.png"
  2766. ],
  2767. "refer": [
  2768. "html/message/html/p2dzixun.html",
  2769. "html/login/html/login.html",
  2770. "html/error/html/error.html",
  2771. "html/huanzhe/html/huanzhexinxi.html"
  2772. ]
  2773. },
  2774. "html/huanzhe/html/event-profile.html": {
  2775. "resources": [
  2776. "html/huanzhe/template/0101.html",
  2777. "html/huanzhe/js/event-profile.js",
  2778. "html/huanzhe/css/base.css",
  2779. "html/huanzhe/js/avalon.modern.js",
  2780. "html/huanzhe/images/img/i-visiting-result.png",
  2781. "html/huanzhe/images/img/i-ess-info.png",
  2782. "html/huanzhe/js/info.js",
  2783. "html/huanzhe/images/img/i-switch.png",
  2784. "html/huanzhe/css/info.css",
  2785. "html/huanzhe/images/img/i-dia-basis.png",
  2786. "common/cross/css/cross.ui.css",
  2787. "common/css/jy-style.css",
  2788. "js/app.js",
  2789. "common/iconfont/iconfont.css",
  2790. "js/es6-promise.js",
  2791. "js/underscore.js",
  2792. "js/mui.min.js",
  2793. "js/jquery/2.1.3/jquery.js",
  2794. "common/css/doc-style.css",
  2795. "js/template.js",
  2796. "js/common_http.js",
  2797. "html/huanzhe/template/0131.html",
  2798. "html/huanzhe/images/img/i-ins-res.png",
  2799. "html/huanzhe/template/0141.html",
  2800. "html/huanzhe/images/img/i-inspectors.png",
  2801. "html/huanzhe/template/0102.html",
  2802. "html/huanzhe/images/img/Rp.png",
  2803. "html/huanzhe/template/0201.html",
  2804. "html/huanzhe/template/0215.html",
  2805. "html/huanzhe/template/0214.html",
  2806. "html/huanzhe/images/img/i-hos-sum.png",
  2807. "html/huanzhe/template/0202.html",
  2808. "html/huanzhe/template/0213.html",
  2809. "html/huanzhe/template/0241.html",
  2810. "html/huanzhe/images/img/i-drop-down.png",
  2811. "html/huanzhe/template/0121.html",
  2812. "html/huanzhe/template/0221.html",
  2813. "html/huanzhe/images/img/i-test-results.png",
  2814. "html/huanzhe/template/0231.html",
  2815. "html/huanzhe/images/img/i-doc-info.png",
  2816. "html/huanzhe/images/img/i-pha-info.png",
  2817. "html/huanzhe/template/0211.html"
  2818. ],
  2819. "refer": []
  2820. },
  2821. "html/mine/html/shenfenyanzheng.html": {
  2822. "resources": [
  2823. "common/css/doc-style.css",
  2824. "html/mine/css/shenfenyanzheng.css",
  2825. "js/underscore.js",
  2826. "js/es6-promise.js",
  2827. "common/cross/css/cross.ui.css",
  2828. "common/css/jy-style.css",
  2829. "common/iconfont/iconfont.css",
  2830. "html/js/common.js",
  2831. "common/cross/css/cross.css",
  2832. "js/mui.min.js",
  2833. "js/jquery/2.1.3/jquery.js",
  2834. "js/security.js",
  2835. "js/common_http.js"
  2836. ],
  2837. "refer": [
  2838. "html/mine/html/account_back.html"
  2839. ]
  2840. },
  2841. "html/zdzx/html/tuanduitongji.html": {
  2842. "resources": [
  2843. "html/zdzx/css/td-style.css",
  2844. "html/zdzx/iconfont/iconfont.css",
  2845. "images/d-male.png",
  2846. "common/cross/css/cross.ui.css",
  2847. "js/app.js",
  2848. "js/es6-promise.js",
  2849. "js/underscore.js",
  2850. "common/css/jy-style.css",
  2851. "js/mui.min.js",
  2852. "js/jquery/2.1.3/jquery.js",
  2853. "common/cross/css/cross.css",
  2854. "js/common_http.js",
  2855. "js/template.js"
  2856. ],
  2857. "refer": [
  2858. "html/zdzx/html/huifuqingkuang.html",
  2859. "html/error/html/error.html"
  2860. ]
  2861. },
  2862. "html/zdzx/html/huifuqingkuang.html": {
  2863. "refer": [
  2864. "html/zdzx/html/zixunxiangqing.html",
  2865. "html/error/html/error.html"
  2866. ],
  2867. "resources": [
  2868. "html/zdzx/css/cross.css",
  2869. "common/cross/css/cross.ui.css",
  2870. "html/js/templateHelp.js",
  2871. "html/js/common.js",
  2872. "html/zdzx/css/yy-qygl.css",
  2873. "html/zdzx/css/yy-style.css",
  2874. "js/mui.min.js",
  2875. "js/jquery/2.1.3/jquery.js",
  2876. "common/css/doc-style.css",
  2877. "js/im.client.js",
  2878. "js/common_http.js",
  2879. "js/template.js",
  2880. "html/zdzx/js/base.js",
  2881. "images/shujuweikong_img.png"
  2882. ]
  2883. },
  2884. "html/huanzhe/html/yongyaojilu.html": {
  2885. "resources": [
  2886. "html/huanzhe/css/yongyaojilu.css",
  2887. "html/huanzhe/js/yongyaojilu.js",
  2888. "common/css/pull-up-down.css",
  2889. "js/iscroll-probe.js",
  2890. "js/pull-up-down.js",
  2891. "js/iscroll-pull-up-down.js",
  2892. "common/images/pull-icon@2x.png",
  2893. "common/css/doc-style.css"
  2894. ],
  2895. "refer": [
  2896. "html/huanzhe/html/single-profile.html"
  2897. ]
  2898. },
  2899. "html/huanzhe/html/single-profile.html": {
  2900. "resources": [
  2901. "html/huanzhe/css/base.css",
  2902. "html/huanzhe/js/avalon.modern.js",
  2903. "html/huanzhe/js/single-profile.js",
  2904. "html/huanzhe/css/info.css",
  2905. "html/huanzhe/images/img/i-visiting-result.png",
  2906. "html/huanzhe/images/img/i-ess-info.png",
  2907. "html/huanzhe/template/0141.html",
  2908. "html/huanzhe/template/0131.html",
  2909. "html/huanzhe/images/img/i-ins-res.png",
  2910. "html/huanzhe/images/img/i-inspectors.png",
  2911. "html/huanzhe/images/img/i-test-results.png",
  2912. "html/huanzhe/template/0121.html",
  2913. "html/huanzhe/images/img/Rp.png",
  2914. "html/huanzhe/template/0221.html"
  2915. ],
  2916. "refer": []
  2917. },
  2918. "html/xiaoxi/html/yichangjilu.html": {
  2919. "resources": [
  2920. "html/xiaoxi/images/gao_icon.png",
  2921. "html/xiaoxi/images/gerenxinxi_pre.png",
  2922. "common/cross/css/cross.ui.css",
  2923. "widget/iscroll/5.1.3/js/iscroll.js",
  2924. "js/app.js",
  2925. "common/iconfont/iconfont.css",
  2926. "html/js/l-scroll.css",
  2927. "common/cross/css/cross.css",
  2928. "html/js/common.js",
  2929. "fonts/font-awesome/css/font-awesome.min.css",
  2930. "js/mui.min.js",
  2931. "js/jquery/2.1.3/jquery.js",
  2932. "images/shujuweikong_img.png",
  2933. "js/common_http.js",
  2934. "js/template.js",
  2935. "html/js/l-scroll.js"
  2936. ],
  2937. "refer": [
  2938. "html/huanzhe/html/huanzhexinxi.html",
  2939. "html/jkjl/html/health-record.html"
  2940. ]
  2941. },
  2942. "html/xiaoxi/html/jiankangtizheng.html": {
  2943. "resources": [
  2944. "html/xiaoxi/css/jiankangtizheng.css",
  2945. "fonts/font-awesome/css/font-awesome.min.css",
  2946. "common/css/doc-style.css"
  2947. ],
  2948. "refer": [
  2949. "html/xiaoxi/html/yichangjilu.html"
  2950. ]
  2951. },
  2952. "html/huanzhe/html/jiankangtijian.html": {
  2953. "resources": [
  2954. "html/huanzhe/js/jiankangtijian.js",
  2955. "html/huanzhe/css/jiankangtijian.css"
  2956. ],
  2957. "refer": [
  2958. "html/huanzhe/html/jiankangtijianxiangqing.html"
  2959. ]
  2960. },
  2961. "html/huanzhe/html/disease-label-edit.html": {
  2962. "resources": [
  2963. "html/huanzhe/css/disease.css",
  2964. "html/huanzhe/images/jiankangqingkuang_icon.png",
  2965. "html/huanzhe/images/jibingleixing_icon.png",
  2966. "html/huanzhe/images/zidingyibiaoqian_icon.png"
  2967. ],
  2968. "refer": []
  2969. },
  2970. "html/jkjl/html/health-record.html": {
  2971. "resources": [
  2972. "html/jkjl/js/xueya.js",
  2973. "html/jkjl/images/yaowei.png",
  2974. "html/jkjl/images/xuetang_pre.png",
  2975. "html/jkjl/css/ss-style.css",
  2976. "html/jkjl/images/tizhong.png",
  2977. "html/jkjl/js/yongyao.js",
  2978. "html/jkjl/js/yinshi.js",
  2979. "css/iscroll.css",
  2980. "html/jkjl/js/health-record.js",
  2981. "html/jkjl/images/fenxiang01_icon.png",
  2982. "widget/switchery/switchery.js",
  2983. "widget/swiper/3.1/swiper.min.css",
  2984. "html/jkjl/images/xueya.png",
  2985. "html/jkjl/js/xuetang.js",
  2986. "widget/swiper/3.1/swiper.jquery.min.js",
  2987. "html/jkjl/js/yundong.js",
  2988. "html/jkjl/css/health-record.css",
  2989. "widget/switchery/switchery.css",
  2990. "html/jkjl/js/yaowei.js",
  2991. "widget/echarts/echarts.js",
  2992. "html/jkjl/js/health-index.js",
  2993. "html/jkjl/js/tizhong.js",
  2994. "html/jkjl/images/yundong_pre.png",
  2995. "html/jkjl/images/yinshi.png",
  2996. "html/jkjl/images/yundong.png",
  2997. "html/jkjl/images/yinshi_pre.png",
  2998. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  2999. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  3000. "html/jkjl/images/zhibiao_di_icon.png",
  3001. "html/jkjl/images/zhibiao_gao_icon.png",
  3002. "html/jkjl/css/health-record-new.css",
  3003. "js/iscroll-probe.js",
  3004. "js/iscroll-pull-up-down.js"
  3005. ],
  3006. "refer": [
  3007. "html/jkjl/html/xuetang-view.html",
  3008. "html/jkjl/html/xueya-view.html"
  3009. ]
  3010. },
  3011. "html/huanzhe/html/search_all.html": {
  3012. "resources": [
  3013. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3014. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3015. "html/huanzhe/js/search_all.js",
  3016. "js/mui.pullToRefresh.js",
  3017. "html/js/templateHelp.js",
  3018. "common/cross/css/cross.ui.css",
  3019. "js/app.js",
  3020. "common/css/jy-style.css",
  3021. "common/iconfont/iconfont.css",
  3022. "css/mui-pull.css",
  3023. "js/mui.pullToRefresh.material.js",
  3024. "images/sousuo_icon.png",
  3025. "html/js/common.js",
  3026. "common/cross/css/cross.css",
  3027. "html/js/android.js",
  3028. "html/huanzhe/css/searchhuanzhe.css",
  3029. "js/es6-promise.js",
  3030. "js/underscore.js",
  3031. "js/mui.min.js",
  3032. "html/huanzhe/js/search-bar.js",
  3033. "js/jquery/2.1.3/jquery.js",
  3034. "images/shujuweikong_img.png",
  3035. "js/template.js",
  3036. "js/common_http.js",
  3037. "html/huanzhe/css/search-bar.css",
  3038. "html/huanzhe/images/weiqianyue_icon.png"
  3039. ],
  3040. "refer": []
  3041. },
  3042. "html/huanzhe/html/jiankangtijianxiangqing.html": {
  3043. "resources": [
  3044. "html/huanzhe/js/jiankangtijianxiangqing.js",
  3045. "html/huanzhe/images/shou_icon.png",
  3046. "html/huanzhe/css/jiankangtijianxiangqing.css",
  3047. "html/huanzhe/js/elastic-columns.js",
  3048. "html/huanzhe/images/jiankangxiangqing_icon.png",
  3049. "html/huanzhe/images/shou02_icon.png"
  3050. ],
  3051. "refer": []
  3052. },
  3053. "html/mine/html/about.html": {
  3054. "resources": [
  3055. "html/mine/images/about.png",
  3056. "html/mine/css/about.css",
  3057. "html/mine/images/settings/icon6.png"
  3058. ],
  3059. "refer": []
  3060. },
  3061. "html/mine/html/feedback.html": {
  3062. "resources": [
  3063. "html/mine/css/feedback.css",
  3064. "js/app.js",
  3065. "js/mui.min.js",
  3066. "js/jquery/2.1.3/jquery.js",
  3067. "css/mui.min.css",
  3068. "js/common_http.js",
  3069. "html/mine/js/feedback.js",
  3070. "fonts/mui.ttf",
  3071. "common/cross/css/cross.ui.css",
  3072. "common/cross/css/cross.css",
  3073. "html/mine/js/upload_photo_modify.js",
  3074. "html/js/common.js",
  3075. "html/mine/js/auto_rec_ssc_photo.js",
  3076. "html/mine/images/tianjiatupian_btn.png",
  3077. "html/mine/js/feedback_photo.js",
  3078. "js/es6-promise.js",
  3079. "js/underscore.js",
  3080. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3081. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3082. "html/mine/images/delete_icon.png"
  3083. ],
  3084. "refer": []
  3085. },
  3086. "html/mine/html/clip_photo2.html": {
  3087. "resources": [
  3088. "html/mine/js/transform.js",
  3089. "html/mine/js/alloy_crop.js",
  3090. "html/mine/js/lrz.all.bundle.js",
  3091. "html/mine/js/alloy_finger.js",
  3092. "common/cross/css/cross.ui.css",
  3093. "js/app.js",
  3094. "common/cross/css/cross.css",
  3095. "html/js/common.js",
  3096. "common/cross/images/logo_dibu_img.png",
  3097. "html/mine/js/upload_photo_modify.js",
  3098. "js/mui.min.js",
  3099. "js/jquery/2.1.3/jquery.js",
  3100. "js/common_http.js"
  3101. ],
  3102. "refer": []
  3103. },
  3104. "html/hzzd/html/edit_guidance.html": {
  3105. "resources": [
  3106. "html/hzzd/images/tianjiatupian_btn.png",
  3107. "html/hzzd/js/edit_guidance.js",
  3108. "html/hzzd/js/auto_rec_ssc_photo.js",
  3109. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3110. "common/cross/css/cross.ui.css",
  3111. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3112. "js/app.js",
  3113. "common/cross/css/cross.css",
  3114. "html/hzzd/iconfont/iconfont.css",
  3115. "js/underscore.js",
  3116. "js/es6-promise.js",
  3117. "js/mui.min.js",
  3118. "js/jquery/2.1.3/jquery.js",
  3119. "css/mui.min.css",
  3120. "js/common_http.js",
  3121. "js/template.js",
  3122. "common/cross/css/ui.all.css",
  3123. "html/hzzd/images/delete_icon.png",
  3124. "common/cross/images/logo_dibu_img.png"
  3125. ],
  3126. "refer": []
  3127. },
  3128. "html/mine/html/account_back.html": {
  3129. "resources": [
  3130. "html/mine/images/tianjiatupian_btn.png",
  3131. "fonts/mui.ttf",
  3132. "html/mine/css/feedback.css",
  3133. "html/mine/js/feedback.js",
  3134. "html/mine/js/feedback_photo.js",
  3135. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3136. "common/cross/css/cross.ui.css",
  3137. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3138. "js/app.js",
  3139. "common/cross/css/cross.css",
  3140. "html/js/common.js",
  3141. "js/es6-promise.js",
  3142. "js/underscore.js",
  3143. "js/mui.min.js",
  3144. "js/jquery/2.1.3/jquery.js",
  3145. "css/mui.min.css",
  3146. "js/common_http.js",
  3147. "html/mine/js/account_back.js",
  3148. "html/mine/images/delete_icon.png"
  3149. ],
  3150. "refer": []
  3151. },
  3152. "html/message/html/xitongxiaoxi.html": {
  3153. "resources": [
  3154. "html/message/js/xitongxiaoxi.js",
  3155. "html/message/css/xitongxiaoxi.css",
  3156. "images/shujuweikong_img.png",
  3157. "images/new_icon.png"
  3158. ],
  3159. "refer": [
  3160. "html/search/html/zhuanyijumin.html"
  3161. ]
  3162. },
  3163. "html/suifang/html/index.html": {
  3164. "resources": [
  3165. "widget/swiper/3.1/swiper.jquery.min.js",
  3166. "html/suifang/js/index.js",
  3167. "html/suifang/css/index.css",
  3168. "fonts/mui.ttf",
  3169. "html/suifang/images/tianjia_button.png",
  3170. "html/suifang/images/zhangkai_icon.png",
  3171. "widget/swiper/3.1/swiper.min.css",
  3172. "html/suifang/css/mf-style.css",
  3173. "html/suifang/css/iconfont/iconfont.css",
  3174. "common/cross/css/cross.ui.css",
  3175. "js/es6-promise.js",
  3176. "js/underscore.js",
  3177. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  3178. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  3179. "images/shujuweikong_img.png",
  3180. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3181. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3182. "js/app.js",
  3183. "common/cross/css/cross.min.css",
  3184. "js/mui.min.js",
  3185. "js/jquery/2.1.3/jquery.js",
  3186. "css/mui.min.css",
  3187. "js/template.js",
  3188. "js/common_http.js",
  3189. "images/p-female.png",
  3190. "common/cross/images/logo_dibu_img.png"
  3191. ],
  3192. "refer": [
  3193. "html/search/html/xuanzejumin_one.html",
  3194. "html/suifang/html/suifang_detail.html",
  3195. "html/login/html/login.html",
  3196. "html/suifang/html/fvDetail.html",
  3197. "html/suifang/html/follow_way.html"
  3198. ]
  3199. },
  3200. "html/mine/html/manyidu.html": {
  3201. "resources": [
  3202. "html/js/templateHelp.js",
  3203. "common/cross/css/cross.ui.css",
  3204. "js/app.js",
  3205. "js/mui.min.js",
  3206. "js/jquery/2.1.3/jquery.js",
  3207. "html/js/common.js",
  3208. "common/css/doc-style.css",
  3209. "common/cross/css/cross.css",
  3210. "js/common_http.js",
  3211. "js/template.js",
  3212. "html/mine/css/manyidu.css"
  3213. ],
  3214. "refer": [
  3215. "html/login/html/login.html"
  3216. ]
  3217. },
  3218. "html/manager/html/qianyuetongji2.html": {
  3219. "resources": [
  3220. "html/manager/js/wc-motion-chart.js",
  3221. "html/manager/js/l-picker.js",
  3222. "html/manager/css/manager.css",
  3223. "widget/echarts/2.2.7/js/echarts-all.js",
  3224. "common/images/pull-icon@2x.png",
  3225. "html/manager/js/qianyuetongji2.js",
  3226. "common/css/pull-up-down.css",
  3227. "js/iscroll-probe.js",
  3228. "js/underscore.js",
  3229. "js/pull-up-down.js",
  3230. "html/manager/images/dizhi_icon.png",
  3231. "js/iscroll-pull-up-down.js",
  3232. "html/manager/images/checked_blue.png",
  3233. "html/manager/css/animate.css",
  3234. "common/css/doc-style.css",
  3235. "common/cross/css/cross.ui.css",
  3236. "html/manager/images/yiwen_icon.png",
  3237. "html/manager/images/hanbaobao_icon.png",
  3238. "js/mui.min.js",
  3239. "js/jquery/2.1.3/jquery.js",
  3240. "common/css/l_size.css",
  3241. "html/manager/images/guanbi_01_btn.png",
  3242. "js/template.js",
  3243. "common/cross/css/cross.min.css",
  3244. "common/cross/images/logo_dibu_img.png",
  3245. "css/mui.min.css",
  3246. "js/waterbubble.js",
  3247. "js/common_http.js"
  3248. ],
  3249. "refer": [
  3250. "html/manager/html/shaixuan2.html",
  3251. "html/error/html/error.html"
  3252. ]
  3253. },
  3254. "html/manager/html/analysis1.html": {
  3255. "resources": [
  3256. "html/manager/html/analysis2.html",
  3257. "html/manager/images/rili.png",
  3258. "html/manager/images/qiehuan_icon.png"
  3259. ],
  3260. "refer": [
  3261. "html/manager/html/analysis2.html",
  3262. "html/manager/html/shaixuan.html"
  3263. ]
  3264. },
  3265. "html/manager/html/analysis2.html": {
  3266. "resources": [
  3267. "html/manager/images/xingbiefenbu_icon.png",
  3268. "images/tit5.png",
  3269. "widget/echarts/3.0/js/echarts.min.js",
  3270. "html/manager/images/jiankangfenbu_icon.png",
  3271. "html/manager/images/jiaofeiqingk_icon.png",
  3272. "html/manager/js/analysis2.js",
  3273. "html/manager/images/fuwufenbu_icon.png"
  3274. ],
  3275. "refer": []
  3276. },
  3277. "html/manager/html/shaixuan.html": {
  3278. "resources": [
  3279. "js/es6-promise.js"
  3280. ],
  3281. "refer": []
  3282. },
  3283. "html/manager/html/tuigaiqian.html": {
  3284. "resources": [
  3285. "html/manager/js/tuigaiqian.js"
  3286. ],
  3287. "refer": []
  3288. },
  3289. "html/manager/html/lianglvfenxi-sheguan.html": {
  3290. "resources": [
  3291. "html/manager/images/gaoweirenqun.png",
  3292. "html/manager/images/snashi_icon.png"
  3293. ],
  3294. "refer": []
  3295. },
  3296. "html/jkjy/html/fasongjilu.html": {
  3297. "resources": [
  3298. "html/jkjy/js/fasongjilu.js",
  3299. "html/jkjy/css/fasongjilu.css"
  3300. ],
  3301. "refer": [
  3302. "html/jkjy/html/jiluxiangqing.html"
  3303. ]
  3304. },
  3305. "html/jkjy/html/jiluxiangqing.html": {
  3306. "resources": [
  3307. "html/jkjy/css/jiluxiangqing.css",
  3308. "html/jkjy/js/jiluxiangqing.js"
  3309. ],
  3310. "refer": []
  3311. },
  3312. "html/suifang/html/add_plan.html": {
  3313. "resources": [
  3314. "js/im_new.js",
  3315. "html/suifang/js/add_plan.js",
  3316. "html/suifang/css/iconfont/iconfont.woff",
  3317. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3318. "common/cross/css/cross.ui.css",
  3319. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3320. "js/app.js",
  3321. "common/cross/css/cross.css",
  3322. "html/suifang/css/mf-style.css",
  3323. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  3324. "js/es6-promise.js",
  3325. "js/mui.min.js",
  3326. "js/jquery/2.1.3/jquery.js",
  3327. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  3328. "js/common_http.js",
  3329. "js/template.js",
  3330. "html/suifang/css/iconfont/iconfont.css"
  3331. ],
  3332. "refer": [
  3333. "html/huanzhe/html/fuwujilu.html"
  3334. ]
  3335. },
  3336. "html/suifang/html/start_plan.html": {
  3337. "refer": [
  3338. "html/suifang/html/fvDetail.html"
  3339. ],
  3340. "resources": [
  3341. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  3342. "js/im_new.js",
  3343. "js/underscore.js",
  3344. "js/es6-promise.js",
  3345. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  3346. "css/mui.min.css",
  3347. "js/template.js",
  3348. "html/suifang/css/mf-style.css"
  3349. ]
  3350. },
  3351. "html/suifang/html/fvDetail.html": {
  3352. "resources": [
  3353. "html/suifang/js/fvDetail.js",
  3354. "js/im_new.js",
  3355. "html/suifang/css/mf-style.css",
  3356. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3357. "common/cross/css/cross.ui.css",
  3358. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3359. "common/css/jy-style.css",
  3360. "js/app.js",
  3361. "common/iconfont/iconfont.css",
  3362. "common/cross/css/cross.css",
  3363. "js/es6-promise.js",
  3364. "js/mui.min.js",
  3365. "js/jquery/2.1.3/jquery.js",
  3366. "js/common_http.js",
  3367. "js/template.js",
  3368. "common/iconfont/iconfont.woff"
  3369. ],
  3370. "refer": [
  3371. "html/suifang/html/questionaires.html",
  3372. "html/suifang/html/drugs.html",
  3373. "html/login/html/login.html",
  3374. "html/error/html/error.html"
  3375. ]
  3376. },
  3377. "html/suifang/html/questionaires.html": {
  3378. "resources": [
  3379. "html/suifang/css/mobiscroll_numpad.css",
  3380. "html/suifang/js/template_tnb.js",
  3381. "html/suifang/js/mobiscroll-2.17.1.js",
  3382. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  3383. "html/suifang/js/template_gxy.js",
  3384. "html/suifang/js/questionaires.js",
  3385. "html/suifang/images/backspace.png",
  3386. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3387. "common/cross/css/cross.ui.css",
  3388. "js/app.js",
  3389. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3390. "common/iconfont/iconfont.css",
  3391. "common/cross/css/cross.css",
  3392. "html/suifang/css/mf-style.css",
  3393. "js/es6-promise.js",
  3394. "js/mui.min.js",
  3395. "js/jquery/2.1.3/jquery.js",
  3396. "js/common_http.js",
  3397. "js/template.js",
  3398. "common/cross/images/logo_dibu_img.png",
  3399. "js/underscore.js"
  3400. ],
  3401. "refer": [
  3402. "html/suifang/html/dyy_history.html",
  3403. "html/suifang/html/edu_history.html",
  3404. "html/suifang/html/history_record.html"
  3405. ]
  3406. },
  3407. "html/suifang/html/suifang_detail.html": {
  3408. "refer": [
  3409. "html/suifang/html/choose_suifang.html",
  3410. "html/suifang/html/fvDetail.html",
  3411. "html/suifang/html/start_plan.html",
  3412. "html/suifang/html/edit_plan.html"
  3413. ],
  3414. "resources": [
  3415. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3416. "common/cross/css/cross.ui.css",
  3417. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3418. "js/app.js",
  3419. "common/iconfont/iconfont.css",
  3420. "js/mui.min.js",
  3421. "js/jquery/2.1.3/jquery.js",
  3422. "common/cross/css/cross.css",
  3423. "js/common_http.js",
  3424. "common/cross/images/logo_dibu_img.png"
  3425. ]
  3426. },
  3427. "html/suifang/html/choose_suifang.html": {
  3428. "refer": [
  3429. "html/suifang/html/add_plan.html",
  3430. "html/suifang/html/follow_way.html"
  3431. ],
  3432. "resources": [
  3433. "common/iconfont/iconfont.css"
  3434. ]
  3435. },
  3436. "html/suifang/html/edit_plan.html": {
  3437. "resources": [
  3438. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  3439. "js/im_new.js",
  3440. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  3441. "html/suifang/css/mf-style.css",
  3442. "html/suifang/css/iconfont/iconfont.css",
  3443. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3444. "common/cross/css/cross.ui.css",
  3445. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3446. "js/app.js",
  3447. "common/cross/css/cross.css",
  3448. "js/es6-promise.js",
  3449. "js/mui.min.js",
  3450. "js/jquery/2.1.3/jquery.js",
  3451. "js/common_http.js",
  3452. "js/template.js"
  3453. ],
  3454. "refer": []
  3455. },
  3456. "html/suifang/html/drugs.html": {
  3457. "resources": [
  3458. "html/suifang/js/measure_unit_dict.js",
  3459. "html/suifang/images/tianjia_icon.png",
  3460. "html/suifang/css/drugs.css",
  3461. "html/suifang/images/yongyao_icon.png",
  3462. "html/suifang/js/recipe_frequency_dict.js",
  3463. "html/suifang/images/unchecked.png",
  3464. "html/suifang/js/drugs.js",
  3465. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  3466. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  3467. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3468. "common/cross/css/cross.ui.css",
  3469. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3470. "js/app.js",
  3471. "common/iconfont/iconfont.css",
  3472. "js/im_new.js",
  3473. "common/cross/css/cross.css",
  3474. "js/es6-promise.js",
  3475. "js/mui.min.js",
  3476. "js/jquery/2.1.3/jquery.js",
  3477. "js/template.js",
  3478. "js/common_http.js",
  3479. "html/suifang/images/RP_icon.png",
  3480. "html/suifang/images/xinzhengyaopin_icon.png",
  3481. "html/suifang/images/xiala_icon.png",
  3482. "html/suifang/images/delete.png",
  3483. "js/underscore.js",
  3484. "css/mui.min.css",
  3485. "common/cross/images/logo_dibu_img.png"
  3486. ],
  3487. "refer": [
  3488. "html/suifang/html/history_medication.html",
  3489. "html/suifang/html/add_drug.html"
  3490. ]
  3491. },
  3492. "html/hzzd/html/guidance_detail.html": {
  3493. "refer": [
  3494. "html/hzzd/html/edit_guidance.html"
  3495. ],
  3496. "resources": [
  3497. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3498. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3499. "common/cross/css/cross.ui.css",
  3500. "js/app.js",
  3501. "common/cross/css/cross.css",
  3502. "html/hzzd/iconfont/iconfont.css",
  3503. "common/cross/images/logo_dibu_img.png",
  3504. "js/mui.min.js",
  3505. "js/jquery/2.1.3/jquery.js",
  3506. "css/mui.min.css",
  3507. "js/common_http.js",
  3508. "js/template.js",
  3509. "common/cross/css/ui.all.css"
  3510. ]
  3511. },
  3512. "html/suifang/html/dyy_history.html": {
  3513. "resources": [
  3514. "html/suifang/js/dyy_history.js",
  3515. "html/suifang/css/edu_history.css",
  3516. "fonts/mui.ttf",
  3517. "html/suifang/images/checked_all.png"
  3518. ],
  3519. "refer": []
  3520. },
  3521. "html/huanzhe/html/fuwutongji.html": {
  3522. "resources": [
  3523. "html/huanzhe/js/fuwutongji.js",
  3524. "html/huanzhe/css/fuwutongji.css"
  3525. ],
  3526. "refer": []
  3527. },
  3528. "html/huanzhe/html/searchhuanzhe2.html": {
  3529. "resources": [
  3530. "html/huanzhe/js/searchhuanzhe2.js",
  3531. "html/huanzhe/js/pull-up-down-2.js",
  3532. "widget/iscroll/5.1.3/js/iscroll.js",
  3533. "html/huanzhe/images/sousuo_qianyu_icon.png",
  3534. "html/js/l-scroll.css",
  3535. "html/js/android.js",
  3536. "html/huanzhe/css/searchhuanzhe.css",
  3537. "common/css/pull-up-down.css",
  3538. "js/iscroll-probe.js",
  3539. "html/huanzhe/js/search-bar.js",
  3540. "js/iscroll-pull-up-down.js",
  3541. "html/huanzhe/css/search-bar.css",
  3542. "html/js/l-scroll.js"
  3543. ],
  3544. "refer": []
  3545. },
  3546. "html/jkjl/html/xuetang-view.html": {
  3547. "resources": [
  3548. "html/jkjl/js/xuetang-view.js",
  3549. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  3550. "html/jkjl/js/health-chart.js",
  3551. "html/jkjl/css/xuetang-view.css",
  3552. "html/jkjl/css/health-record-info.css",
  3553. "common/cross/css/cross.ui.css",
  3554. "widget/iscroll/5.1.3/js/iscroll.js",
  3555. "css/iscroll.css",
  3556. "widget/swiper/3.1/swiper.min.css",
  3557. "widget/switchery/switchery.js",
  3558. "js/iscroll-probe.js",
  3559. "js/underscore.js",
  3560. "widget/switchery/switchery.css",
  3561. "js/mui.min.js",
  3562. "js/jquery/2.1.3/jquery.js",
  3563. "js/iscroll-pull-up-down.js",
  3564. "js/template.js",
  3565. "html/jkjl/js/health-index.js",
  3566. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3567. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3568. "html/jkjl/css/ss-style.css",
  3569. "common/cross/css/cross.css",
  3570. "widget/swiper/3.1/swiper.jquery.min.js",
  3571. "html/jkjl/css/health-record.css",
  3572. "js/es6-promise.js",
  3573. "widget/echarts/echarts.js",
  3574. "js/common_http.js",
  3575. "html/jkjl/images/icon_shijian.png"
  3576. ],
  3577. "refer": []
  3578. },
  3579. "html/jkjl/html/xueya-view.html": {
  3580. "resources": [
  3581. "html/jkjl/js/xueya-view.js"
  3582. ],
  3583. "refer": []
  3584. },
  3585. "html/suifang/html/follow_way.html": {
  3586. "resources": [
  3587. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  3588. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  3589. "html/suifang/css/mf-style.css"
  3590. ],
  3591. "refer": [
  3592. "html/suifang/html/fvDetail.html",
  3593. "html/login/html/login.html"
  3594. ]
  3595. },
  3596. "html/huanzhe/html/huanzhe-by-type.html": {
  3597. "resources": [
  3598. "common/css/pull-up-down.css",
  3599. "js/iscroll-probe.js",
  3600. "js/pull-up-down.js",
  3601. "html/huanzhe/js/huanzhe-by-type.js",
  3602. "images/weixing_icon.png",
  3603. "js/iscroll-pull-up-down.js",
  3604. "html/huanzhe/images/shezi_icon.png",
  3605. "images/p-female.png",
  3606. "html/js/templateHelp.js",
  3607. "common/cross/css/cross.ui.css",
  3608. "js/app.js",
  3609. "common/css/jy-style.css",
  3610. "common/iconfont/iconfont.css",
  3611. "html/js/common.js",
  3612. "common/cross/css/cross.css",
  3613. "images/sousuo_icon.png",
  3614. "js/es6-promise.js",
  3615. "js/underscore.js",
  3616. "js/mui.min.js",
  3617. "js/jquery/2.1.3/jquery.js",
  3618. "images/shujuweikong_img.png",
  3619. "js/template.js",
  3620. "js/common_http.js",
  3621. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3622. "widget/artDialog/6.0.5/css/ui-dialog.min.css"
  3623. ],
  3624. "refer": [
  3625. "html/huanzhe/html/searchhuanzhe.html",
  3626. "html/huanzhe/html/huanzhexinxi.html"
  3627. ]
  3628. },
  3629. "html/suifang/html/edu_history.html": {
  3630. "resources": [
  3631. "html/suifang/js/edu_history.js",
  3632. "html/suifang/css/edu_history.css",
  3633. "html/suifang/images/checked_all.png"
  3634. ],
  3635. "refer": []
  3636. },
  3637. "html/survey/html/survey_list.html": {
  3638. "resources": [
  3639. "html/survey/css/base.css",
  3640. "html/survey/js/survey_list.js"
  3641. ],
  3642. "refer": [
  3643. "html/survey/html/template_list.html",
  3644. "html/survey/html/survey_info.html"
  3645. ]
  3646. },
  3647. "html/survey/html/template_list.html": {
  3648. "resources": [
  3649. "html/survey/images/tanchuang_icon.png",
  3650. "html/survey/js/template_list.js"
  3651. ],
  3652. "refer": [
  3653. "html/survey/html/template_info.html"
  3654. ]
  3655. },
  3656. "html/survey/html/template_info.html": {
  3657. "refer": [
  3658. "html/survey/html/survey_detail.html"
  3659. ],
  3660. "resources": []
  3661. },
  3662. "html/survey/html/new_summary.html": {
  3663. "resources": [
  3664. "html/js/sqliteUtil.js",
  3665. "html/survey/js/new_summary.js"
  3666. ],
  3667. "refer": [
  3668. "html/survey/html/preview.html"
  3669. ]
  3670. },
  3671. "html/survey/html/survey_detail.html": {
  3672. "refer": [
  3673. "html/survey/html/new_summary.html"
  3674. ],
  3675. "resources": []
  3676. },
  3677. "html/survey/html/preview.html": {
  3678. "resources": [
  3679. "html/survey/js/preview.js"
  3680. ],
  3681. "refer": [
  3682. "html/survey/html/choose_respondent.html"
  3683. ]
  3684. },
  3685. "html/survey/html/choose_respondent.html": {
  3686. "refer": [
  3687. "html/survey/html/new_confirm.html"
  3688. ],
  3689. "resources": []
  3690. },
  3691. "html/survey/html/new_confirm.html": {
  3692. "resources": [
  3693. "html/survey/js/new_confirm.js"
  3694. ],
  3695. "refer": []
  3696. },
  3697. "html/hzzd/html/sys_guidance_list.html": {
  3698. "resources": [
  3699. "html/hzzd/images/shiyongren_icon.png",
  3700. "common/cross/css/cross.ui.css",
  3701. "js/app.js",
  3702. "fonts/mui.ttf",
  3703. "common/cross/css/cross.css",
  3704. "html/hzzd/iconfont/iconfont.css",
  3705. "common/cross/images/logo_dibu_img.png",
  3706. "js/mui.min.js",
  3707. "js/jquery/2.1.3/jquery.js",
  3708. "css/mui.min.css",
  3709. "images/shujuweikong_img.png",
  3710. "js/common_http.js",
  3711. "js/template.js",
  3712. "common/cross/css/ui.all.css"
  3713. ],
  3714. "refer": [
  3715. "html/hzzd/html/guidance_detail.html"
  3716. ]
  3717. },
  3718. "html/qzys/html/select_doctor.html": {
  3719. "resources": [
  3720. "html/qzys/js/qiuzhu_common.js",
  3721. "html/qzys/css/search-bar.css",
  3722. "html/qzys/js/select_doctor.js",
  3723. "js/jquery.ellipsis.js",
  3724. "html/qzys/css/select_doctor.css",
  3725. "common/css/pull-up-down.css",
  3726. "js/iscroll-probe.js",
  3727. "js/pull-up-down.js",
  3728. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  3729. "js/es6-promise.js",
  3730. "js/iscroll-pull-up-down.js",
  3731. "images/shujuweikong_img.png"
  3732. ],
  3733. "refer": [
  3734. "html/message/html/p2p.html"
  3735. ]
  3736. },
  3737. "html/hzzd/html/tuanduimubanliebiao.html": {
  3738. "resources": [
  3739. "html/tuandui/css/tuandui.css",
  3740. "html/tuandui/images/checked_blue.png",
  3741. "js/underscore.js",
  3742. "js/mui.js",
  3743. "css/mui-pull.css",
  3744. "html/hzzd/images/shiyongren_icon.png",
  3745. "common/cross/css/cross.ui.css",
  3746. "js/app.js",
  3747. "fonts/mui.ttf",
  3748. "common/cross/css/cross.css",
  3749. "html/hzzd/iconfont/iconfont.css",
  3750. "common/cross/images/logo_dibu_img.png",
  3751. "js/es6-promise.js",
  3752. "js/jquery/2.1.3/jquery.js",
  3753. "css/mui.min.css",
  3754. "images/shujuweikong_img.png",
  3755. "js/template.js",
  3756. "js/common_http.js",
  3757. "common/cross/css/ui.all.css",
  3758. "html/hzzd/images/xuanfu_btn.png"
  3759. ],
  3760. "refer": [
  3761. "html/hzzd/html/chakantuanduimuban.html",
  3762. "html/hzzd/html/bianjituanduimuban.html"
  3763. ]
  3764. },
  3765. "html/manager/html/manyidufenxi.html": {
  3766. "resources": [
  3767. "html/manager/js/l-picker.js",
  3768. "html/manager/js/manyidufenxi.js",
  3769. "html/manager/images/icon_dizhi.png",
  3770. "html/manager/css/manyidufenxi.css",
  3771. "widget/echarts/2.2.7/js/echarts-all.js",
  3772. "html/manager/css/manager.css",
  3773. "html/manager/css/animate.css"
  3774. ],
  3775. "refer": []
  3776. },
  3777. "html/manager/html/xuqiantongji.html": {
  3778. "resources": [
  3779. "html/manager/js/wc-motion-chart.js",
  3780. "html/manager/images/yiwen_icon.png",
  3781. "html/manager/js/l-picker.js",
  3782. "html/manager/css/manager.css",
  3783. "widget/echarts/2.2.7/js/echarts-all.js",
  3784. "common/images/pull-icon@2x.png",
  3785. "html/manager/js/xuqiantongji.js",
  3786. "common/css/pull-up-down.css",
  3787. "js/iscroll-probe.js",
  3788. "js/pull-up-down.js",
  3789. "js/es6-promise.js",
  3790. "js/underscore.js",
  3791. "html/manager/images/dizhi_icon.png",
  3792. "js/iscroll-pull-up-down.js",
  3793. "html/manager/css/animate.css",
  3794. "html/manager/css/xuqiantongji.css",
  3795. "common/cross/css/cross.ui.css",
  3796. "js/mui.min.js",
  3797. "js/jquery/2.1.3/jquery.js",
  3798. "html/manager/images/guanbi_01_btn.png",
  3799. "js/template.js",
  3800. "common/cross/css/cross.min.css",
  3801. "common/iconfont/iconfont.css",
  3802. "common/cross/css/cross.css",
  3803. "common/cross/images/logo_dibu_img.png",
  3804. "html/manager/images/hanbaobao_icon.png",
  3805. "css/mui.min.css",
  3806. "js/waterbubble.js",
  3807. "js/common_http.js"
  3808. ],
  3809. "refer": [
  3810. "html/manager/html/shaixuan2.html",
  3811. "html/manager/html/xq-shaixuan.html",
  3812. "html/manager/html/renew-analysis.html"
  3813. ]
  3814. },
  3815. "html/manager/html/shaixuan2.html": {
  3816. "resources": [
  3817. "common/iconfont/iconfont.css",
  3818. "common/cross/css/cross.css",
  3819. "common/cross/css/ui.all.min.css",
  3820. "common/css/pull-up-down.css",
  3821. "common/cross/images/logo_dibu_img.png",
  3822. "js/iscroll-probe.js",
  3823. "js/es6-promise.js",
  3824. "js/underscore.js",
  3825. "js/pull-up-down.js",
  3826. "js/mui.min.js",
  3827. "js/jquery/2.1.3/jquery.js",
  3828. "js/iscroll-pull-up-down.js",
  3829. "js/common_http.js"
  3830. ],
  3831. "refer": []
  3832. },
  3833. "html/manager/html/xq-shaixuan.html": {
  3834. "resources": [
  3835. "common/iconfont/iconfont.css",
  3836. "common/cross/css/cross.css",
  3837. "common/cross/css/ui.all.min.css",
  3838. "common/css/pull-up-down.css",
  3839. "common/cross/images/logo_dibu_img.png",
  3840. "js/iscroll-probe.js",
  3841. "js/es6-promise.js",
  3842. "js/underscore.js",
  3843. "js/pull-up-down.js",
  3844. "js/mui.min.js",
  3845. "js/jquery/2.1.3/jquery.js",
  3846. "js/iscroll-pull-up-down.js",
  3847. "js/common_http.js"
  3848. ],
  3849. "refer": []
  3850. },
  3851. "html/observer/html/search_doctor.html": {
  3852. "resources": [
  3853. "images/shujuweikong_img.png",
  3854. "html/js/android.js",
  3855. "images/d-male.png"
  3856. ],
  3857. "refer": [
  3858. "html/home/html/relogin.html",
  3859. "html/login/html/login.html"
  3860. ]
  3861. },
  3862. "html/message/html/xufangzixun.html": {
  3863. "resources": [
  3864. "common/cross/css/cross.ui.css",
  3865. "widget/iscroll/5.1.3/js/iscroll.js",
  3866. "html/message/images/shouqi_icon.png",
  3867. "html/message/js/socketConnect.js",
  3868. "html/js/common.js",
  3869. "html/message/images/paizhao_icon.png",
  3870. "html/message/images/fenxiang_icon.png",
  3871. "js/underscore.js",
  3872. "js/mui.zoom.js",
  3873. "html/js/service.js",
  3874. "js/mui.min.js",
  3875. "js/jquery/2.1.3/jquery.js",
  3876. "js/mui.previewimage.js",
  3877. "js/template.js",
  3878. "html/message/images/tw-add.png",
  3879. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3880. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3881. "html/js/sqliteUtil.js",
  3882. "js/app.js",
  3883. "html/js/l-img-view.js",
  3884. "html/js/l-scroll.css",
  3885. "html/message/js/xufangzixun.js",
  3886. "common/cross/css/cross.css",
  3887. "html/message/images/tupian_icon.png",
  3888. "html/css/chatroom.css",
  3889. "common/cross/images/logo_dibu_img.png",
  3890. "html/message/images/yuying_icon.png",
  3891. "html/message/images/jianpang_icon.png",
  3892. "css/mui.min.css",
  3893. "html/message/css/yy-style.css",
  3894. "css/mui.previmg.css",
  3895. "js/im.client.js",
  3896. "html/message/images/kuaijiehuifu_icon.png",
  3897. "js/common_http.js",
  3898. "html/message/images/gerenxinxi_pre.png",
  3899. "html/message/js/xf-chatRoom.js",
  3900. "html/js/l-scroll.js",
  3901. "html/message/images/xitongtixing_im_icon.png",
  3902. "html/message/images/zhankai_icon.png",
  3903. "html/message/css/xufangzixun.css"
  3904. ],
  3905. "refer": [
  3906. "html/prescription/html/xufangxiangqing.html",
  3907. "html/message/html/questionaires.html",
  3908. "html/error/html/error.html",
  3909. "html/kjhf/html/list.html",
  3910. "html/prescription/html/chufangxiangqing.html",
  3911. "html/suifang/html/start_plan.html",
  3912. "html/huanzhe/html/huanzhexinxi.html",
  3913. "html/suifang/html/follow_way.html",
  3914. "html/message/html/wenjuan.html",
  3915. "html/suifang/html/fvDetail.html",
  3916. "html/prescription/html/juminxufangjilu.html",
  3917. "html/huanzhe/html/jianchajianyan.html",
  3918. "html/login/html/login.html"
  3919. ]
  3920. },
  3921. "html/hzzd/html/bianjituanduimuban.html": {
  3922. "resources": [
  3923. "html/hzzd/js/bianjituanduimuban.js",
  3924. "html/hzzd/images/tianjiatupian_btn.png",
  3925. "html/hzzd/js/auto_rec_ssc_photo.js",
  3926. "html/hzzd/images/delete_icon.png",
  3927. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3928. "common/cross/css/cross.ui.css",
  3929. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3930. "js/app.js",
  3931. "common/cross/css/cross.css",
  3932. "html/hzzd/iconfont/iconfont.css",
  3933. "common/cross/images/logo_dibu_img.png",
  3934. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  3935. "js/underscore.js",
  3936. "html/tuandui/css/tuandui.css",
  3937. "js/es6-promise.js",
  3938. "js/mui.min.js",
  3939. "js/jquery/2.1.3/jquery.js",
  3940. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  3941. "css/mui.min.css",
  3942. "js/template.js",
  3943. "js/common_http.js",
  3944. "common/cross/css/ui.all.css"
  3945. ],
  3946. "refer": [
  3947. "html/hzzd/html/yulantuanduimuban.html"
  3948. ]
  3949. },
  3950. "html/hzzd/html/chakantuanduimuban.html": {
  3951. "refer": [
  3952. "html/hzzd/html/bianjituanduimuban.html"
  3953. ],
  3954. "resources": [
  3955. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  3956. "common/cross/css/cross.ui.css",
  3957. "js/app.js",
  3958. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  3959. "common/cross/css/cross.css",
  3960. "html/hzzd/iconfont/iconfont.css",
  3961. "common/cross/images/logo_dibu_img.png",
  3962. "js/mui.min.js",
  3963. "js/jquery/2.1.3/jquery.js",
  3964. "css/mui.min.css",
  3965. "js/common_http.js",
  3966. "js/template.js",
  3967. "common/cross/css/ui.all.css"
  3968. ]
  3969. },
  3970. "html/manager/html/renew-analysis.html": {
  3971. "resources": [
  3972. "html/manager/css/renew-analysis.css",
  3973. "widget/echarts/3.0/js/echarts.min.js",
  3974. "html/manager/js/renew-analysis.js",
  3975. "html/manager/images/zhuanqianfenbu_icon.png",
  3976. "html/manager/images/zhuanqianyuanyin_icon.png",
  3977. "common/cross/css/cross.ui.css",
  3978. "js/iscroll-probe.js",
  3979. "js/underscore.js",
  3980. "js/pull-up-down.js",
  3981. "html/manager/images/dizhi_icon.png",
  3982. "js/mui.min.js",
  3983. "js/jquery/2.1.3/jquery.js",
  3984. "html/manager/images/guanbi_01_btn.png",
  3985. "js/iscroll-pull-up-down.js",
  3986. "js/template.js",
  3987. "html/manager/images/yiwen_icon.png",
  3988. "html/manager/js/l-picker.js",
  3989. "common/cross/css/cross.min.css",
  3990. "common/iconfont/iconfont.css",
  3991. "html/manager/css/manager.css",
  3992. "common/images/pull-icon@2x.png",
  3993. "common/cross/css/cross.css",
  3994. "common/css/pull-up-down.css",
  3995. "common/cross/images/logo_dibu_img.png",
  3996. "js/es6-promise.js",
  3997. "css/mui.min.css",
  3998. "js/common_http.js"
  3999. ],
  4000. "refer": []
  4001. },
  4002. "html/suifang/html/suifang_list.html": {
  4003. "resources": [
  4004. "html/suifang/css/suifang_list.css",
  4005. "html/suifang/images/checked_blue.png",
  4006. "html/js/l-scroll.css",
  4007. "html/suifang/images/tianjia_icon_1.png",
  4008. "html/suifang/js/suifang_list.js",
  4009. "html/js/l-scroll.js",
  4010. "widget/iscroll/5.1.3/js/iscroll.js",
  4011. "js/mui.min.js",
  4012. "images/shujuweikong_img.png"
  4013. ],
  4014. "refer": [
  4015. "html/suifang/html/choose_suifang.html",
  4016. "html/suifang/html/suifang_detail.html",
  4017. "html/login/html/login.html",
  4018. "html/suifang/html/follow_way.html",
  4019. "html/suifang/html/fvDetail.html"
  4020. ]
  4021. },
  4022. "html/suifang/html/drug_detail.html": {
  4023. "resources": [
  4024. "html/huanzhe/css/base.css",
  4025. "html/suifang/css/drugs.css",
  4026. "html/suifang/images/RP_icon.png"
  4027. ],
  4028. "refer": []
  4029. },
  4030. "html/suifang/html/history_medication.html": {
  4031. "resources": [
  4032. "fonts/mui.ttf",
  4033. "images/shujuweikong_img.png",
  4034. "common/cross/images/logo_dibu_img.png",
  4035. "common/cross/css/cross.ui.css",
  4036. "js/app.js",
  4037. "js/underscore.js",
  4038. "common/iconfont/iconfont.css",
  4039. "js/mui.min.js",
  4040. "js/jquery/2.1.3/jquery.js",
  4041. "css/mui.min.css",
  4042. "common/cross/css/cross.css",
  4043. "js/template.js",
  4044. "js/common_http.js"
  4045. ],
  4046. "refer": [
  4047. "html/suifang/html/drug_detail.html"
  4048. ]
  4049. },
  4050. "html/prescription/html/xufangzixun.html": {
  4051. "resources": [
  4052. "html/prescription/js/base.js",
  4053. "html/prescription/css/yy-qygl.css",
  4054. "html/prescription/css/yy-style.css",
  4055. "html/prescription/css/cross.css",
  4056. "common/cross/css/cross.ui.css",
  4057. "html/js/templateHelp.js",
  4058. "html/js/common.js",
  4059. "common/cross/images/logo_dibu_img.png",
  4060. "js/mui.min.js",
  4061. "js/jquery/2.1.3/jquery.js",
  4062. "common/css/doc-style.css",
  4063. "js/common_http.js",
  4064. "js/template.js"
  4065. ],
  4066. "refer": [
  4067. "html/prescription/html/xufangzixunxiangqing.html",
  4068. "html/error/html/error.html"
  4069. ]
  4070. },
  4071. "html/suifang/html/add_drug.html": {
  4072. "resources": [
  4073. "html/suifang/js/add_drug.js",
  4074. "images/sousuo_icon.png",
  4075. "images/shujuweikong_img.png",
  4076. "html/suifang/css/add-drug.css"
  4077. ],
  4078. "refer": []
  4079. },
  4080. "html/prescription/html/xufangguanli.html": {
  4081. "resources": [
  4082. "fonts/font-awesome/fonts/fontawesome-webfont.woff",
  4083. "html/prescription/images/icon_sousuo.png",
  4084. "fonts/mui.ttf",
  4085. "html/prescription/images/checked_blue.png",
  4086. "fonts/font-awesome/css/font-awesome.min.css",
  4087. "html/prescription/js/xufangguanli.js",
  4088. "html/prescription/css/xufangguanli.css",
  4089. "common/cross/css/cross.ui.css",
  4090. "common/cross/css/cross.css",
  4091. "common/cross/images/logo_dibu_img.png",
  4092. "js/es6-promise.js",
  4093. "js/underscore.js",
  4094. "js/mui.min.js",
  4095. "js/jquery/2.1.3/jquery.js",
  4096. "css/mui.min.css",
  4097. "images/shujuweikong_img.png",
  4098. "js/template.js",
  4099. "js/common_http.js"
  4100. ],
  4101. "refer": [
  4102. "html/prescription/html/xufangxiangqing.html",
  4103. "html/prescription/html/xufangsousuo.html"
  4104. ]
  4105. },
  4106. "html/prescription/html/xufangxiangqing.html": {
  4107. "resources": [
  4108. "html/prescription/images/RP_icon.png",
  4109. "html/prescription/images/jumingxinxi_icon.png",
  4110. "html/huanzhe/css/base.css",
  4111. "html/prescription/images/huidajuming_btn.png",
  4112. "widget/mobiscroll/2.17.1/js/mobiscroll.js",
  4113. "html/prescription/images/yuanchufangjilu_icon.png",
  4114. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  4115. "html/prescription/images/dhenhejilu_icon.png",
  4116. "html/prescription/images/jr-rop.png",
  4117. "html/prescription/css/xufangxiangqing.css",
  4118. "html/prescription/images/linchuanzhenduan_icon.png",
  4119. "html/prescription/images/xunfangxinxi_icon.png",
  4120. "html/prescription/js/xufangxiangqing.js",
  4121. "html/prescription/images/ca.png",
  4122. "widget/artDialog/6.0.5/js/dialog-plus.min.js",
  4123. "widget/artDialog/6.0.5/css/ui-dialog.min.css",
  4124. "common/cross/css/cross.ui.css",
  4125. "common/cross/images/logo_dibu_img.png",
  4126. "js/underscore.js",
  4127. "js/mui.min.js",
  4128. "js/jquery/2.1.3/jquery.js",
  4129. "css/mui.min.css",
  4130. "js/template.js",
  4131. "js/common_http.js"
  4132. ],
  4133. "refer": [
  4134. "html/prescription/html/shenfenrenzheng.html",
  4135. "html/message/html/xufangzixun.html",
  4136. "html/prescription/html/change-chufang2.html"
  4137. ]
  4138. },
  4139. "html/prescription/html/xufangzixunxiangqing.html": {
  4140. "resources": [
  4141. "widget/iscroll/5.1.3/js/iscroll.js",
  4142. "html/js/l-img-view.js",
  4143. "html/js/l-scroll.css",
  4144. "html/prescription/css/xufangzixunxiangqing.css",
  4145. "html/message/images/xitongtixing_im_icon.png",
  4146. "html/css/chatroom.css",
  4147. "js/underscore.js",
  4148. "js/mui.zoom.js",
  4149. "html/prescription/js/xufangzixunxiangqing.js",
  4150. "html/js/service.js",
  4151. "html/prescription/images/gerenxinxi_pre.png",
  4152. "html/prescription/images/shouqi_icon.png",
  4153. "js/mui.previewimage.js",
  4154. "css/mui.previmg.css",
  4155. "html/js/l-scroll.js",
  4156. "common/cross/css/cross.ui.css",
  4157. "html/js/common.js",
  4158. "js/mui.min.js",
  4159. "js/jquery/2.1.3/jquery.js",
  4160. "js/template.js",
  4161. "js/app.js",
  4162. "common/cross/css/cross.css",
  4163. "common/cross/images/logo_dibu_img.png",
  4164. "css/mui.min.css",
  4165. "js/common_http.js",
  4166. "js/im.client.js",
  4167. "html/prescription/css/yy-style.css"
  4168. ],
  4169. "refer": [
  4170. "html/message/html/xufangzixun.html",
  4171. "html/message/html/questionaires.html",
  4172. "html/suifang/html/follow_way.html",
  4173. "html/suifang/html/fvDetail.html",
  4174. "html/prescription/html/xufangxiangqing.html",
  4175. "html/message/html/wenjuan.html",
  4176. "html/huanzhe/html/huanzhexinxi.html"
  4177. ]
  4178. },
  4179. "html/message/html/questionaires.html": {
  4180. "resources": [
  4181. "html/message/js/template_gxy.js",
  4182. "widget/mobiscroll/2.17.1/css/mobiscroll.css",
  4183. "css/cross.ui.css",
  4184. "css/cross.css",
  4185. "html/message/js/questionaires.js",
  4186. "html/message/css/mf-style.css",
  4187. "js/mui.min.js",
  4188. "js/jquery/2.1.3/jquery.js",
  4189. "js/common_http.js",
  4190. "js/template.js",
  4191. "html/suifang/css/mobiscroll_numpad.css",
  4192. "html/suifang/js/mobiscroll-2.17.1.js",
  4193. "common/cross/css/cross.ui.css",
  4194. "common/cross/css/cross.css",
  4195. "common/cross/images/logo_dibu_img.png",
  4196. "html/suifang/images/backspace.png"
  4197. ],
  4198. "refer": []
  4199. },
  4200. "html/prescription/html/xufangxiaoxi.html": {
  4201. "refer": [
  4202. "html/message/html/xufangzixun.html",
  4203. "html/error/html/error.html",
  4204. "html/login/html/login.html"
  4205. ],
  4206. "resources": []
  4207. },
  4208. "html/message/html/wenjuan.html": {
  4209. "refer": [
  4210. "html/message/html/questionaires.html"
  4211. ],
  4212. "resources": []
  4213. },
  4214. "html/prescription/html/change-chufang2.html": {
  4215. "refer": [
  4216. "html/prescription/html/linchuangzhenduan.html"
  4217. ],
  4218. "resources": []
  4219. },
  4220. "html/mine/html/worktime.html": {
  4221. "refer": [
  4222. "html/mine/html/gongzuoshezhi.html"
  4223. ],
  4224. "resources": []
  4225. },
  4226. "html/xtfw/html/xietongfuwu-management.html": {
  4227. "refer": [
  4228. "html/xtfw/html/xietongfuwu-search.html",
  4229. "html/xtfw/html/xietongfuwu-detail.html"
  4230. ],
  4231. "resources": []
  4232. },
  4233. "html/xtfw/html/xietongfuwu-search.html": {
  4234. "refer": [
  4235. "html/xtfw/html/xietongfuwu-detail.html"
  4236. ],
  4237. "resources": []
  4238. },
  4239. "html/xtfw/html/xietongfuwu-detail.html": {
  4240. "refer": [
  4241. "html/wdyy/html/appointment-register.html",
  4242. "html/xtfw/html/xietongfuwu-deal.html"
  4243. ],
  4244. "resources": []
  4245. },
  4246. "html/xtfw/html/xietongfuwu-yy.html": {
  4247. "refer": [
  4248. "html/xtfw/html/xietongfuwu-deal.html",
  4249. "html/error/html/error.html"
  4250. ],
  4251. "resources": []
  4252. },
  4253. "html/xtfw/html/xietongfuwu-message.html": {
  4254. "refer": [
  4255. "html/error/html/error.html",
  4256. "html/xtfw/html/xietongfuwu-detail.html"
  4257. ],
  4258. "resources": []
  4259. },
  4260. "html/home/html/jianjiaotuisong.html": {
  4261. "refer": [
  4262. "html/error/html/error.html",
  4263. "html/home/html/jianjiaotuisong-xiangqing.html",
  4264. "html/home/html/tuisong_duixiang.html",
  4265. "html/home/html/jianjiaotuisong-yituisong.html"
  4266. ],
  4267. "resources": []
  4268. },
  4269. "html/home/html/jianjiaotuisong-xiangqing.html": {
  4270. "refer": [
  4271. "html/home/html/tuisong_duixiang.html"
  4272. ],
  4273. "resources": []
  4274. },
  4275. "html/mbgl/html/manbingguanli.html": {
  4276. "refer": [
  4277. "html/mbgl/html/manbingjumin.html",
  4278. "html/mbgl/html/yujingshezhi.html",
  4279. "html/mbgl/html/jc-xuanzejumin.html"
  4280. ],
  4281. "resources": []
  4282. },
  4283. "html/mbgl/html/manbingjumin.html": {
  4284. "refer": [
  4285. "html/mbgl/html/juminsousuo.html",
  4286. "html/huanzhe/html/huanzhexinxi.html"
  4287. ],
  4288. "resources": []
  4289. },
  4290. "html/mbgl/html/jc-xuanzefangan.html": {
  4291. "refer": [
  4292. "html/mbgl/html/jc-addxuetang.html"
  4293. ],
  4294. "resources": []
  4295. },
  4296. "html/mbgl/html/jc-xuanzejumin.html": {
  4297. "refer": [
  4298. "html/mbgl/html/jc-xuanzefangan.html"
  4299. ],
  4300. "resources": []
  4301. },
  4302. "html/tuandui/html/tuanduisuifangxiangqing.html": {
  4303. "refer": [
  4304. "html/tuandui/html/gerensuifangxiangqing.html"
  4305. ],
  4306. "resources": []
  4307. },
  4308. "html/tuandui/html/gongzuobaogao.html": {
  4309. "refer": [
  4310. "html/tuandui/html/tuanduisuifangxiangqing.html"
  4311. ],
  4312. "resources": []
  4313. },
  4314. "html/manager/html/prescription-analysis.html": {
  4315. "refer": [
  4316. "html/manager/html/prescription-shaixuan.html"
  4317. ],
  4318. "resources": []
  4319. },
  4320. "html/qygl/html/patient-manage.html": {
  4321. "refer": [
  4322. "html/huanzhe/html/huanzhexinxi.html",
  4323. "html/qygl/html/xieyishu.html"
  4324. ],
  4325. "resources": [
  4326. "html/js/expensesUpdate.js"
  4327. ]
  4328. },
  4329. "html/jkjy/html/article-store.html": {
  4330. "resources": [
  4331. "html/jkjy/html/article-list.html"
  4332. ],
  4333. "refer": [
  4334. "html/jkjy/html/article-list.html"
  4335. ]
  4336. },
  4337. "html/jkjy/html/shenhexiaoxi.html": {
  4338. "refer": [
  4339. "html/error/html/error.html",
  4340. "html/jkjy/html/article-edit.html",
  4341. "html/jkjy/html/myArticle.html",
  4342. "html/login/html/login.html"
  4343. ],
  4344. "resources": []
  4345. },
  4346. "html/jkjy/html/article-list.html": {
  4347. "refer": [
  4348. "html/jkjy/html/myArticle.html"
  4349. ],
  4350. "resources": []
  4351. },
  4352. "html/kfgl/html/denizen.html": {
  4353. "refer": [
  4354. "html/jkjl/html/health-record.html",
  4355. "html/kfgl/html/denizen-info.html",
  4356. "html/mbgl/html/jumin-manbingdangan.html"
  4357. ],
  4358. "resources": []
  4359. },
  4360. "html/kfgl/html/denizen-info.html": {
  4361. "refer": [
  4362. "html/qygl/html/xieyishu.html"
  4363. ],
  4364. "resources": []
  4365. },
  4366. "html/home/html/huanzhe-specal.html": {
  4367. "refer": [
  4368. "html/kfgl/html/denizen.html",
  4369. "html/login/html/login.html"
  4370. ],
  4371. "resources": []
  4372. },
  4373. "html/manager/html/qianyuetongji-new.html": {
  4374. "resources": [
  4375. "html/manager/images/yiwen_icon.png",
  4376. "html/manager/js/qianyuetongji-new.js",
  4377. "html/manager/js/echarts.min.js",
  4378. "fonts/mui.ttf",
  4379. "html/manager/images/paiming_2_icon.png",
  4380. "html/manager/images/paiming_4_icon.png",
  4381. "fonts/font-awesome/css/font-awesome.min.css",
  4382. "html/manager/css/common.css",
  4383. "js/es6-promise.js",
  4384. "js/underscore.js",
  4385. "fonts/font-awesome/fonts/fontawesome-webfont.woff",
  4386. "html/manager/images/dizhi_icon.png",
  4387. "html/manager/images/paiming_1_icon.png",
  4388. "html/manager/images/paiming_3_icon.png",
  4389. "html/manager/images/hanbaobao_icon.png",
  4390. "common/cross/css/cross.ui.css",
  4391. "js/app.js",
  4392. "common/cross/css/cross.css",
  4393. "common/cross/images/logo_dibu_img.png",
  4394. "js/mui.min.js",
  4395. "js/jquery/2.1.3/jquery.js",
  4396. "html/manager/images/guanbi_01_btn.png",
  4397. "css/mui.min.css",
  4398. "js/waterbubble.js",
  4399. "js/template.js",
  4400. "js/common_http.js"
  4401. ],
  4402. "refer": [
  4403. "html/manager/html/shaixuan2.html",
  4404. "html/manager/html/qianyuetongji-online.html"
  4405. ]
  4406. },
  4407. "html/mine/html/xiaoxitongzhishezhi.html": {
  4408. "resources": [
  4409. "html/mine/js/xiaoxituisongshezhil.js"
  4410. ],
  4411. "refer": []
  4412. },
  4413. "html/manager/html/qianyuetongji-online.html": {
  4414. "resources": [
  4415. "html/manager/js/echarts.common.min.js",
  4416. "html/manager/js/qianyuetongji-online.js"
  4417. ],
  4418. "refer": [
  4419. "html/manager/html/shaixuan2.html"
  4420. ]
  4421. }
  4422. }