.confirmed_dependencies 134 KB

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