pages.json 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
  4. //"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue",
  5. "^vue-file-(.*)": "packageName/path/to/vue-file-$1.vue", // 匹配node_modules内的vue文件
  6. "^z-(.*)": "@/uni_modules/zebra-swiper/components/z-$1/z-$1.vue"
  7. },
  8. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  9. {
  10. "path": "pages/common/launch",
  11. "style": {
  12. "navigationBarBackgroundColor": "#ffffff",
  13. "navigationBarTitleText": ""
  14. }
  15. },
  16. {
  17. "path": "pages/index/index",
  18. "aliasPath": "/",
  19. "name": "home",
  20. "style": {
  21. "navigationBarBackgroundColor": "#FF233C",
  22. "navigationBarTextStyle": "black",
  23. "scrollIndicator": "none",
  24. "navigationBarTitleText": "",
  25. "enablePullDownRefresh": false,
  26. "backgroundColor": "#f7f7f7",
  27. "backgroundColorTop": "#ffffff",
  28. "bounce": "none",
  29. "titleNView": false,
  30. "navigationStyle": "custom"
  31. }
  32. },
  33. {
  34. "path": "pages/index/course",
  35. "aliasPath": "/",
  36. "name": "home",
  37. "style": {
  38. "navigationBarBackgroundColor": "#FF233C",
  39. "navigationBarTextStyle": "black",
  40. "scrollIndicator": "none",
  41. "navigationBarTitleText": "",
  42. "enablePullDownRefresh": false,
  43. "backgroundColor": "#f7f7f7",
  44. "backgroundColorTop": "#ffffff",
  45. "bounce": "none",
  46. "titleNView": false,
  47. "navigationStyle": "custom"
  48. }
  49. },
  50. {
  51. "path": "pages/index/homePageSearch",
  52. "style": {
  53. "navigationBarTitleText": "搜索",
  54. "enablePullDownRefresh": false
  55. }
  56. },
  57. {
  58. "path": "pages/index/video",
  59. "aliasPath": "/",
  60. "name": "home",
  61. "style": {
  62. "navigationBarBackgroundColor": "#FF233C",
  63. "navigationBarTextStyle": "black",
  64. "scrollIndicator": "none",
  65. "navigationBarTitleText": "",
  66. "enablePullDownRefresh": false,
  67. "backgroundColor": "#f7f7f7",
  68. "backgroundColorTop": "#ffffff",
  69. "bounce": "none",
  70. "titleNView": false,
  71. "navigationStyle": "custom"
  72. }
  73. },
  74. {
  75. "path": "pages/auth/login",
  76. "aliasPath": "/",
  77. "name": "login",
  78. "meta": {
  79. "title": "登录"
  80. },
  81. "style": {
  82. "navigationBarTitleText": "登录",
  83. "navigationBarTextStyle": "black",
  84. "titleNView": false,
  85. "navigationStyle": "custom",
  86. "app-plus": {
  87. "popGesture": "none", //"close"(启用侧滑返回)、"none"(禁用侧滑返回)
  88. "bounce": "none" //页面回弹效果,设置为 "none" 时关闭效果。
  89. }
  90. }
  91. },
  92. {
  93. "path": "pages/shopping/index",
  94. "style": {
  95. "navigationBarTitleText": "商城",
  96. "navigationStyle": "custom",
  97. "enablePullDownRefresh": false
  98. }
  99. },
  100. {
  101. "path": "pages/user/index",
  102. "style": {
  103. "navigationBarTitleText": "我的",
  104. "navigationStyle": "custom",
  105. "app-plus": {
  106. "titleNView": false
  107. }
  108. }
  109. },
  110. {
  111. "path": "pages/shopping/productDetails",
  112. "style": {
  113. "navigationBarTitleText": "产品详情",
  114. "enablePullDownRefresh": false
  115. }
  116. },
  117. {
  118. "path": "pages/shopping/cart",
  119. "style": {
  120. "navigationBarTitleText": "购物车",
  121. "enablePullDownRefresh": false
  122. }
  123. },
  124. {
  125. "path": "pages/shopping/confirmOrder",
  126. "style": {
  127. "navigationBarTitleText": "确认订单",
  128. "enablePullDownRefresh": false
  129. }
  130. },
  131. {
  132. "path": "pages/shopping/paymentOrder",
  133. "style": {
  134. "navigationBarTitleText": "去支付",
  135. "enablePullDownRefresh": false
  136. }
  137. },
  138. {
  139. "path": "pages/shopping/payOrder",
  140. "style": {
  141. "navigationBarTitleText": "推荐服务支付",
  142. "enablePullDownRefresh": false
  143. }
  144. },
  145. {
  146. "path": "pages/shopping/success",
  147. "style": {
  148. "navigationBarTitleText": "支付成功",
  149. "enablePullDownRefresh": false
  150. }
  151. },
  152. {
  153. "path": "pages/auth/wechatList",
  154. "style": {
  155. "navigationBarTitleText": "微信选择",
  156. "navigationBarTextStyle": "black",
  157. "app-plus": {
  158. "popGesture": "none",
  159. "bounce": "none"
  160. }
  161. }
  162. },
  163. {
  164. "path": "pages/auth/loginIndex",
  165. "style": {
  166. "navigationBarTitleText": "登录",
  167. "navigationBarTextStyle": "black",
  168. "navigationStyle": "custom",
  169. "app-plus": {
  170. "popGesture": "none",
  171. "bounce": "none"
  172. }
  173. }
  174. },
  175. {
  176. "path": "pages/auth/register",
  177. "aliasPath": "/",
  178. "name": "register",
  179. "meta": {
  180. "title": "用户注册"
  181. },
  182. "style": {
  183. "navigationBarTitleText": "用户注册",
  184. "navigationBarTextStyle": "black",
  185. "enablePullDownRefresh": false
  186. }
  187. },
  188. {
  189. "path": "pages/auth/findpass",
  190. "name": "findpass",
  191. "meta": {
  192. "title": "忘记密码"
  193. },
  194. "style": {
  195. "navigationBarTitleText": "忘记密码",
  196. "navigationBarTextStyle": "black",
  197. "enablePullDownRefresh": false
  198. }
  199. },
  200. {
  201. "path": "pages/auth/bindMobile",
  202. "name": "bindMobile",
  203. "meta": {
  204. "title": "绑定手机号"
  205. },
  206. "style": {
  207. "navigationBarTitleText": "绑定手机号",
  208. "navigationBarTextStyle": "black",
  209. "enablePullDownRefresh": false,
  210. "navigationStyle": "custom",
  211. "backgroundColor": "#ffffff",
  212. "bounce": "none"
  213. }
  214. },
  215. {
  216. "path": "pages/course/index",
  217. "style": {
  218. // "navigationBarBackgroundColor": "#FF233C",
  219. "navigationBarTextStyle": "black",
  220. "scrollIndicator": "none",
  221. "bounce": "none",
  222. // "titleNView": false,
  223. "navigationBarTitleText": "讲堂",
  224. "enablePullDownRefresh": false,
  225. "backgroundColor": "#f7f7f7",
  226. "backgroundColorTop": "#ffffff",
  227. "navigationStyle": "custom"
  228. }
  229. },
  230. {
  231. "path": "pages/course/learning",
  232. "name": "learning",
  233. "style": {
  234. "navigationBarBackgroundColor": "#FF233C",
  235. "navigationBarTextStyle": "white",
  236. "scrollIndicator": "none",
  237. "bounce": "none",
  238. "titleNView": false,
  239. "navigationBarTitleText": "",
  240. "enablePullDownRefresh": false,
  241. "backgroundColor": "#f7f7f7",
  242. "backgroundColorTop": "#ffffff",
  243. "navigationStyle": "custom"
  244. }
  245. },
  246. {
  247. "path": "pages/course/learningNew",
  248. "name": "learning",
  249. "style": {
  250. "navigationBarTitleText": "在学课程",
  251. "enablePullDownRefresh": false,
  252. "backgroundColor": "#f7f7f7",
  253. "backgroundColorTop": "#ffffff"
  254. }
  255. },
  256. {
  257. "path": "pages/course/famousHall",
  258. "name": "famousHall",
  259. "style": {
  260. "navigationBarBackgroundColor": "#FF233C",
  261. "navigationBarTextStyle": "black",
  262. "scrollIndicator": "none",
  263. "bounce": "none",
  264. "titleNView": false,
  265. "navigationBarTitleText": "",
  266. "enablePullDownRefresh": false,
  267. "backgroundColor": "#f7f7f7",
  268. "backgroundColorTop": "#ffffff",
  269. "navigationStyle": "custom"
  270. }
  271. },
  272. {
  273. "path": "pages/course/info",
  274. "style": {
  275. "navigationBarTitleText": "课程详情",
  276. "navigationBarTextStyle": "black",
  277. "navigationStyle": "custom",
  278. "scrollIndicator": "none",
  279. "bounce": "none",
  280. "titleNView": false,
  281. "enablePullDownRefresh": false,
  282. "backgroundColor": "#f7f7f7",
  283. "backgroundColorTop": "#ffffff",
  284. "app-plus": {
  285. "titleNView": false, //不启用系统导航
  286. "screenOrientation": [
  287. //可选,字符串数组类型,应用支持的横竖屏
  288. "portrait-primary", //可选,字符串类型,支持竖屏
  289. "portrait-secondary", //可选,字符串类型,支持反向竖屏
  290. "landscape-primary", //可选,字符串类型,支持横屏
  291. "landscape-secondary" //可选,字符串类型,支持反向横屏
  292. ],
  293. "subNVues": [
  294. {
  295. "id": "privilege", // 唯一标识
  296. "path": "pages/course/privilege", // 页面路径
  297. "type": "popup",
  298. "style": {
  299. "position": "absolute",
  300. "bottom": "0",
  301. "left": "0",
  302. "width": "100%",
  303. "height": "1150upx",
  304. "mask": "rgba(0,0,0,0.5)",
  305. "background": "transparent",
  306. "border-top-left-radius": "20px",
  307. "border-top-right-radius": "20px"
  308. }
  309. },
  310. {
  311. "id": "commentN", // 唯一标识
  312. "path": "pages/course/commentN", // 页面路径
  313. "type": "popup",
  314. "style": {
  315. "position": "absolute",
  316. "bottom": "0",
  317. "left": "0",
  318. "width": "100%",
  319. "height": "85%",
  320. "mask": "rgba(0,0,0,0.5)",
  321. "background": "transparent",
  322. "border-top-left-radius": "20px",
  323. "border-top-right-radius": "20px"
  324. }
  325. },
  326. {
  327. "id": "catalogueN",
  328. "path": "pages/course/catalogueN",
  329. "type": "popup",
  330. "style": {
  331. "position": "absolute",
  332. "bottom": "0",
  333. "left": "0",
  334. "width": "100%",
  335. "height": "75%",
  336. "mask": "rgba(0,0,0,0.5)",
  337. "background": "transparent",
  338. "border-top-left-radius": "20px",
  339. "border-top-right-radius": "20px"
  340. }
  341. },
  342. {
  343. "id": "videoPopup",
  344. "path": "pages/course/videoPopup", // 配置弹窗
  345. "type": "popup",
  346. "style": {
  347. "position": "absolute",
  348. "bottom": "0",
  349. "left": "0",
  350. "width": "100%",
  351. "height": "100%",
  352. "mask": "rgba(0,0,0,0.6)",
  353. "background": "rgba(0,0,0,0.6)"
  354. }
  355. }
  356. ]
  357. }
  358. }
  359. },
  360. {
  361. "path": "pages/course/introduce",
  362. "style": {
  363. "navigationBarTitleText": "课程简介",
  364. "navigationStyle": "custom",
  365. "scrollIndicator": "none",
  366. "bounce": "none",
  367. "titleNView": false,
  368. "enablePullDownRefresh": false,
  369. "backgroundColor": "#f7f7f7",
  370. "backgroundColorTop": "#ffffff"
  371. }
  372. },
  373. {
  374. "path": "pages/course/vipBuy",
  375. "style": {
  376. "navigationBarTitleText": "乐享韶华会员",
  377. "enablePullDownRefresh": false,
  378. "navigationStyle": "custom",
  379. "backgroundColor": "#1B1F22;",
  380. "navigationBarTextStyle": "black",
  381. "disableSwipeBack": true,
  382. "bounce": "none",
  383. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  384. "app-plus": {
  385. // "animationType": "none", // 设置fade-in淡入动画,为最合理的动画类型
  386. "animationDuration": 0,
  387. "animationType": "fade-in",
  388. "background": "transparent", // 背景透明
  389. "backgroundColor": "#1B1F22", // 背景透明
  390. "webviewBGTransparent": true,
  391. "mask": "none",
  392. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  393. }
  394. }
  395. },
  396. {
  397. "path": "pages/course/comment",
  398. "style": {
  399. "navigationBarTitleText": "评论",
  400. "navigationStyle": "custom",
  401. "scrollIndicator": "none",
  402. "bounce": "none",
  403. "titleNView": false,
  404. "enablePullDownRefresh": false,
  405. "backgroundColor": "#f7f7f7",
  406. "backgroundColorTop": "#ffffff"
  407. }
  408. },
  409. {
  410. "path": "pages/course/noteList",
  411. "style": {
  412. "navigationBarTitleText": "我的笔记",
  413. "navigationBarTextStyle": "black",
  414. // "navigationStyle": "custom",
  415. "scrollIndicator": "none",
  416. "bounce": "none",
  417. // "titleNView": false,
  418. "enablePullDownRefresh": false,
  419. "backgroundColor": "#f7f7f7",
  420. "backgroundColorTop": "#ffffff"
  421. }
  422. },
  423. {
  424. "path": "pages/course/note",
  425. "style": {
  426. "navigationBarTitleText": "笔记",
  427. "navigationStyle": "custom",
  428. "scrollIndicator": "none",
  429. "bounce": "none",
  430. "titleNView": false,
  431. "enablePullDownRefresh": false,
  432. "backgroundColor": "#f7f7f7",
  433. "backgroundColorTop": "#ffffff"
  434. }
  435. },
  436. {
  437. "path": "pages/course/myNote",
  438. "style": {
  439. "navigationBarTitleText": "我的笔记",
  440. "navigationStyle": "custom",
  441. "scrollIndicator": "none",
  442. "bounce": "none",
  443. "titleNView": false,
  444. "enablePullDownRefresh": false,
  445. "backgroundColor": "#f7f7f7",
  446. "backgroundColorTop": "#ffffff"
  447. }
  448. },
  449. {
  450. "path": "pages/course/catalogue",
  451. "style": {
  452. "navigationBarTitleText": "目录",
  453. "navigationStyle": "custom",
  454. "scrollIndicator": "none",
  455. "bounce": "none",
  456. "titleNView": false,
  457. "enablePullDownRefresh": false,
  458. "backgroundColor": "#f7f7f7",
  459. "backgroundColorTop": "#ffffff"
  460. }
  461. },
  462. {
  463. "path": "pages/course/video/living-app",
  464. "style": {
  465. "navigationBarTitleText": "直播",
  466. "navigationStyle": "custom",
  467. "titleNView": false,
  468. "enablePullDownRefresh": false,
  469. "backgroundColor": "#000000",
  470. "backgroundColorTop": "#000000",
  471. "navigationBarTextStyle": "white",
  472. "app-plus": {
  473. "titleNView": false, //不启用系统导航
  474. "subNVues": [
  475. {
  476. "id": "videoComment", // 唯一标识
  477. "path": "pages/course/video/commentN", // 页面路径
  478. "type": "popup",
  479. "style": {
  480. "position": "absolute",
  481. "bottom": "0",
  482. "left": "0",
  483. "width": "100%",
  484. "height": "1150upx",
  485. "mask": "rgba(0,0,0,0.5)",
  486. "background": "transparent",
  487. "border-top-left-radius": "20px",
  488. "border-top-right-radius": "20px"
  489. }
  490. }
  491. ]
  492. }
  493. }
  494. },
  495. {
  496. "path": "pages/course/video/living-app1",
  497. "style": {
  498. "navigationBarTitleText": "短视频",
  499. "navigationStyle": "custom",
  500. "titleNView": false,
  501. "enablePullDownRefresh": false,
  502. "backgroundColor": "#000000",
  503. "backgroundColorTop": "#000000",
  504. "navigationBarTextStyle": "white",
  505. "app-plus": {
  506. "titleNView": false, //不启用系统导航
  507. "subNVues": [
  508. {
  509. "id": "videoComment", // 唯一标识
  510. "path": "pages/course/video/commentN", // 页面路径
  511. "type": "popup",
  512. "style": {
  513. "position": "absolute",
  514. "bottom": "0",
  515. "left": "0",
  516. "width": "100%",
  517. "height": "1150upx",
  518. "mask": "rgba(0,0,0,0.5)",
  519. "background": "transparent",
  520. "border-top-left-radius": "20px",
  521. "border-top-right-radius": "20px"
  522. }
  523. }
  524. ]
  525. }
  526. }
  527. },
  528. {
  529. "path": "pages/course/video/living",
  530. "style": {
  531. "navigationBarTitleText": "直播",
  532. "navigationStyle": "custom",
  533. "scrollIndicator": "none",
  534. "bounce": "none",
  535. "titleNView": false,
  536. "enablePullDownRefresh": false,
  537. "backgroundColor": "#f7f7f7",
  538. "backgroundColorTop": "#ffffff"
  539. }
  540. },
  541. {
  542. "path": "pages/course/video/video",
  543. "style": {
  544. "navigationBarTitleText": "视频",
  545. "navigationStyle": "custom",
  546. "scrollIndicator": "none",
  547. "bounce": "none"
  548. }
  549. },
  550. {
  551. "path": "pages/course/video/livingApp",
  552. "style": {
  553. "navigationBarTitleText": "直播",
  554. "navigationStyle": "custom",
  555. "titleNView": false,
  556. "enablePullDownRefresh": false,
  557. "backgroundColor": "#000000",
  558. "backgroundColorTop": "#000000",
  559. "navigationBarTextStyle": "white"
  560. }
  561. },
  562. {
  563. "path": "pages/course/video/fullVideo",
  564. "style": {
  565. "navigationBarTitleText": "横屏播放",
  566. "enablePullDownRefresh": false,
  567. "navigationStyle": "custom",
  568. "disableSwipeBack": true,
  569. "backgroundColor": "#000000",
  570. "titleNView": true,
  571. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  572. "app-plus": {
  573. // "animationType": "none", // 设置fade-in淡入动画,为最合理的动画类型
  574. "animationDuration": 0,
  575. "animationType": "fade-in",
  576. "background": "transparent", // 背景透明
  577. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  578. "webviewBGTransparent": true,
  579. "mask": "none",
  580. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  581. }
  582. }
  583. },
  584. {
  585. "path": "pages/course/video/comment",
  586. "style": {
  587. "navigationBarTitleText": "视频评论",
  588. "navigationStyle": "custom",
  589. "titleNView": false,
  590. "enablePullDownRefresh": false,
  591. "navigationBarTextStyle": "white"
  592. }
  593. },
  594. {
  595. "path": "pages/course/video/living-applet",
  596. "style": {
  597. "navigationBarTitleText": "短视频",
  598. "navigationStyle": "custom",
  599. "enablePullDownRefresh": true
  600. }
  601. },
  602. {
  603. "path": "pages/course/video/living-app-searchInfo",
  604. "style": {
  605. "navigationBarTitleText": "短视频",
  606. "navigationStyle": "custom",
  607. "titleNView": false,
  608. "enablePullDownRefresh": false,
  609. "backgroundColor": "#000000",
  610. "backgroundColorTop": "#000000",
  611. "navigationBarTextStyle": "white",
  612. "app-plus": {
  613. "titleNView": false, //不启用系统导航
  614. "subNVues": [
  615. {
  616. "id": "videoCommentSearch", // 唯一标识
  617. "path": "pages/course/video/commentN", // 页面路径
  618. "type": "popup",
  619. "style": {
  620. "position": "absolute",
  621. "bottom": "0",
  622. "left": "0",
  623. "width": "100%",
  624. "height": "1150upx",
  625. "mask": "rgba(0,0,0,0.5)",
  626. "background": "transparent",
  627. "border-top-left-radius": "20px",
  628. "border-top-right-radius": "20px"
  629. }
  630. }
  631. ]
  632. }
  633. }
  634. },
  635. {
  636. "path": "pages/course/video/videoUni",
  637. "aliasPath": "/",
  638. "name": "videoUni",
  639. "style": {
  640. "navigationBarTitleText": "videoUni",
  641. "enablePullDownRefresh": false,
  642. "navigationStyle": "custom",
  643. "disableSwipeBack": true,
  644. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  645. "app-plus": {
  646. // "animationType": "none", // 设置fade-in淡入动画,为最合理的动画类型
  647. "animationDuration": 0,
  648. "animationType": "fade-in",
  649. "background": "transparent", // 背景透明
  650. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  651. "webviewBGTransparent": true,
  652. "mask": "none",
  653. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  654. }
  655. }
  656. },
  657. {
  658. "path": "pages/course/video/play",
  659. "aliasPath": "/",
  660. "name": "videoPlay",
  661. "style": {
  662. "navigationBarTitleText": "横屏播放",
  663. "enablePullDownRefresh": false,
  664. "navigationStyle": "custom",
  665. "disableSwipeBack": true,
  666. "backgroundColor": "#000000",
  667. "titleNView": false,
  668. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  669. "app-plus": {
  670. "animationDuration": 0,
  671. "animationType": "fade-in",
  672. "background": "transparent", // 背景透明
  673. "backgroundColor": "rgba (0,0,0,0)", // 背景透明
  674. "webviewBGTransparent": true,
  675. "mask": "none",
  676. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  677. }
  678. }
  679. },
  680. {
  681. "path": "pages/course/video/search",
  682. "style": {
  683. "navigationBarTitleText": "搜索",
  684. "enablePullDownRefresh": false
  685. }
  686. },
  687. {
  688. "path": "pages/course/video/live",
  689. "style": {
  690. "navigationBarTitleText": "健康直播",
  691. "enablePullDownRefresh": false,
  692. "navigationStyle": "custom"
  693. }
  694. },
  695. {
  696. "path": "pages/course/video/liveDetail",
  697. "style": {
  698. "navigationBarTitleText": "直播详情",
  699. "enablePullDownRefresh": false
  700. }
  701. },
  702. {
  703. "path": "pages/course/video/play2",
  704. "style": {
  705. "navigationBarTitleText": "横屏播放",
  706. "enablePullDownRefresh": false,
  707. "navigationStyle": "custom",
  708. "disableSwipeBack": true,
  709. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  710. "app-plus": {
  711. // "animationType": "none", // 设置fade-in淡入动画,为最合理的动画类型
  712. "animationDuration": 0,
  713. "animationType": "fade-in",
  714. "background": "transparent", // 背景透明
  715. "backgroundColor": "#000", // 背景透明
  716. "webviewBGTransparent": true,
  717. "mask": "none",
  718. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  719. }
  720. }
  721. },
  722. {
  723. "path": "pages/course/video/playClose",
  724. "style": {
  725. "navigationBarTitleText": "横屏播放",
  726. "enablePullDownRefresh": false,
  727. "navigationStyle": "custom",
  728. "disableSwipeBack": true,
  729. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  730. "app-plus": {
  731. "animationDuration": 0,
  732. "animationType": "fade-in",
  733. "background": "transparent", // 背景透明
  734. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  735. "webviewBGTransparent": true,
  736. "mask": "none",
  737. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  738. }
  739. }
  740. },
  741. {
  742. "path": "pages/course/studyCenter/courseCollect",
  743. "style": {
  744. "navigationBarTitleText": "课程收藏",
  745. "navigationBarTextStyle": "black",
  746. "navigationBarBackgroundColor": "#ffffff",
  747. "app-plus": {
  748. "titleNView": {
  749. "buttons": [
  750. {
  751. "fontSize": "15px",
  752. "width": "60px",
  753. "text": "管理"
  754. }
  755. ]
  756. }
  757. }
  758. }
  759. },
  760. {
  761. "path": "pages/course/studyCenter/orderList",
  762. "style": {
  763. "navigationBarTitleText": "我的订单",
  764. "navigationBarTextStyle": "black",
  765. "navigationBarBackgroundColor": "#ffffff"
  766. }
  767. },
  768. {
  769. "path": "pages/index/search",
  770. "style": {
  771. "navigationBarTitleText": "搜索",
  772. "navigationStyle": "custom",
  773. "scrollIndicator": "none",
  774. "bounce": "none",
  775. "titleNView": false,
  776. "enablePullDownRefresh": false,
  777. "backgroundColor": "#f7f7f7",
  778. "backgroundColorTop": "#ffffff"
  779. }
  780. },
  781. {
  782. "path": "pages/index/specialist-appointment",
  783. "style": {
  784. "navigationBarTitleText": "专家约诊",
  785. "navigationStyle": "custom",
  786. "scrollIndicator": "none",
  787. "bounce": "none",
  788. "titleNView": false,
  789. "enablePullDownRefresh": false,
  790. "backgroundColor": "#f7f7f7",
  791. "backgroundColorTop": "#ffffff"
  792. }
  793. },
  794. {
  795. "path": "pages/index/h5",
  796. "style": {
  797. "navigationBarTextStyle": "black",
  798. "scrollIndicator": "none",
  799. "bounce": "none",
  800. "enablePullDownRefresh": false,
  801. "backgroundColor": "#f7f7f7",
  802. "backgroundColorTop": "#ffffff"
  803. }
  804. },
  805. {
  806. "path": "pages/user/index",
  807. "aliasPath": "/",
  808. "name": "mine",
  809. "style": {
  810. "navigationBarBackgroundColor": "#FF233C",
  811. "navigationBarTextStyle": "black",
  812. "scrollIndicator": "none",
  813. "bounce": "none",
  814. "titleNView": false,
  815. "navigationBarTitleText": "",
  816. "enablePullDownRefresh": false,
  817. "backgroundColor": "#f7f7f7",
  818. "backgroundColorTop": "#ffffff",
  819. "navigationStyle": "custom"
  820. }
  821. },
  822. {
  823. "path": "pages/store/inquirySelectType",
  824. "style": {
  825. "navigationBarTitleText": "会诊通道",
  826. "enablePullDownRefresh": false,
  827. "navigationBarBackgroundColor": "#ffffff",
  828. "navigationBarTextStyle": "black"
  829. }
  830. },
  831. {
  832. "path": "pages/store/inquiryForm2_1",
  833. "style": {
  834. "navigationBarTitleText": "症状描述",
  835. "enablePullDownRefresh": false,
  836. "navigationBarBackgroundColor": "#ffffff",
  837. "navigationBarTextStyle": "black"
  838. }
  839. },
  840. {
  841. "path": "pages/store/inquiryForm2_2",
  842. "style": {
  843. "navigationBarTitleText": "症状描述",
  844. "enablePullDownRefresh": false,
  845. "navigationBarBackgroundColor": "#ffffff",
  846. "navigationBarTextStyle": "black"
  847. }
  848. },
  849. {
  850. "path": "pages/store/inquirySelect",
  851. "style": {
  852. "navigationBarTitleText": "问诊选择",
  853. "enablePullDownRefresh": false,
  854. "navigationBarBackgroundColor": "#ffffff",
  855. "navigationBarTextStyle": "black"
  856. }
  857. },
  858. {
  859. "path": "pages/store/inquiryForm1",
  860. "style": {
  861. "navigationBarTitleText": "症状描述",
  862. "enablePullDownRefresh": false,
  863. "navigationBarBackgroundColor": "#ffffff",
  864. "navigationBarTextStyle": "black"
  865. }
  866. },
  867. {
  868. "path": "pages/store/inquiryForm3",
  869. "style": {
  870. "navigationBarTitleText": "症状描述",
  871. "enablePullDownRefresh": false,
  872. "navigationBarBackgroundColor": "#ffffff",
  873. "navigationBarTextStyle": "black"
  874. }
  875. },
  876. {
  877. "path": "pages/doctor/doctorList",
  878. "style": {
  879. "navigationBarTitleText": "医生列表",
  880. "enablePullDownRefresh": false,
  881. "navigationBarBackgroundColor": "#ffffff",
  882. "navigationBarTextStyle": "black"
  883. }
  884. },
  885. {
  886. "path": "pages/doctor/doctorDetails",
  887. "style": {
  888. "navigationBarTitleText": "医生详情",
  889. "enablePullDownRefresh": false,
  890. "navigationBarBackgroundColor": "#ffffff",
  891. "navigationBarTextStyle": "black"
  892. }
  893. },
  894. {
  895. "path": "pages/store/inquiryPay",
  896. "style": {
  897. "navigationBarTitleText": "支付订单",
  898. "enablePullDownRefresh": false,
  899. "navigationBarBackgroundColor": "#ffffff",
  900. "navigationBarTextStyle": "black"
  901. }
  902. },
  903. {
  904. "path": "pages/store/inquiryOrderPaySuccess",
  905. "style": {
  906. "navigationBarTitleText": "支付结果",
  907. "enablePullDownRefresh": false,
  908. "navigationBarBackgroundColor": "#ffffff",
  909. "navigationBarTextStyle": "black"
  910. }
  911. },
  912. {
  913. "path": "pages/store/inquiryOrderList",
  914. "style": {
  915. "navigationBarTitleText": "我的问诊",
  916. "enablePullDownRefresh": false,
  917. "navigationBarBackgroundColor": "#ffffff",
  918. "navigationBarTextStyle": "black"
  919. }
  920. },
  921. {
  922. "path": "pages/store/inquiryOrderDetails",
  923. "style": {
  924. "navigationBarTitleText": "订单详情",
  925. "enablePullDownRefresh": false,
  926. "navigationBarBackgroundColor": "#ffffff",
  927. "navigationBarTextStyle": "black"
  928. }
  929. },
  930. {
  931. "path": "pages/store/storeOrderList",
  932. "style": {
  933. "navigationBarTitleText": "我的订单",
  934. "enablePullDownRefresh": false,
  935. "navigationBarBackgroundColor": "#ffffff",
  936. "navigationBarTextStyle": "black"
  937. }
  938. },
  939. {
  940. "path": "pages/store/storeOrderDetail",
  941. "style": {
  942. "navigationBarTitleText": "订单详情",
  943. "enablePullDownRefresh": false,
  944. "navigationBarBackgroundColor": "#FF233C",
  945. "navigationBarTextStyle": "white"
  946. }
  947. },
  948. {
  949. "path": "pages/store/storeOrderPay",
  950. "style": {
  951. "navigationBarTitleText": "订单支付",
  952. "enablePullDownRefresh": false,
  953. "navigationBarBackgroundColor": "#ffffff",
  954. "navigationBarTextStyle": "black"
  955. }
  956. },
  957. {
  958. "path": "pages/store/storeOrderPaySuccess",
  959. "style": {
  960. "navigationBarTitleText": "支付结果",
  961. "enablePullDownRefresh": false,
  962. "navigationBarBackgroundColor": "#ffffff",
  963. "navigationBarTextStyle": "black"
  964. }
  965. },
  966. {
  967. "path": "pages/user/myDoctorList",
  968. "style": {
  969. "navigationBarTitleText": "我的医生",
  970. "enablePullDownRefresh": false,
  971. "navigationBarBackgroundColor": "#ffffff",
  972. "navigationBarTextStyle": "black"
  973. }
  974. },
  975. {
  976. "path": "pages/store/prescribeList",
  977. "style": {
  978. "navigationBarTitleText": "我的处方",
  979. "enablePullDownRefresh": false,
  980. "navigationBarBackgroundColor": "#ffffff",
  981. "navigationBarTextStyle": "black"
  982. }
  983. },
  984. {
  985. "path": "pages/store/prescribeDetails",
  986. "style": {
  987. "navigationBarTitleText": "处方详情",
  988. "enablePullDownRefresh": false,
  989. "navigationBarBackgroundColor": "#ffffff",
  990. "navigationBarTextStyle": "black"
  991. }
  992. },
  993. {
  994. "path": "pages/user/followList",
  995. "style": {
  996. "navigationBarTitleText": "我的随访",
  997. "enablePullDownRefresh": false,
  998. "navigationBarBackgroundColor": "#ffffff",
  999. "navigationBarTextStyle": "black"
  1000. }
  1001. },
  1002. {
  1003. "path": "pages/user/feedback",
  1004. "style": {
  1005. "navigationBarTitleText": "投诉建议",
  1006. "enablePullDownRefresh": false,
  1007. "navigationBarBackgroundColor": "#f7f7f7",
  1008. "navigationBarTextStyle": "black",
  1009. "h5": {
  1010. "titleNView": false
  1011. }
  1012. }
  1013. },
  1014. {
  1015. "path": "pages/user/drugReportList",
  1016. "style": {
  1017. "navigationBarTitleText": "用药报告",
  1018. "enablePullDownRefresh": false,
  1019. "navigationBarBackgroundColor": "#ffffff",
  1020. "navigationBarTextStyle": "black"
  1021. }
  1022. },
  1023. {
  1024. "path": "pages/user/drugReportDetails",
  1025. "style": {
  1026. "navigationBarTitleText": "用药详情",
  1027. "enablePullDownRefresh": false,
  1028. "navigationBarBackgroundColor": "#ffffff",
  1029. "navigationBarTextStyle": "black"
  1030. }
  1031. },
  1032. {
  1033. "path": "pages/user/drugReportPing",
  1034. "style": {
  1035. "navigationBarTitleText": "用药评价",
  1036. "enablePullDownRefresh": false,
  1037. "navigationBarBackgroundColor": "#ffffff",
  1038. "navigationBarTextStyle": "black"
  1039. }
  1040. },
  1041. {
  1042. "path": "pages/user/followDetails",
  1043. "style": {
  1044. "navigationBarTitleText": "随访列表",
  1045. "enablePullDownRefresh": false,
  1046. "navigationBarBackgroundColor": "#ffffff",
  1047. "navigationBarTextStyle": "black"
  1048. }
  1049. },
  1050. {
  1051. "path": "pages/user/doFollow",
  1052. "style": {
  1053. "navigationBarTitleText": "提交随访报告",
  1054. "enablePullDownRefresh": false,
  1055. "navigationBarBackgroundColor": "#ffffff",
  1056. "navigationBarTextStyle": "black"
  1057. }
  1058. },
  1059. {
  1060. "path": "pages/doctor/doctorInfo",
  1061. "style": {
  1062. "navigationBarTitleText": "医生详情",
  1063. "enablePullDownRefresh": false,
  1064. "navigationBarBackgroundColor": "#FF233C",
  1065. "navigationBarTextStyle": "white"
  1066. }
  1067. },
  1068. {
  1069. "path": "pages/doctor/doctorImgs",
  1070. "style": {
  1071. "navigationBarTitleText": "医生资质证书",
  1072. "enablePullDownRefresh": false,
  1073. "navigationBarBackgroundColor": "#ffffff",
  1074. "navigationBarTextStyle": "black"
  1075. }
  1076. },
  1077. {
  1078. "path": "pages/doctor/doctorPingList",
  1079. "style": {
  1080. "navigationBarTitleText": "医生评价",
  1081. "enablePullDownRefresh": false,
  1082. "navigationBarBackgroundColor": "#ffffff",
  1083. "navigationBarTextStyle": "black"
  1084. }
  1085. },
  1086. {
  1087. "path": "pages/article/questionsList",
  1088. "style": {
  1089. "navigationBarTitleText": "问答专区",
  1090. "enablePullDownRefresh": false,
  1091. "navigationBarBackgroundColor": "#ffffff",
  1092. "navigationBarTextStyle": "black"
  1093. }
  1094. },
  1095. {
  1096. "path": "pages/article/questionsDetails",
  1097. "style": {
  1098. "navigationBarTitleText": "问答专区",
  1099. "enablePullDownRefresh": false,
  1100. "navigationBarBackgroundColor": "#ffffff",
  1101. "navigationBarTextStyle": "black",
  1102. "app-plus": {
  1103. // "titleNView": {
  1104. // "buttons": [{
  1105. // "type": "share"
  1106. // }]
  1107. // }
  1108. }
  1109. }
  1110. },
  1111. {
  1112. "path": "pages/article/medicatedFoodList",
  1113. "style": {
  1114. "navigationBarTitleText": "药膳食疗",
  1115. "enablePullDownRefresh": false,
  1116. "navigationBarBackgroundColor": "#ffffff",
  1117. "navigationBarTextStyle": "black"
  1118. }
  1119. },
  1120. {
  1121. "path": "pages/article/medicatedFoodDetails",
  1122. "style": {
  1123. "navigationBarTitleText": "药膳食疗",
  1124. "enablePullDownRefresh": false,
  1125. "navigationBarBackgroundColor": "#ffffff",
  1126. "navigationBarTextStyle": "black",
  1127. "app-plus": {
  1128. "titleNView": {
  1129. "buttons": [
  1130. {
  1131. "type": "share"
  1132. }
  1133. ]
  1134. }
  1135. }
  1136. }
  1137. },
  1138. {
  1139. "path": "pages/article/vesselList",
  1140. "style": {
  1141. "navigationBarTitleText": "经络穴位",
  1142. "enablePullDownRefresh": false,
  1143. "navigationBarBackgroundColor": "#ffffff",
  1144. "navigationBarTextStyle": "black"
  1145. }
  1146. },
  1147. {
  1148. "path": "pages/article/vesselDetails",
  1149. "style": {
  1150. "navigationBarTitleText": "经络穴位",
  1151. "enablePullDownRefresh": false,
  1152. "navigationBarBackgroundColor": "#ffffff",
  1153. "navigationBarTextStyle": "black",
  1154. "app-plus": {
  1155. "titleNView": {
  1156. "buttons": [
  1157. {
  1158. "type": "share"
  1159. }
  1160. ]
  1161. }
  1162. }
  1163. }
  1164. },
  1165. {
  1166. "path": "pages/article/diseaseList",
  1167. "style": {
  1168. "navigationBarTitleText": "疾病",
  1169. "enablePullDownRefresh": false,
  1170. "navigationBarBackgroundColor": "#ffffff",
  1171. "navigationBarTextStyle": "black"
  1172. }
  1173. },
  1174. {
  1175. "path": "pages/article/diseaseDetails",
  1176. "style": {
  1177. "navigationBarTitleText": "疾病",
  1178. "enablePullDownRefresh": false,
  1179. "navigationBarBackgroundColor": "#ffffff",
  1180. "navigationBarTextStyle": "black",
  1181. "app-plus": {
  1182. "titleNView": {
  1183. "buttons": [
  1184. {
  1185. "type": "share"
  1186. }
  1187. ]
  1188. }
  1189. }
  1190. }
  1191. },
  1192. {
  1193. "path": "pages/article/chineseMedicineList",
  1194. "style": {
  1195. "navigationBarTitleText": "中医图解",
  1196. "enablePullDownRefresh": false,
  1197. "navigationBarBackgroundColor": "#ffffff",
  1198. "navigationBarTextStyle": "black"
  1199. }
  1200. },
  1201. {
  1202. "path": "pages/article/famousPrescribeList",
  1203. "style": {
  1204. "navigationBarTitleText": "名方今用",
  1205. "enablePullDownRefresh": false,
  1206. "navigationBarBackgroundColor": "#ffffff",
  1207. "navigationBarTextStyle": "black"
  1208. }
  1209. },
  1210. {
  1211. "path": "pages/article/famousPrescribeDetails",
  1212. "style": {
  1213. "navigationBarTitleText": "名方今用",
  1214. "enablePullDownRefresh": false,
  1215. "navigationBarBackgroundColor": "#ffffff",
  1216. "navigationBarTextStyle": "black",
  1217. "app-plus": {
  1218. "titleNView": {
  1219. "buttons": [
  1220. {
  1221. "type": "share"
  1222. }
  1223. ]
  1224. }
  1225. }
  1226. }
  1227. },
  1228. {
  1229. "path": "pages/article/chineseMedicineDetails",
  1230. "style": {
  1231. "navigationBarTitleText": "中医图解",
  1232. "enablePullDownRefresh": false,
  1233. "navigationBarBackgroundColor": "#ffffff",
  1234. "navigationBarTextStyle": "black",
  1235. "app-plus": {
  1236. "titleNView": {
  1237. "buttons": [
  1238. {
  1239. "type": "share"
  1240. }
  1241. ]
  1242. }
  1243. }
  1244. }
  1245. },
  1246. {
  1247. "path": "pages/article/articleList",
  1248. "style": {
  1249. "navigationBarTitleText": "养生干货",
  1250. "enablePullDownRefresh": false,
  1251. "navigationBarBackgroundColor": "#ffffff",
  1252. "navigationBarTextStyle": "black"
  1253. }
  1254. },
  1255. {
  1256. "path": "pages/article/articleDetails",
  1257. "style": {
  1258. "navigationBarTitleText": "文章详情",
  1259. "enablePullDownRefresh": false,
  1260. "navigationBarBackgroundColor": "#ffffff",
  1261. "navigationBarTextStyle": "black",
  1262. "app-plus": {
  1263. "titleNView": {
  1264. "buttons": [
  1265. {
  1266. "type": "share"
  1267. }
  1268. ]
  1269. }
  1270. }
  1271. }
  1272. },
  1273. {
  1274. "path": "pages/doctor/doctorArticleList",
  1275. "style": {
  1276. "navigationBarTitleText": "养生讲堂",
  1277. "enablePullDownRefresh": false,
  1278. "navigationBarBackgroundColor": "#ffffff",
  1279. "navigationBarTextStyle": "black"
  1280. }
  1281. },
  1282. {
  1283. "path": "pages/doctor/doctorArticleDetails",
  1284. "style": {
  1285. "navigationBarTitleText": "养生讲堂",
  1286. "enablePullDownRefresh": false,
  1287. "navigationBarBackgroundColor": "#ffffff",
  1288. "navigationBarTextStyle": "black",
  1289. "app-plus": {
  1290. "titleNView": {
  1291. "buttons": [
  1292. {
  1293. "type": "share"
  1294. }
  1295. ]
  1296. }
  1297. }
  1298. }
  1299. },
  1300. {
  1301. "path": "pages/article/testList",
  1302. "style": {
  1303. "navigationBarTitleText": "测一测",
  1304. "enablePullDownRefresh": false,
  1305. "navigationBarBackgroundColor": "#ffffff",
  1306. "navigationBarTextStyle": "black"
  1307. }
  1308. },
  1309. {
  1310. "path": "pages/article/testDetails",
  1311. "style": {
  1312. "navigationBarTitleText": "测一测详情",
  1313. "enablePullDownRefresh": false,
  1314. "navigationBarBackgroundColor": "#ffffff",
  1315. "navigationBarTextStyle": "black"
  1316. }
  1317. },
  1318. {
  1319. "path": "pages/article/test",
  1320. "style": {
  1321. "navigationBarTitleText": "测一测",
  1322. "enablePullDownRefresh": false,
  1323. "navigationBarBackgroundColor": "#ffffff",
  1324. "navigationBarTextStyle": "black"
  1325. }
  1326. },
  1327. {
  1328. "path": "pages/article/testResult",
  1329. "style": {
  1330. "navigationBarTitleText": "测试结果",
  1331. "enablePullDownRefresh": false,
  1332. "navigationBarBackgroundColor": "#ffffff",
  1333. "navigationBarTextStyle": "black"
  1334. }
  1335. },
  1336. {
  1337. "path": "pages/article/testResultImg",
  1338. "style": {
  1339. "navigationBarTitleText": "测试结果",
  1340. "enablePullDownRefresh": false,
  1341. "navigationBarBackgroundColor": "#ffffff",
  1342. "navigationBarTextStyle": "black"
  1343. }
  1344. },
  1345. {
  1346. "path": "pages/company/login",
  1347. "style": {
  1348. "navigationBarTitleText": "客服登录",
  1349. "enablePullDownRefresh": false,
  1350. "navigationBarBackgroundColor": "#ffffff",
  1351. "navigationBarTextStyle": "black"
  1352. }
  1353. },
  1354. {
  1355. "path": "pages/company/index",
  1356. "style": {
  1357. "navigationBarTitleText": "客服首页",
  1358. "enablePullDownRefresh": false,
  1359. "navigationBarBackgroundColor": "#ffffff",
  1360. "navigationBarTextStyle": "black"
  1361. }
  1362. },
  1363. {
  1364. "path": "pages/company/couponList",
  1365. "style": {
  1366. "navigationBarTitleText": "优惠券",
  1367. "enablePullDownRefresh": false,
  1368. "navigationBarBackgroundColor": "#ffffff",
  1369. "navigationBarTextStyle": "black"
  1370. }
  1371. },
  1372. {
  1373. "path": "pages/company/couponDetails",
  1374. "style": {
  1375. "navigationBarTitleText": "优惠券详情",
  1376. "enablePullDownRefresh": false,
  1377. "navigationBarBackgroundColor": "#ffffff",
  1378. "navigationBarTextStyle": "black"
  1379. }
  1380. },
  1381. {
  1382. "path": "pages/company/packageList",
  1383. "style": {
  1384. "navigationBarTitleText": "疗法",
  1385. "enablePullDownRefresh": false,
  1386. "navigationBarBackgroundColor": "#ffffff",
  1387. "navigationBarTextStyle": "black"
  1388. }
  1389. },
  1390. {
  1391. "path": "pages/company/packageDetails",
  1392. "style": {
  1393. "navigationBarTitleText": "疗法详情",
  1394. "navigationBarTextStyle": "black",
  1395. "navigationStyle": "custom",
  1396. "scrollIndicator": "none",
  1397. "bounce": "none",
  1398. "titleNView": false,
  1399. "enablePullDownRefresh": false,
  1400. "backgroundColor": "#f7f7f7",
  1401. "backgroundColorTop": "#ffffff"
  1402. }
  1403. },
  1404. {
  1405. "path": "pages/company/packageOrderList",
  1406. "style": {
  1407. "navigationBarTitleText": "疗法订单",
  1408. "enablePullDownRefresh": false,
  1409. "navigationBarBackgroundColor": "#ffffff",
  1410. "navigationBarTextStyle": "black"
  1411. }
  1412. },
  1413. {
  1414. "path": "pages/company/packageOrderDetails",
  1415. "style": {
  1416. "navigationBarTitleText": "订单详情",
  1417. "enablePullDownRefresh": false,
  1418. "navigationBarBackgroundColor": "#FF233C",
  1419. "navigationBarTextStyle": "white"
  1420. }
  1421. },
  1422. {
  1423. "path": "pages/company/storeOrderList",
  1424. "style": {
  1425. "navigationBarTitleText": "处方订单",
  1426. "enablePullDownRefresh": false,
  1427. "navigationBarBackgroundColor": "#ffffff",
  1428. "navigationBarTextStyle": "black"
  1429. }
  1430. },
  1431. {
  1432. "path": "pages/company/storeOrderDetail",
  1433. "style": {
  1434. "navigationBarTitleText": "订单详情",
  1435. "enablePullDownRefresh": false,
  1436. "navigationBarBackgroundColor": "#FF233C",
  1437. "navigationBarTextStyle": "white"
  1438. }
  1439. },
  1440. {
  1441. "path": "pages/store/storeOrderDelivery",
  1442. "style": {
  1443. "navigationBarTitleText": "物流查询",
  1444. "enablePullDownRefresh": false,
  1445. "navigationBarBackgroundColor": "#ffffff",
  1446. "navigationBarTextStyle": "black"
  1447. }
  1448. },
  1449. {
  1450. "path": "pages/company/inquiryOrderList",
  1451. "style": {
  1452. "navigationBarTitleText": "问诊订单",
  1453. "enablePullDownRefresh": false,
  1454. "navigationBarBackgroundColor": "#ffffff",
  1455. "navigationBarTextStyle": "black"
  1456. }
  1457. },
  1458. {
  1459. "path": "pages/company/inquiryOrderDetails",
  1460. "style": {
  1461. "navigationBarTitleText": "订单详情",
  1462. "enablePullDownRefresh": false,
  1463. "navigationBarBackgroundColor": "#ffffff",
  1464. "navigationBarTextStyle": "black"
  1465. }
  1466. },
  1467. {
  1468. "path": "pages/company/voice",
  1469. "style": {
  1470. "navigationBarTitleText": "声音采集",
  1471. "enablePullDownRefresh": false,
  1472. "navigationBarBackgroundColor": "#ffffff",
  1473. "navigationBarTextStyle": "black",
  1474. "app-plus": {
  1475. "bounce": "none" // 页面回弹
  1476. }
  1477. }
  1478. },
  1479. {
  1480. "path": "pages/company/voiceItem",
  1481. "style": {
  1482. "navigationBarTitleText": "声音录制",
  1483. "enablePullDownRefresh": false,
  1484. "navigationBarBackgroundColor": "#ffffff",
  1485. "navigationBarTextStyle": "black",
  1486. "app-plus": {
  1487. "bounce": "none" // 页面回弹
  1488. }
  1489. }
  1490. },
  1491. {
  1492. "path": "pages/company/voiceList",
  1493. "style": {
  1494. "navigationBarTitleText": "声音录制",
  1495. "enablePullDownRefresh": false,
  1496. "navigationBarBackgroundColor": "#ffffff",
  1497. "navigationBarTextStyle": "black",
  1498. "app-plus": {
  1499. "bounce": "none" // 页面回弹
  1500. }
  1501. }
  1502. },
  1503. {
  1504. "path": "pages/company/bindInfo",
  1505. "style": {
  1506. "navigationBarTitleText": "",
  1507. "enablePullDownRefresh": false,
  1508. "navigationBarBackgroundColor": "#f7f7f7",
  1509. "navigationBarTextStyle": "black",
  1510. "app-plus": {
  1511. "bounce": "none" // 页面回弹
  1512. }
  1513. }
  1514. },
  1515. {
  1516. "path": "pages/store/packageList",
  1517. "style": {
  1518. "navigationBarTitleText": "疗法列表",
  1519. "enablePullDownRefresh": false,
  1520. "navigationBarBackgroundColor": "#ffffff",
  1521. "navigationBarTextStyle": "black"
  1522. }
  1523. },
  1524. {
  1525. "path": "pages/store/packageDetails",
  1526. "style": {
  1527. "navigationBarTitleText": "疗法详情",
  1528. "navigationBarTextStyle": "black",
  1529. "navigationStyle": "custom",
  1530. "scrollIndicator": "none",
  1531. "bounce": "none",
  1532. "titleNView": false,
  1533. "enablePullDownRefresh": false,
  1534. "backgroundColor": "#f7f7f7",
  1535. "backgroundColorTop": "#ffffff"
  1536. }
  1537. },
  1538. {
  1539. "path": "pages/store/packageForm",
  1540. "style": {
  1541. "navigationBarTitleText": "问答",
  1542. "enablePullDownRefresh": false,
  1543. "navigationBarBackgroundColor": "#ffffff",
  1544. "navigationBarTextStyle": "black"
  1545. }
  1546. },
  1547. {
  1548. "path": "pages/store/packageOrderPay",
  1549. "style": {
  1550. "navigationBarTitleText": "支付",
  1551. "enablePullDownRefresh": false,
  1552. "navigationBarBackgroundColor": "#ffffff",
  1553. "navigationBarTextStyle": "black",
  1554. "navigationStyle": "custom"
  1555. }
  1556. },
  1557. {
  1558. "path": "pages/store/packageOrderPaySuccess",
  1559. "style": {
  1560. "navigationBarTitleText": "支付结果",
  1561. "enablePullDownRefresh": false,
  1562. "navigationBarBackgroundColor": "#ffffff",
  1563. "navigationBarTextStyle": "black"
  1564. }
  1565. },
  1566. {
  1567. "path": "pages/store/pingOrder",
  1568. "style": {
  1569. "navigationBarTitleText": "评价",
  1570. "enablePullDownRefresh": false,
  1571. "navigationBarBackgroundColor": "#ffffff",
  1572. "navigationBarTextStyle": "black"
  1573. }
  1574. },
  1575. {
  1576. "path": "pages/user/patient",
  1577. "style": {
  1578. "navigationBarTitleText": "就诊人管理",
  1579. "enablePullDownRefresh": false,
  1580. "navigationBarBackgroundColor": "#ffffff",
  1581. "navigationBarTextStyle": "black"
  1582. }
  1583. },
  1584. {
  1585. "path": "pages/user/addEditPatient",
  1586. "style": {
  1587. "navigationBarTitleText": "",
  1588. "enablePullDownRefresh": false,
  1589. "navigationBarBackgroundColor": "#ffffff",
  1590. "navigationBarTextStyle": "black"
  1591. }
  1592. },
  1593. {
  1594. "path": "pages/user/address",
  1595. "style": {
  1596. "navigationBarTitleText": "地址管理",
  1597. "enablePullDownRefresh": false,
  1598. "navigationBarBackgroundColor": "#ffffff",
  1599. "navigationBarTextStyle": "black"
  1600. }
  1601. },
  1602. {
  1603. "path": "pages/user/addEditAddress",
  1604. "style": {
  1605. "navigationBarTitleText": "",
  1606. "enablePullDownRefresh": false,
  1607. "navigationBarBackgroundColor": "#ffffff",
  1608. "navigationBarTextStyle": "black"
  1609. }
  1610. },
  1611. {
  1612. "path": "pages/store/packageOrderList",
  1613. "style": {
  1614. "navigationBarTitleText": "疗法包",
  1615. "enablePullDownRefresh": false,
  1616. "navigationBarBackgroundColor": "#ffffff",
  1617. "navigationBarTextStyle": "black"
  1618. }
  1619. },
  1620. {
  1621. "path": "pages/store/packageOrderDetails",
  1622. "style": {
  1623. "navigationBarTitleText": "订单详情",
  1624. "enablePullDownRefresh": false,
  1625. "navigationBarBackgroundColor": "#FF233C",
  1626. "navigationBarTextStyle": "white"
  1627. }
  1628. },
  1629. {
  1630. "path": "pages/user/registerDoctor",
  1631. "style": {
  1632. "navigationBarTitleText": "医生注册",
  1633. "enablePullDownRefresh": false,
  1634. "navigationBarBackgroundColor": "#ffffff",
  1635. "navigationBarTextStyle": "black"
  1636. }
  1637. },
  1638. {
  1639. "path": "pages/user/agreement",
  1640. "style": {
  1641. "navigationBarTitleText": "协议",
  1642. "enablePullDownRefresh": false,
  1643. "navigationBarBackgroundColor": "#ffffff",
  1644. "navigationBarTextStyle": "black"
  1645. }
  1646. },
  1647. {
  1648. "path": "pages/store/inquiryOrderPingList",
  1649. "style": {
  1650. "navigationBarTitleText": "我的评价",
  1651. "enablePullDownRefresh": false,
  1652. "navigationBarBackgroundColor": "#ffffff",
  1653. "navigationBarTextStyle": "black"
  1654. }
  1655. },
  1656. {
  1657. "path": "pages/user/integral/integral",
  1658. "style": {
  1659. "navigationBarTitleText": "我的福币",
  1660. "enablePullDownRefresh": false,
  1661. "navigationBarBackgroundColor": "#ffffff",
  1662. "navigationBarTextStyle": "black"
  1663. }
  1664. },
  1665. {
  1666. "path": "pages/user/integral/points",
  1667. "style": {
  1668. "navigationBarTitleText": "我的福币",
  1669. "enablePullDownRefresh": false,
  1670. "navigationBarBackgroundColor": "#ffffff",
  1671. "navigationBarTextStyle": "black",
  1672. "bounce": "none",
  1673. "titleNView": false,
  1674. "navigationStyle": "custom"
  1675. }
  1676. },
  1677. {
  1678. "path": "pages/user/integral/integralGoodsList",
  1679. "style": {
  1680. "navigationBarTitleText": "福币商城",
  1681. "enablePullDownRefresh": false,
  1682. "navigationBarBackgroundColor": "#ffffff",
  1683. "navigationBarTextStyle": "black"
  1684. }
  1685. },
  1686. {
  1687. "path": "pages/user/integral/integralGoodsDetails",
  1688. "style": {
  1689. "navigationBarTitleText": "商品详情",
  1690. "enablePullDownRefresh": false,
  1691. "navigationBarBackgroundColor": "#ffffff",
  1692. "navigationBarTextStyle": "black"
  1693. }
  1694. },
  1695. {
  1696. "path": "pages/user/integral/integralOrderPay",
  1697. "style": {
  1698. "navigationBarTitleText": "福币兑换",
  1699. "enablePullDownRefresh": false,
  1700. "navigationBarBackgroundColor": "#ffffff",
  1701. "navigationBarTextStyle": "black"
  1702. }
  1703. },
  1704. {
  1705. "path": "pages/user/integral/integralOrderPaySuccess",
  1706. "style": {
  1707. "navigationBarTitleText": "兑换成功",
  1708. "enablePullDownRefresh": false,
  1709. "navigationBarBackgroundColor": "#ffffff",
  1710. "navigationBarTextStyle": "black"
  1711. }
  1712. },
  1713. {
  1714. "path": "pages/user/integral/integralOrderDetails",
  1715. "style": {
  1716. "navigationBarTitleText": "订单详情",
  1717. "enablePullDownRefresh": false,
  1718. "navigationBarBackgroundColor": "#ffffff",
  1719. "navigationBarTextStyle": "black"
  1720. }
  1721. },
  1722. {
  1723. "path": "pages/user/integral/integralOrderList",
  1724. "style": {
  1725. "navigationBarTitleText": "订单列表",
  1726. "enablePullDownRefresh": false,
  1727. "navigationBarBackgroundColor": "#ffffff",
  1728. "navigationBarTextStyle": "black"
  1729. }
  1730. },
  1731. {
  1732. "path": "pages/user/integral/integralLogsList",
  1733. "style": {
  1734. "navigationBarTitleText": "福币记录",
  1735. "enablePullDownRefresh": false,
  1736. "navigationBarBackgroundColor": "#ffffff",
  1737. "navigationBarTextStyle": "black"
  1738. }
  1739. },
  1740. {
  1741. "path": "pages/user/coupon/myCouponList",
  1742. "style": {
  1743. "navigationBarTitleText": "我的优惠券",
  1744. "enablePullDownRefresh": false,
  1745. "navigationBarBackgroundColor": "#ffffff",
  1746. "navigationBarTextStyle": "black"
  1747. }
  1748. },
  1749. {
  1750. "path": "pages/user/editUser",
  1751. "aliasPath": "/",
  1752. "name": "editUser",
  1753. "style": {
  1754. "navigationBarTitleText": "用户信息",
  1755. "enablePullDownRefresh": false,
  1756. "navigationBarBackgroundColor": "#fff",
  1757. "navigationBarTextStyle": "black",
  1758. "app-plus": {
  1759. "titleNView": {
  1760. "backButton": {
  1761. "title": ""
  1762. }
  1763. }
  1764. }
  1765. }
  1766. },
  1767. {
  1768. "path": "pages/user/editPwd",
  1769. "aliasPath": "/",
  1770. "name": "editPwd",
  1771. "style": {
  1772. "navigationBarTitleText": "修改密码",
  1773. "enablePullDownRefresh": false
  1774. }
  1775. },
  1776. {
  1777. "path": "pages/user/integralMall",
  1778. "style": {
  1779. "navigationBarTitleText": "福币商城",
  1780. "navigationStyle": "custom",
  1781. "titleNView": false,
  1782. "enablePullDownRefresh": false,
  1783. "backgroundColor": "#f7f7f7",
  1784. "backgroundColorTop": "#ffffff",
  1785. "bounce": "none"
  1786. }
  1787. },
  1788. {
  1789. "path": "pages/index/share/share",
  1790. "style": {
  1791. "navigationBarTitleText": "邀请好友",
  1792. "navigationStyle": "custom",
  1793. "titleNView": false,
  1794. "enablePullDownRefresh": false,
  1795. "backgroundColor": "#f7f7f7",
  1796. "backgroundColorTop": "#ffffff",
  1797. "bounce": "none"
  1798. }
  1799. },
  1800. {
  1801. "path": "pages/user/popularize",
  1802. "style": {
  1803. "navigationBarTitleText": "我的推广",
  1804. "navigationStyle": "custom",
  1805. "titleNView": false,
  1806. "enablePullDownRefresh": false,
  1807. "backgroundColor": "#f7f7f7",
  1808. "backgroundColorTop": "#ffffff",
  1809. "bounce": "none"
  1810. }
  1811. },
  1812. {
  1813. "path": "pages/user/popularizeGoods",
  1814. "style": {
  1815. "navigationBarTitleText": "推广商品",
  1816. "navigationStyle": "custom",
  1817. "titleNView": false,
  1818. "enablePullDownRefresh": false,
  1819. "backgroundColor": "#f7f7f7",
  1820. "backgroundColorTop": "#ffffff",
  1821. "bounce": "none"
  1822. }
  1823. },
  1824. {
  1825. "path": "pages/user/popularizeCommission",
  1826. "style": {
  1827. "navigationBarTitleText": "佣金明细",
  1828. "navigationStyle": "custom",
  1829. "titleNView": false,
  1830. "enablePullDownRefresh": false,
  1831. "backgroundColor": "#f7f7f7",
  1832. "backgroundColorTop": "#ffffff",
  1833. "bounce": "none"
  1834. }
  1835. },
  1836. {
  1837. "path": "pages/user/popularizeOrder",
  1838. "style": {
  1839. "navigationBarTitleText": "订单记录",
  1840. "navigationStyle": "custom",
  1841. "titleNView": false,
  1842. "enablePullDownRefresh": false,
  1843. "backgroundColor": "#f7f7f7",
  1844. "backgroundColorTop": "#ffffff",
  1845. "bounce": "none"
  1846. }
  1847. },
  1848. {
  1849. "path": "pages/index/video/index",
  1850. "style": {
  1851. "navigationBarTitleText": "达人视觉",
  1852. "navigationStyle": "custom",
  1853. "titleNView": false,
  1854. "enablePullDownRefresh": false,
  1855. "backgroundColor": "#f7f7f7",
  1856. "backgroundColorTop": "#ffffff",
  1857. "bounce": "none"
  1858. }
  1859. },
  1860. {
  1861. "path": "pages/user/wallet",
  1862. "style": {
  1863. "navigationBarTitleText": "我的钱包",
  1864. "navigationStyle": "custom",
  1865. "titleNView": false,
  1866. "enablePullDownRefresh": false,
  1867. "backgroundColor": "#f7f7f7",
  1868. "backgroundColorTop": "#ffffff",
  1869. "bounce": "none"
  1870. }
  1871. },
  1872. {
  1873. "path": "pages/user/courseCommission",
  1874. "style": {
  1875. "navigationBarTitleText": "课程佣金",
  1876. "navigationStyle": "custom",
  1877. "titleNView": false,
  1878. "enablePullDownRefresh": false,
  1879. "backgroundColor": "#f7f7f7",
  1880. "backgroundColorTop": "#ffffff",
  1881. "bounce": "none"
  1882. }
  1883. },
  1884. {
  1885. "path": "pages/user/share",
  1886. "style": {
  1887. "navigationBarTitleText": "医生拉新",
  1888. "navigationStyle": "custom",
  1889. "titleNView": false,
  1890. "enablePullDownRefresh": false,
  1891. "backgroundColor": "#f7f7f7",
  1892. "backgroundColorTop": "#ffffff",
  1893. "bounce": "none"
  1894. }
  1895. },
  1896. {
  1897. "path": "pages/user/integralInfo",
  1898. "style": {
  1899. "navigationBarTitleText": "我的福币",
  1900. "navigationStyle": "custom",
  1901. "titleNView": false,
  1902. "enablePullDownRefresh": false,
  1903. "backgroundColor": "#f7f7f7",
  1904. "backgroundColorTop": "#ffffff",
  1905. "bounce": "none"
  1906. }
  1907. },
  1908. {
  1909. "path": "pages/user/shareGoods",
  1910. "style": {
  1911. "navigationBarTitleText": "达人推荐",
  1912. "navigationStyle": "custom",
  1913. "titleNView": false,
  1914. "enablePullDownRefresh": false,
  1915. "backgroundColor": "#f7f7f7",
  1916. "backgroundColorTop": "#ffffff",
  1917. "bounce": "none"
  1918. }
  1919. },
  1920. {
  1921. "path": "pages/user/about",
  1922. "aliasPath": "/",
  1923. "name": "about",
  1924. "style": {
  1925. "navigationBarTitleText": "关于我们",
  1926. "enablePullDownRefresh": false,
  1927. "navigationBarBackgroundColor": "#ffffff",
  1928. "navigationBarTextStyle": "black"
  1929. }
  1930. },
  1931. {
  1932. "path": "pages/user/myFavoriteVideo",
  1933. "style": {
  1934. "navigationBarTitleText": "视频收藏",
  1935. "navigationStyle": "custom",
  1936. "scrollIndicator": "none",
  1937. "bounce": "none",
  1938. "titleNView": false,
  1939. "enablePullDownRefresh": false
  1940. }
  1941. },
  1942. {
  1943. "path": "pages/user/myliving-app",
  1944. "style": {
  1945. "navigationBarTitleText": "",
  1946. "enablePullDownRefresh": false,
  1947. "navigationBarBackgroundColor": "#ffffff",
  1948. "navigationBarTextStyle": "black",
  1949. "navigationStyle": "custom",
  1950. "app-plus": {
  1951. "titleNView": false, //不启用系统导航
  1952. "bounce": "none"
  1953. // ,"subNVues":[{
  1954. // "id": "mylivingApp", // 唯一标识
  1955. // "path":"pages/course/video/commentN", // 页面路径
  1956. // "type":"popup",
  1957. // "style": {
  1958. // "position": "absolute",
  1959. // "bottom": "0",
  1960. // "left": "0",
  1961. // "width": "100%",
  1962. // "height": "1150upx",
  1963. // "mask":"rgba(0,0,0,0.5)",
  1964. // "background": "transparent",
  1965. // "border-top-left-radius": "20px",
  1966. // "border-top-right-radius": "20px"
  1967. // }
  1968. // }]
  1969. }
  1970. }
  1971. },
  1972. {
  1973. "path": "pages/user/userInfo",
  1974. "style": {
  1975. "navigationBarTitleText": "个人信息",
  1976. "enablePullDownRefresh": false,
  1977. "navigationBarBackgroundColor": "#ffffff",
  1978. "scrollIndicator": "none",
  1979. "bounce": "none",
  1980. "navigationBarTextStyle": "black"
  1981. }
  1982. },
  1983. {
  1984. "path": "pages/store/storeOrderRefundApply",
  1985. "style": {
  1986. "navigationBarTitleText": "申请售后",
  1987. "navigationBarTextStyle": "black",
  1988. "navigationBarBackgroundColor": "#ffffff"
  1989. }
  1990. },
  1991. {
  1992. "path": "pages/store/storeOrderRefundSubmit",
  1993. "style": {
  1994. "navigationBarTitleText": "提交售后",
  1995. "navigationBarTextStyle": "black",
  1996. "navigationBarBackgroundColor": "#ffffff"
  1997. }
  1998. },
  1999. {
  2000. "path": "pages/store/storeOrderRefundList",
  2001. "style": {
  2002. "navigationBarTitleText": "我的售后",
  2003. "enablePullDownRefresh": false,
  2004. "navigationBarBackgroundColor": "#ffffff",
  2005. "navigationBarTextStyle": "black"
  2006. }
  2007. },
  2008. {
  2009. "path": "pages/store/storeOrderRefundDetails",
  2010. "style": {
  2011. "navigationBarTitleText": "售后详情",
  2012. "enablePullDownRefresh": false,
  2013. "navigationBarBackgroundColor": "#FF233C",
  2014. "navigationBarTextStyle": "white"
  2015. }
  2016. },
  2017. {
  2018. "path": "pages/store/storeOrderRefundAddDelivery",
  2019. "style": {
  2020. "navigationBarTitleText": "填写物流单号",
  2021. "navigationBarTextStyle": "black",
  2022. "navigationBarBackgroundColor": "#ffffff"
  2023. }
  2024. },
  2025. {
  2026. "path": "pages/store/inquiryOrderReport",
  2027. "style": {
  2028. "navigationBarTitleText": "报告详情",
  2029. "navigationBarTextStyle": "black",
  2030. "navigationBarBackgroundColor": "#ffffff"
  2031. }
  2032. },
  2033. {
  2034. "path": "pages/store/payH5",
  2035. "style": {
  2036. "navigationBarTitleText": "支付订单",
  2037. "navigationBarTextStyle": "black",
  2038. "navigationBarBackgroundColor": "#ffffff"
  2039. }
  2040. },
  2041. {
  2042. "path": "components/share-box/share-box",
  2043. "style": {
  2044. "navigationBarTitleText": ""
  2045. }
  2046. },
  2047. {
  2048. "path": "pages/ai/index",
  2049. "style": {
  2050. "navigationBarTitleText": "智能客服系统",
  2051. "navigationBarTextStyle": "black",
  2052. "navigationBarBackgroundColor": "#ffffff"
  2053. }
  2054. },
  2055. {
  2056. "path": "pages/ai/consultation",
  2057. "style": {
  2058. "navigationBarTitleText": "智能体咨询",
  2059. "navigationBarTextStyle": "black",
  2060. "navigationBarBackgroundColor": "#ffffff"
  2061. }
  2062. },
  2063. {
  2064. "path": "pages/ai/list",
  2065. "style": {
  2066. "navigationBarTitleText": "对话",
  2067. "navigationBarTextStyle": "black",
  2068. "navigationBarBackgroundColor": "#ffffff"
  2069. }
  2070. },
  2071. {
  2072. "path": "pages/ai/chat",
  2073. "style": {
  2074. "navigationBarTitleText": "",
  2075. "navigationBarTextStyle": "black",
  2076. "navigationBarBackgroundColor": "#ffffff",
  2077. "navigationStyle": "custom",
  2078. "app-plus": {
  2079. "bounce": "none", // 页面回弹
  2080. "softinputMode": "adjustResize"
  2081. }
  2082. }
  2083. },
  2084. {
  2085. "path": "pages/auth/h5WxLogin",
  2086. "style": {
  2087. "navigationBarTitleText": "微信授权登录",
  2088. "navigationBarTextStyle": "black",
  2089. "navigationBarBackgroundColor": "#ffffff"
  2090. }
  2091. },
  2092. {
  2093. "path": "pages/auth/loginTest",
  2094. "style": {
  2095. "navigationBarTitleText": "H5登录",
  2096. "navigationBarTextStyle": "black",
  2097. "navigationBarBackgroundColor": "#ffffff"
  2098. }
  2099. },
  2100. {
  2101. "path": "pages/user/msgSetting",
  2102. "style": {
  2103. "navigationBarTitleText": "消息设置",
  2104. "navigationBarTextStyle": "black",
  2105. "navigationBarBackgroundColor": "#ffffff",
  2106. "app-plus": {
  2107. "titleNView": {
  2108. "buttons": [
  2109. {
  2110. "fontSize": "15px",
  2111. "width": "60px",
  2112. "text": "保存"
  2113. }
  2114. ]
  2115. }
  2116. }
  2117. }
  2118. },
  2119. {
  2120. "path": "pages/user/tongue/index",
  2121. "style": {
  2122. "navigationBarTitleText": "AI舌诊",
  2123. "navigationBarTextStyle": "black",
  2124. "navigationStyle": "custom",
  2125. "scrollIndicator": "none",
  2126. "titleNView": false,
  2127. "enablePullDownRefresh": false,
  2128. "app-plus": {
  2129. "bounce": "none"
  2130. }
  2131. }
  2132. },
  2133. {
  2134. "path": "pages/user/tongue/ques",
  2135. "style": {
  2136. "navigationBarTitleText": "使用教程",
  2137. "enablePullDownRefresh": false,
  2138. "navigationBarBackgroundColor": "#ffffff",
  2139. "navigationBarTextStyle": "black",
  2140. "scrollIndicator": "none",
  2141. "app-plus": {
  2142. "bounce": "none"
  2143. }
  2144. }
  2145. },
  2146. {
  2147. "path": "pages/user/tongue/photoPreview",
  2148. "style": {
  2149. "navigationBarTitleText": "",
  2150. "navigationBarTextStyle": "black",
  2151. "navigationStyle": "custom",
  2152. "scrollIndicator": "none",
  2153. "titleNView": false,
  2154. "enablePullDownRefresh": false,
  2155. "app-plus": {
  2156. "bounce": "none"
  2157. }
  2158. }
  2159. },
  2160. {
  2161. "path": "pages/user/tongue/tongueList",
  2162. "style": {
  2163. "navigationBarTitleText": "舌诊记录",
  2164. "enablePullDownRefresh": false,
  2165. "navigationBarBackgroundColor": "#ffffff",
  2166. "navigationBarTextStyle": "black",
  2167. "scrollIndicator": "none",
  2168. "app-plus": {
  2169. "bounce": "none"
  2170. }
  2171. }
  2172. },
  2173. {
  2174. "path": "pages/user/tongue/report",
  2175. "style": {
  2176. "navigationBarTitleText": "舌诊记录",
  2177. "enablePullDownRefresh": false,
  2178. "navigationBarBackgroundColor": "#ffffff",
  2179. "navigationBarTextStyle": "black",
  2180. "scrollIndicator": "none",
  2181. "navigationStyle": "custom",
  2182. "app-plus": {
  2183. "bounce": "none"
  2184. }
  2185. }
  2186. },
  2187. {
  2188. "path": "pages/user/tongue/test",
  2189. "style": {
  2190. "navigationBarTitleText": ""
  2191. }
  2192. },
  2193. {
  2194. "path": "pages/index/download",
  2195. "style": {
  2196. "navigationBarTitleText": "",
  2197. "navigationStyle": "custom",
  2198. "scrollIndicator": "none",
  2199. "bounce": "none",
  2200. "titleNView": false,
  2201. "enablePullDownRefresh": false,
  2202. "backgroundColor": "#f7f7f7",
  2203. "backgroundColorTop": "#ffffff"
  2204. }
  2205. },
  2206. {
  2207. "path": "pages/user/addHealthButler",
  2208. "style": {
  2209. "navigationBarTitleText": "健康管家",
  2210. "enablePullDownRefresh": false,
  2211. "navigationBarBackgroundColor": "#ffffff",
  2212. "navigationBarTextStyle": "black",
  2213. "app-plus": {
  2214. "bounce": "none"
  2215. }
  2216. }
  2217. },
  2218. {
  2219. "path": "pages/index/appDownload",
  2220. "style": {
  2221. "navigationBarTitleText": "乐享韶华-APP下载",
  2222. "enablePullDownRefresh": false,
  2223. "navigationBarBackgroundColor": "#ffffff",
  2224. "navigationBarTextStyle": "black",
  2225. "navigationStyle": "custom",
  2226. "app-plus": {
  2227. "bounce": "none"
  2228. }
  2229. }
  2230. },
  2231. {
  2232. "path": "pages/store/invoice/index",
  2233. "style": {
  2234. "navigationBarTitleText": "开具发票",
  2235. "enablePullDownRefresh": false,
  2236. "navigationBarBackgroundColor": "#ffffff",
  2237. "navigationBarTextStyle": "black",
  2238. "app-plus": {
  2239. "bounce": "none"
  2240. }
  2241. }
  2242. },
  2243. {
  2244. "path": "pages/store/invoice/invoiceDetail",
  2245. "style": {
  2246. "navigationBarTitleText": "发票详情",
  2247. "enablePullDownRefresh": false,
  2248. "navigationBarBackgroundColor": "#ffffff",
  2249. "navigationBarTextStyle": "black",
  2250. "app-plus": {
  2251. "bounce": "none"
  2252. }
  2253. }
  2254. },
  2255. {
  2256. "path": "pages/store/invoice/invoiceList",
  2257. "style": {
  2258. "navigationBarTitleText": "开票历史",
  2259. "enablePullDownRefresh": false,
  2260. "navigationBarBackgroundColor": "#ffffff",
  2261. "navigationBarTextStyle": "black",
  2262. "app-plus": {
  2263. "bounce": "none"
  2264. }
  2265. }
  2266. },
  2267. {
  2268. "path": "pages/store/invoice/invoiceOther",
  2269. "style": {
  2270. "navigationBarTitleText": "",
  2271. "enablePullDownRefresh": false,
  2272. "navigationBarBackgroundColor": "#ffffff",
  2273. "navigationBarTextStyle": "black",
  2274. "app-plus": {
  2275. "bounce": "none"
  2276. }
  2277. }
  2278. },
  2279. {
  2280. "path": "pages/index/searchInfo",
  2281. "style": {
  2282. "navigationBarTitleText": "搜索结果",
  2283. "enablePullDownRefresh": false,
  2284. "navigationBarBackgroundColor": "#ffffff",
  2285. "navigationBarTextStyle": "black",
  2286. "navigationStyle": "custom",
  2287. "app-plus": {
  2288. "bounce": "none"
  2289. }
  2290. }
  2291. },
  2292. {
  2293. "path": "pages/courseAnswer/index",
  2294. "style": {
  2295. "navigationBarTitleText": "课程详情",
  2296. "enablePullDownRefresh": false,
  2297. "navigationBarBackgroundColor": "#ffffff",
  2298. "navigationBarTextStyle": "black",
  2299. "app-plus": {
  2300. "bounce": "none",
  2301. "popGesture": "none",
  2302. "screenOrientation": [
  2303. //可选,字符串数组类型,应用支持的横竖屏
  2304. "portrait-primary", //可选,字符串类型,支持竖屏
  2305. "portrait-secondary", //可选,字符串类型,支持反向竖屏
  2306. "landscape-primary", //可选,字符串类型,支持横屏
  2307. "landscape-secondary" //可选,字符串类型,支持反向横屏
  2308. ]
  2309. }
  2310. }
  2311. },
  2312. {
  2313. "path": "pages/courseAnswer/list",
  2314. "style": {
  2315. "navigationBarTitleText": "看课通知",
  2316. "enablePullDownRefresh": false,
  2317. "navigationBarBackgroundColor": "#ffffff",
  2318. "navigationBarTextStyle": "black",
  2319. "app-plus": {
  2320. "bounce": "none"
  2321. }
  2322. }
  2323. },
  2324. {
  2325. "path": "pages/user/myNoticeList",
  2326. "style": {
  2327. "navigationBarTitleText": "系统通知",
  2328. "enablePullDownRefresh": false,
  2329. "navigationBarBackgroundColor": "#ffffff",
  2330. "navigationBarTextStyle": "black",
  2331. "navigationStyle": "custom",
  2332. "app-plus": {
  2333. "bounce": "none"
  2334. }
  2335. }
  2336. },
  2337. {
  2338. "path": "pages/user/bindCompanyUser",
  2339. "style": {
  2340. "navigationBarTitleText": "",
  2341. "enablePullDownRefresh": false,
  2342. "navigationBarBackgroundColor": "#ffffff",
  2343. "navigationBarTextStyle": "black",
  2344. "navigationStyle": "custom",
  2345. "app-plus": {
  2346. "bounce": "none"
  2347. }
  2348. }
  2349. },
  2350. {
  2351. "path": "pages_im/pages/conversation/conversationList/index",
  2352. "style": {
  2353. "navigationBarTitleText": "",
  2354. "enablePullDownRefresh": false,
  2355. "disableScroll": true,
  2356. "navigationStyle": "custom",
  2357. "navigationBarTextStyle": "black"
  2358. }
  2359. },
  2360. {
  2361. "path": "pages_im/pages/contact/index/index",
  2362. "style": {
  2363. "navigationBarTitleText": "",
  2364. "enablePullDownRefresh": false,
  2365. "navigationStyle": "custom",
  2366. "navigationBarTextStyle": "black",
  2367. "disableScroll": true,
  2368. "app-plus": {
  2369. "bounce": "none"
  2370. }
  2371. }
  2372. },
  2373. {
  2374. "path": "pages/expert/index",
  2375. "style": {
  2376. "navigationBarTitleText": "",
  2377. "enablePullDownRefresh": false,
  2378. "navigationBarBackgroundColor": "#ffffff",
  2379. "navigationBarTextStyle": "black",
  2380. "navigationStyle": "custom",
  2381. "app-plus": {
  2382. "bounce": "none"
  2383. }
  2384. }
  2385. },
  2386. {
  2387. "path": "pages/expert/releaseVideo",
  2388. "style": {
  2389. "navigationBarTitleText": "",
  2390. "enablePullDownRefresh": false,
  2391. "navigationBarBackgroundColor": "#ffffff",
  2392. "navigationBarTextStyle": "black",
  2393. "navigationStyle": "custom",
  2394. "app-plus": {
  2395. "bounce": "none",
  2396. "subNVues": [
  2397. {
  2398. "id": "tagpop", // 唯一标识
  2399. "path": "pages/expert/components/tagpop", // 页面路径
  2400. "type": "popup",
  2401. "style": {
  2402. "position": "absolute",
  2403. "bottom": "0",
  2404. "left": "0",
  2405. "width": "100%",
  2406. "height": "50%",
  2407. "mask": "rgba(0,0,0,0.5)",
  2408. "background": "transparent",
  2409. "border-top-left-radius": "20px",
  2410. "border-top-right-radius": "20px"
  2411. }
  2412. }
  2413. ]
  2414. }
  2415. }
  2416. },
  2417. {
  2418. "path": "pages/expert/info",
  2419. "style": {
  2420. "navigationBarTitleText": "",
  2421. "enablePullDownRefresh": false,
  2422. "navigationBarBackgroundColor": "#ffffff",
  2423. "navigationBarTextStyle": "black",
  2424. "navigationStyle": "custom",
  2425. "app-plus": {
  2426. "bounce": "none"
  2427. }
  2428. }
  2429. },
  2430. {
  2431. "path": "pages/expert/friendsList",
  2432. "style": {
  2433. "navigationBarTitleText": "",
  2434. "enablePullDownRefresh": false,
  2435. "navigationBarBackgroundColor": "#ffffff",
  2436. "navigationBarTextStyle": "black",
  2437. "navigationStyle": "custom",
  2438. "app-plus": {
  2439. "bounce": "none"
  2440. }
  2441. }
  2442. },
  2443. {
  2444. "path": "pages/expert/video",
  2445. "style": {
  2446. "navigationBarTitleText": "",
  2447. "enablePullDownRefresh": false,
  2448. "navigationBarBackgroundColor": "#ffffff",
  2449. "navigationBarTextStyle": "black",
  2450. "navigationStyle": "custom",
  2451. "app-plus": {
  2452. "titleNView": false, //不启用系统导航
  2453. "subNVues": [
  2454. {
  2455. "id": "videoComment", // 唯一标识
  2456. "path": "pages/course/video/commentN", // 页面路径
  2457. "type": "popup",
  2458. "style": {
  2459. "position": "absolute",
  2460. "bottom": "0",
  2461. "left": "0",
  2462. "width": "100%",
  2463. "height": "1150upx",
  2464. "mask": "rgba(0,0,0,0.5)",
  2465. "background": "transparent",
  2466. "border-top-left-radius": "20px",
  2467. "border-top-right-radius": "20px"
  2468. }
  2469. }
  2470. ]
  2471. }
  2472. }
  2473. },
  2474. {
  2475. "path": "pages/user/accountSafe",
  2476. "style": {
  2477. "navigationBarTitleText": "安全中心",
  2478. "navigationBarTextStyle": "black",
  2479. "navigationBarBackgroundColor": "#ffffff",
  2480. "app-plus": {}
  2481. }
  2482. }
  2483. ],
  2484. "globalStyle": {
  2485. "navigationBarTextStyle": "black",
  2486. "navigationBarTitleText": "",
  2487. "navigationBarBackgroundColor": "#ffffff",
  2488. "backgroundColor": "#f7f7f7",
  2489. "backgroundColorTop": "#f7f7f7" // iOS APP真机bounce回弹区域默认灰色,建议统一重置为白色
  2490. },
  2491. "uniIdRouter": {},
  2492. "subPackages": [
  2493. {
  2494. "root": "pages/user/healthRecords",
  2495. "pages": [
  2496. {
  2497. "path": "index",
  2498. "style": {
  2499. "navigationBarTitleText": "健康档案",
  2500. "navigationStyle": "custom",
  2501. "app-plus": {
  2502. "bounce": "none"
  2503. }
  2504. }
  2505. },
  2506. {
  2507. "path": "add",
  2508. "style": {
  2509. "navigationBarTitleText": "快速填写健康档案",
  2510. "navigationBarTextStyle": "black"
  2511. }
  2512. },
  2513. {
  2514. "path": "edit",
  2515. "style": {
  2516. "navigationBarTitleText": "",
  2517. "navigationBarTextStyle": "black",
  2518. "navigationBarBackgroundColor": "#ffffff"
  2519. }
  2520. }
  2521. ]
  2522. },
  2523. {
  2524. "root": "pages_watch",
  2525. "pages": [
  2526. {
  2527. "path": "index/myfamily/index",
  2528. "style": {
  2529. "navigationBarTitleText": "我的家人",
  2530. "enablePullDownRefresh": false,
  2531. "navigationStyle": "custom",
  2532. "navigationBarBackgroundColor": "#ffffff",
  2533. "navigationBarTextStyle": "black",
  2534. "app-plus": {
  2535. "bounce": "none"
  2536. }
  2537. }
  2538. },
  2539. {
  2540. "path": "index/myfamily/changeTitle",
  2541. "style": {
  2542. "navigationBarTitleText": "修改称呼",
  2543. "enablePullDownRefresh": false,
  2544. "navigationStyle": "custom",
  2545. "navigationBarBackgroundColor": "#ffffff",
  2546. "navigationBarTextStyle": "black",
  2547. "app-plus": {
  2548. "bounce": "none"
  2549. }
  2550. }
  2551. },
  2552. {
  2553. "path": "index/equipment/index",
  2554. "style": {
  2555. "navigationBarTitleText": "设备管理",
  2556. "navigationStyle": "custom",
  2557. "enablePullDownRefresh": false,
  2558. "navigationBarBackgroundColor": "#ffffff",
  2559. "navigationBarTextStyle": "black",
  2560. "app-plus": {
  2561. "bounce": "none"
  2562. }
  2563. }
  2564. },
  2565. {
  2566. "path": "index/equipment/offlineReason",
  2567. "style": {
  2568. "navigationBarTitleText": "设备离线提示",
  2569. "enablePullDownRefresh": false,
  2570. "navigationBarBackgroundColor": "#ffffff",
  2571. "navigationBarTextStyle": "black",
  2572. "app-plus": {
  2573. "bounce": "none"
  2574. }
  2575. }
  2576. },
  2577. {
  2578. "path": "index/equipment/set",
  2579. "style": {
  2580. "navigationBarTitleText": "",
  2581. "enablePullDownRefresh": false,
  2582. "navigationBarBackgroundColor": "#ffffff",
  2583. "navigationBarTextStyle": "black",
  2584. "app-plus": {
  2585. "bounce": "none"
  2586. }
  2587. }
  2588. },
  2589. {
  2590. "path": "index/equipment/clockalarm",
  2591. "style": {
  2592. "navigationBarTitleText": "",
  2593. "navigationStyle": "custom",
  2594. "enablePullDownRefresh": false,
  2595. "disableScroll": true,
  2596. "navigationBarBackgroundColor": "#ffffff",
  2597. "navigationBarTextStyle": "black",
  2598. "app-plus": {
  2599. "bounce": "none"
  2600. }
  2601. }
  2602. },
  2603. {
  2604. "path": "index/equipment/emergencyContact",
  2605. "style": {
  2606. "navigationBarTitleText": "常用联系人",
  2607. "navigationStyle": "custom",
  2608. "enablePullDownRefresh": false,
  2609. "disableScroll": true,
  2610. "app-plus": {
  2611. "bounce": "none"
  2612. }
  2613. }
  2614. },
  2615. {
  2616. "path": "index/equipment/editEmergencyContact",
  2617. "style": {
  2618. "navigationBarTitleText": "创建联系人",
  2619. "navigationStyle": "custom",
  2620. "enablePullDownRefresh": false,
  2621. "app-plus": {
  2622. "bounce": "none"
  2623. }
  2624. }
  2625. },
  2626. {
  2627. "path": "index/equipment/instructions",
  2628. "style": {
  2629. "navigationBarTitleText": "新手指导",
  2630. "enablePullDownRefresh": false,
  2631. "navigationBarBackgroundColor": "#ffffff",
  2632. "navigationBarTextStyle": "black",
  2633. "app-plus": {
  2634. "bounce": "none"
  2635. }
  2636. }
  2637. },
  2638. {
  2639. "path": "index/equipment/deviceInfo",
  2640. "style": {
  2641. "navigationBarTitleText": "设备信息",
  2642. "enablePullDownRefresh": false,
  2643. "navigationBarBackgroundColor": "#ffffff",
  2644. "navigationBarTextStyle": "black",
  2645. "app-plus": {
  2646. "bounce": "none",
  2647. "softinputNavBar": "none"
  2648. }
  2649. }
  2650. },
  2651. {
  2652. "path": "index/equipment/sportsTrajectory",
  2653. "style": {
  2654. "navigationBarTitleText": "运动轨迹",
  2655. "enablePullDownRefresh": false,
  2656. "navigationBarBackgroundColor": "#ffffff",
  2657. "navigationBarTextStyle": "black",
  2658. "app-plus": {
  2659. "bounce": "none",
  2660. "softinputNavBar": "none"
  2661. }
  2662. }
  2663. },
  2664. {
  2665. "path": "healthMonitoring/index",
  2666. "style": {
  2667. // "navigationBarTitleText": "编辑卡片",
  2668. "navigationBarTitleText": "",
  2669. "navigationStyle": "custom",
  2670. "enablePullDownRefresh": false,
  2671. "app-plus": {
  2672. "bounce": "none"
  2673. }
  2674. }
  2675. },
  2676. {
  2677. "path": "healthMonitoring/bloodSugar",
  2678. "style": {
  2679. // "navigationBarTitleText": "血糖监测",
  2680. "navigationBarTitleText": "",
  2681. "navigationStyle": "custom",
  2682. "app-plus": {
  2683. "bounce": "none"
  2684. }
  2685. }
  2686. },
  2687. {
  2688. "path": "healthMonitoring/bloodSugarAbnormal",
  2689. "style": {
  2690. "navigationBarTitleText": "血糖异常数据",
  2691. "enablePullDownRefresh": false,
  2692. "navigationBarBackgroundColor": "#ffffff",
  2693. "navigationBarTextStyle": "black",
  2694. "app-plus": {
  2695. "bounce": "none"
  2696. }
  2697. }
  2698. },
  2699. {
  2700. "path": "healthMonitoring/bloodSugarDetail",
  2701. "style": {
  2702. "navigationBarTitleText": "血糖详情",
  2703. "enablePullDownRefresh": false,
  2704. "navigationBarBackgroundColor": "#ffffff",
  2705. "navigationBarTextStyle": "black",
  2706. "app-plus": {
  2707. "bounce": "none"
  2708. }
  2709. }
  2710. },
  2711. {
  2712. "path": "healthMonitoring/bloodPressure",
  2713. "style": {
  2714. // "navigationBarTitleText": "血压监测",
  2715. "navigationBarTitleText": "",
  2716. "navigationStyle": "custom",
  2717. "app-plus": {
  2718. "bounce": "none"
  2719. }
  2720. }
  2721. },
  2722. {
  2723. "path": "healthMonitoring/bloodPressureAbnormal",
  2724. "style": {
  2725. "navigationBarTitleText": "血压异常数据",
  2726. "enablePullDownRefresh": false,
  2727. "navigationBarBackgroundColor": "#ffffff",
  2728. "navigationBarTextStyle": "black",
  2729. "app-plus": {
  2730. "bounce": "none"
  2731. }
  2732. }
  2733. },
  2734. {
  2735. "path": "healthMonitoring/bloodPressureDetail",
  2736. "style": {
  2737. "navigationBarTitleText": "血压详情",
  2738. "enablePullDownRefresh": false,
  2739. "navigationBarBackgroundColor": "#ffffff",
  2740. "navigationBarTextStyle": "black",
  2741. "app-plus": {
  2742. "bounce": "none"
  2743. }
  2744. }
  2745. },
  2746. {
  2747. "path": "healthMonitoring/heartRate",
  2748. "style": {
  2749. // "navigationBarTitleText": "心率监测",
  2750. "navigationBarTitleText": "",
  2751. "navigationStyle": "custom",
  2752. "app-plus": {
  2753. "bounce": "none"
  2754. }
  2755. }
  2756. },
  2757. {
  2758. "path": "healthMonitoring/bloodOxygen",
  2759. "style": {
  2760. // "navigationBarTitleText": "血氧监测",
  2761. "navigationBarTitleText": "",
  2762. "navigationStyle": "custom",
  2763. "app-plus": {
  2764. "bounce": "none"
  2765. }
  2766. }
  2767. },
  2768. {
  2769. "path": "healthMonitoring/sleep",
  2770. "style": {
  2771. // "navigationBarTitleText": "睡眠监测",
  2772. "navigationBarTitleText": "",
  2773. "navigationStyle": "custom",
  2774. "navigationBarTextStyle": "black",
  2775. "app-plus": {
  2776. "bounce": "none"
  2777. }
  2778. }
  2779. },
  2780. {
  2781. "path": "healthMonitoring/scanCode",
  2782. "style": {
  2783. "navigationBarTitleText": "扫描二维码",
  2784. "enablePullDownRefresh": false,
  2785. "navigationBarTextStyle": "black",
  2786. "navigationStyle": "custom",
  2787. "enablePullDownRefresh": false,
  2788. "backgroundColor": "#000000",
  2789. "backgroundColorTop": "#000000",
  2790. "app-plus": {
  2791. "titleNView": false,
  2792. "bounce": "none"
  2793. }
  2794. }
  2795. },
  2796. {
  2797. "path": "health/healthReport",
  2798. "style": {
  2799. "navigationBarTitleText": "健康报告",
  2800. "enablePullDownRefresh": false,
  2801. "navigationBarBackgroundColor": "#ffffff",
  2802. "navigationBarTextStyle": "black",
  2803. "app-plus": {
  2804. "bounce": "none"
  2805. }
  2806. }
  2807. },
  2808. {
  2809. "path": "health/healthWeekReport",
  2810. "style": {
  2811. "navigationBarTitleText": "健康报告",
  2812. "enablePullDownRefresh": false,
  2813. "navigationBarBackgroundColor": "#ffffff",
  2814. "navigationBarTextStyle": "black",
  2815. "navigationStyle": "custom",
  2816. "app-plus": {
  2817. "bounce": "none"
  2818. }
  2819. }
  2820. },
  2821. {
  2822. "path": "health/healthReportHistory",
  2823. "style": {
  2824. "navigationBarTitleText": "健康报告列表",
  2825. "enablePullDownRefresh": false,
  2826. "navigationBarBackgroundColor": "#ffffff",
  2827. "navigationBarTextStyle": "black",
  2828. "app-plus": {
  2829. "bounce": "none"
  2830. }
  2831. }
  2832. },
  2833. {
  2834. "path": "message/detail",
  2835. "style": {
  2836. "navigationBarTitleText": "",
  2837. "navigationStyle": "custom",
  2838. "enablePullDownRefresh": false,
  2839. "app-plus": {
  2840. "bounce": "none"
  2841. }
  2842. }
  2843. },
  2844. {
  2845. "path": "message/sosMap",
  2846. "style": {
  2847. "navigationBarTitleText": "SOS详情",
  2848. "enablePullDownRefresh": false,
  2849. "navigationBarBackgroundColor": "#ffffff",
  2850. "navigationBarTextStyle": "black",
  2851. "app-plus": {
  2852. "bounce": "none"
  2853. }
  2854. }
  2855. },
  2856. {
  2857. "path": "index/targetInfo",
  2858. "style": {
  2859. "navigationBarTitleText": "设备信息",
  2860. "navigationStyle": "custom",
  2861. "enablePullDownRefresh": false,
  2862. "navigationBarBackgroundColor": "#ffffff",
  2863. "navigationBarTextStyle": "black",
  2864. "app-plus": {
  2865. "bounce": "none"
  2866. }
  2867. }
  2868. },
  2869. {
  2870. "path": "healthMonitoring/bodyTemperature",
  2871. "style": {
  2872. // "navigationBarTitleText": "体温",
  2873. "navigationBarTitleText": "",
  2874. "navigationStyle": "custom",
  2875. "app-plus": {
  2876. "bounce": "none"
  2877. }
  2878. }
  2879. },
  2880. {
  2881. "path": "healthMonitoring/uricAcid",
  2882. "style": {
  2883. // "navigationBarTitleText": "尿酸监测",
  2884. "navigationBarTitleText": "",
  2885. "navigationStyle": "custom",
  2886. "app-plus": {
  2887. "bounce": "none"
  2888. }
  2889. }
  2890. },
  2891. {
  2892. "path": "healthMonitoring/uricAcidAbnormal",
  2893. "style": {
  2894. "navigationBarTitleText": "尿酸异常数据",
  2895. "enablePullDownRefresh": false,
  2896. "navigationBarBackgroundColor": "#ffffff",
  2897. "navigationBarTextStyle": "black",
  2898. "app-plus": {
  2899. "bounce": "none"
  2900. }
  2901. }
  2902. },
  2903. {
  2904. "path": "healthMonitoring/sports",
  2905. "style": {
  2906. // "navigationBarTitleText": "活动",
  2907. "navigationBarTitleText": "",
  2908. "navigationStyle": "custom",
  2909. "enablePullDownRefresh": false,
  2910. "navigationBarBackgroundColor": "#ffffff",
  2911. "navigationBarTextStyle": "black",
  2912. "app-plus": {
  2913. "bounce": "none"
  2914. }
  2915. }
  2916. },
  2917. {
  2918. "path": "healthMonitoring/sportsList",
  2919. "style": {
  2920. "navigationBarTitleText": "运动",
  2921. "enablePullDownRefresh": false,
  2922. "navigationBarBackgroundColor": "#ffffff",
  2923. "navigationBarTextStyle": "black",
  2924. "app-plus": {
  2925. "bounce": "none"
  2926. }
  2927. }
  2928. },
  2929. {
  2930. "path": "healthMonitoring/pressure",
  2931. "style": {
  2932. "navigationBarTitleText": "压力",
  2933. "navigationStyle": "custom",
  2934. "app-plus": {
  2935. "bounce": "none"
  2936. }
  2937. }
  2938. }
  2939. ]
  2940. },
  2941. {
  2942. "root": "pages_im",
  2943. "pages": [
  2944. {
  2945. "path": "pages/conversation/conversationList/index",
  2946. "style": {
  2947. "navigationBarTitleText": "",
  2948. "enablePullDownRefresh": false,
  2949. "disableScroll": true,
  2950. "navigationStyle": "custom",
  2951. "navigationBarTextStyle": "black"
  2952. }
  2953. },
  2954. {
  2955. "path": "pages/common/searchUserOrGroup/index",
  2956. "style": {
  2957. "navigationBarTitleText": "",
  2958. "enablePullDownRefresh": false,
  2959. "navigationStyle": "custom",
  2960. "navigationBarTextStyle": "black",
  2961. "app-plus": {
  2962. "bounce": "none"
  2963. }
  2964. }
  2965. },
  2966. {
  2967. "path": "pages/common/groupCard/index",
  2968. "style": {
  2969. "navigationBarTitleText": "",
  2970. "enablePullDownRefresh": false,
  2971. "navigationStyle": "custom",
  2972. "navigationBarTextStyle": "black"
  2973. }
  2974. },
  2975. {
  2976. "path": "pages/conversation/chating/index",
  2977. "style": {
  2978. "navigationBarTitleText": "",
  2979. "enablePullDownRefresh": false,
  2980. "disableScroll": true,
  2981. "navigationBarTextStyle": "black",
  2982. "navigationStyle": "custom",
  2983. "app-plus": {
  2984. "softinputMode": "adjustResize"
  2985. }
  2986. }
  2987. },
  2988. {
  2989. "path": "pages/conversation/singleSettings/index",
  2990. "style": {
  2991. "navigationBarTitleText": "",
  2992. "enablePullDownRefresh": false,
  2993. "navigationStyle": "custom",
  2994. "navigationBarTextStyle": "black",
  2995. "app-plus": {
  2996. "bounce": "none"
  2997. }
  2998. }
  2999. },
  3000. {
  3001. "path": "pages/conversation/groupSettings/index",
  3002. "style": {
  3003. "navigationBarTitleText": "",
  3004. "enablePullDownRefresh": false,
  3005. "navigationStyle": "custom",
  3006. "navigationBarTextStyle": "black",
  3007. "app-plus": {
  3008. "bounce": "none"
  3009. }
  3010. }
  3011. },
  3012. {
  3013. "path": "pages/conversation/groupManage/index",
  3014. "style": {
  3015. "navigationBarTitleText": "",
  3016. "enablePullDownRefresh": false,
  3017. "navigationStyle": "custom",
  3018. "navigationBarTextStyle": "black",
  3019. "app-plus": {
  3020. "bounce": "none"
  3021. }
  3022. }
  3023. },
  3024. {
  3025. "path": "pages/conversation/groupMemberList/index",
  3026. "style": {
  3027. "navigationBarTitleText": "",
  3028. "enablePullDownRefresh": false,
  3029. "navigationStyle": "custom",
  3030. "navigationBarTextStyle": "black",
  3031. "app-plus": {
  3032. "bounce": "none"
  3033. }
  3034. }
  3035. },
  3036. {
  3037. "path": "pages/conversation/groupAnnouncement/index",
  3038. "style": {
  3039. "navigationBarTitleText": "",
  3040. "enablePullDownRefresh": false,
  3041. "navigationStyle": "custom",
  3042. "disableScroll": true,
  3043. "app-plus": {
  3044. "softinputMode": "adjustResize"
  3045. }
  3046. }
  3047. },
  3048. {
  3049. "path": "pages/conversation/groupMessageReadState/index",
  3050. "style": {
  3051. "navigationBarTitleText": "",
  3052. "enablePullDownRefresh": false,
  3053. "navigationStyle": "custom",
  3054. "navigationBarTextStyle": "black",
  3055. "app-plus": {
  3056. "bounce": "none"
  3057. }
  3058. }
  3059. },
  3060. {
  3061. "path": "pages/conversation/searchMessage/index",
  3062. "style": {
  3063. "navigationBarTitleText": "",
  3064. "disableScroll": true,
  3065. "enablePullDownRefresh": false,
  3066. "navigationStyle": "custom",
  3067. "navigationBarTextStyle": "black",
  3068. "app-plus": {
  3069. "bounce": "none"
  3070. }
  3071. }
  3072. },
  3073. {
  3074. "path": "pages/conversation/searchMediaMessage/index",
  3075. "style": {
  3076. "navigationBarTitleText": "",
  3077. "disableScroll": true,
  3078. "enablePullDownRefresh": false,
  3079. "navigationStyle": "custom",
  3080. "navigationBarTextStyle": "black",
  3081. "app-plus": {
  3082. "bounce": "none"
  3083. }
  3084. }
  3085. },
  3086. {
  3087. "path": "pages/conversation/searchFileMessage/index",
  3088. "style": {
  3089. "navigationBarTitleText": "",
  3090. "disableScroll": true,
  3091. "enablePullDownRefresh": false,
  3092. "navigationStyle": "custom",
  3093. "navigationBarTextStyle": "black",
  3094. "app-plus": {
  3095. "bounce": "none"
  3096. }
  3097. }
  3098. },
  3099. {
  3100. "path": "pages/conversation/previewLocation/index",
  3101. "style": {
  3102. "navigationBarTitleText": "",
  3103. "enablePullDownRefresh": false,
  3104. "navigationStyle": "custom",
  3105. "navigationBarTextStyle": "black",
  3106. "app-plus": {
  3107. "bounce": "none"
  3108. }
  3109. }
  3110. },
  3111. {
  3112. "path": "pages/conversation/notifyMessageList/index",
  3113. "style": {
  3114. "navigationBarTitleText": "",
  3115. "enablePullDownRefresh": false,
  3116. "navigationStyle": "custom",
  3117. "navigationBarTextStyle": "black",
  3118. "app-plus": {
  3119. "bounce": "none"
  3120. }
  3121. }
  3122. },
  3123. {
  3124. "path": "pages/common/webviewWrapper/index",
  3125. "style": {
  3126. "navigationBarTitleText": "",
  3127. "enablePullDownRefresh": false,
  3128. "navigationStyle": "custom",
  3129. "navigationBarTextStyle": "black",
  3130. "app-plus": {
  3131. "bounce": "none"
  3132. }
  3133. }
  3134. },
  3135. {
  3136. "path": "pages/conversation/previewVideo/index",
  3137. "style": {
  3138. "navigationBarTitleText": "",
  3139. "enablePullDownRefresh": false,
  3140. "navigationBarTextStyle": "black",
  3141. "navigationStyle": "custom",
  3142. "app-plus": {
  3143. "bounce": "none"
  3144. }
  3145. }
  3146. },
  3147. {
  3148. "path": "pages/conversation/previewFile/index",
  3149. "style": {
  3150. "navigationBarTitleText": "",
  3151. "enablePullDownRefresh": false,
  3152. "navigationStyle": "custom",
  3153. "navigationBarTextStyle": "black",
  3154. "app-plus": {
  3155. "bounce": "none"
  3156. }
  3157. }
  3158. },
  3159. {
  3160. "path": "pages/conversation/memberAuthority/index",
  3161. "style": {
  3162. "navigationBarTitleText": "",
  3163. "enablePullDownRefresh": false,
  3164. "navigationStyle": "custom",
  3165. "navigationBarTextStyle": "black",
  3166. "app-plus": {
  3167. "bounce": "none"
  3168. }
  3169. }
  3170. },
  3171. {
  3172. "path": "pages/conversation/previewMerge/index",
  3173. "style": {
  3174. "navigationBarTitleText": "",
  3175. "enablePullDownRefresh": false,
  3176. "navigationStyle": "custom",
  3177. "navigationBarTextStyle": "black",
  3178. "app-plus": {
  3179. "bounce": "none"
  3180. }
  3181. }
  3182. },
  3183. {
  3184. "path": "pages/conversation/setFontSize/index",
  3185. "style": {
  3186. "navigationBarTitleText": "",
  3187. "enablePullDownRefresh": false,
  3188. "navigationStyle": "custom",
  3189. "navigationBarTextStyle": "black",
  3190. "app-plus": {
  3191. "bounce": "none"
  3192. }
  3193. }
  3194. },
  3195. {
  3196. "path": "pages/conversation/setChatBackgroup/index",
  3197. "style": {
  3198. "navigationBarTitleText": "",
  3199. "enablePullDownRefresh": false,
  3200. "navigationStyle": "custom",
  3201. "navigationBarTextStyle": "black",
  3202. "app-plus": {
  3203. "bounce": "none"
  3204. }
  3205. }
  3206. },
  3207. {
  3208. "path": "pages/conversation/updateGroupOrNickname/index",
  3209. "style": {
  3210. "navigationBarTitleText": "",
  3211. "enablePullDownRefresh": false,
  3212. "navigationStyle": "custom",
  3213. "navigationBarTextStyle": "black",
  3214. "disableScroll": true,
  3215. "app-plus": {
  3216. "bounce": "none"
  3217. }
  3218. }
  3219. },
  3220. // {
  3221. // "path": "pages/moments/index/index",
  3222. // "style": {
  3223. // "navigationBarTitleText": "",
  3224. // "enablePullDownRefresh": false,
  3225. // "disableScroll": true,
  3226. // "app-plus": {
  3227. // "softinputMode": "adjustResize"
  3228. // }
  3229. // }
  3230. // },
  3231. // {
  3232. // "path": "pages/moments/interactiveMessage/index",
  3233. // "style": {
  3234. // "navigationBarTitleText": "",
  3235. // "enablePullDownRefresh": false
  3236. // }
  3237. // },
  3238. // {
  3239. // "path": "pages/moments/momentsDetails/index",
  3240. // "style": {
  3241. // "navigationBarTitleText": "",
  3242. // "enablePullDownRefresh": false,
  3243. // "app-plus": {
  3244. // "softinputMode": "adjustResize"
  3245. // }
  3246. // }
  3247. // },
  3248. // {
  3249. // "path": "pages/moments/momentsRelease/index",
  3250. // "style": {
  3251. // "navigationBarTitleText": "",
  3252. // "enablePullDownRefresh": false
  3253. // }
  3254. // },
  3255. // {
  3256. // "path": "pages/moments/mementsVisibility/index",
  3257. // "style": {
  3258. // "navigationBarTitleText": "",
  3259. // "enablePullDownRefresh": false
  3260. // }
  3261. // },
  3262. // {
  3263. // "path": "pages/moments/designatedMoments/index",
  3264. // "style": {
  3265. // "navigationBarTitleText": "",
  3266. // "enablePullDownRefresh": false,
  3267. // "app-plus": {
  3268. // "softinputMode": "adjustResize"
  3269. // }
  3270. // }
  3271. // },
  3272. {
  3273. "path": "pages/common/globalSearch/index",
  3274. "style": {
  3275. "navigationBarTitleText": "搜素",
  3276. "enablePullDownRefresh": false,
  3277. "navigationStyle": "custom",
  3278. "navigationBarTextStyle": "black",
  3279. "app-plus": {
  3280. "bounce": "none"
  3281. }
  3282. }
  3283. },
  3284. {
  3285. "path": "pages/common/globalChatLosPreview/index",
  3286. "style": {
  3287. "navigationBarTitleText": "",
  3288. "enablePullDownRefresh": false,
  3289. "disableScroll": true,
  3290. "navigationStyle": "custom"
  3291. }
  3292. },
  3293. {
  3294. "path": "pages/common/previewHistoryMessage/index",
  3295. "style": {
  3296. "navigationBarTitleText": "",
  3297. "enablePullDownRefresh": false,
  3298. "navigationStyle": "custom",
  3299. "navigationBarTextStyle": "black",
  3300. "disableScroll": true
  3301. }
  3302. },
  3303. {
  3304. "path": "pages/common/createGroup/index",
  3305. "style": {
  3306. "navigationBarTitleText": "发起群聊",
  3307. "enablePullDownRefresh": false,
  3308. "navigationStyle": "custom",
  3309. "navigationBarTextStyle": "black",
  3310. "app-plus": {
  3311. "bounce": "none"
  3312. }
  3313. }
  3314. },
  3315. {
  3316. "path": "pages/common/meetingCenter/index",
  3317. "style": {
  3318. "navigationBarTitleText": "视频会议",
  3319. "enablePullDownRefresh": false,
  3320. "navigationStyle": "custom",
  3321. "navigationBarTextStyle": "black",
  3322. "app-plus": {
  3323. "bounce": "none"
  3324. }
  3325. }
  3326. },
  3327. {
  3328. "path": "pages/contact/index/index",
  3329. "style": {
  3330. "navigationBarTitleText": "",
  3331. "enablePullDownRefresh": false,
  3332. "navigationStyle": "custom",
  3333. "navigationBarTextStyle": "black"
  3334. }
  3335. },
  3336. {
  3337. "path": "pages/contact/contactAdd/index",
  3338. "style": {
  3339. "navigationBarTitleText": "通讯录",
  3340. "enablePullDownRefresh": false,
  3341. "navigationStyle": "custom",
  3342. "navigationBarTextStyle": "black"
  3343. }
  3344. },
  3345. {
  3346. "path": "pages/contact/switchJoinGroup/index",
  3347. "style": {
  3348. "navigationBarTitleText": "",
  3349. "enablePullDownRefresh": false,
  3350. "navigationStyle": "custom",
  3351. "navigationBarTextStyle": "black"
  3352. }
  3353. },
  3354. {
  3355. "path": "pages/contact/friendList/index",
  3356. "style": {
  3357. "navigationBarTitleText": "我的好友",
  3358. "enablePullDownRefresh": false,
  3359. "navigationStyle": "custom",
  3360. "navigationBarTextStyle": "black"
  3361. }
  3362. },
  3363. {
  3364. "path": "pages/contact/groupList/index",
  3365. "style": {
  3366. "navigationBarTitleText": "我的群组",
  3367. "enablePullDownRefresh": false,
  3368. "navigationStyle": "custom",
  3369. "navigationBarTextStyle": "black"
  3370. }
  3371. },
  3372. {
  3373. "path": "pages/contact/searchUserOrGroup/index",
  3374. "style": {
  3375. "navigationBarTitleText": "",
  3376. "enablePullDownRefresh": false,
  3377. "navigationStyle": "custom",
  3378. "navigationBarTextStyle": "black"
  3379. }
  3380. },
  3381. {
  3382. "path": "pages/contact/applicationList/index",
  3383. "style": {
  3384. "navigationBarTitleText": "",
  3385. "enablePullDownRefresh": false,
  3386. "navigationStyle": "custom",
  3387. "navigationBarTextStyle": "black"
  3388. }
  3389. },
  3390. {
  3391. "path": "pages/contact/applicationListDetails/index",
  3392. "style": {
  3393. "navigationBarTitleText": "",
  3394. "enablePullDownRefresh": false,
  3395. "navigationStyle": "custom",
  3396. "navigationBarTextStyle": "black"
  3397. }
  3398. },
  3399. {
  3400. "path": "pages/contact/applicationDetails/index",
  3401. "style": {
  3402. "navigationBarTitleText": "",
  3403. "enablePullDownRefresh": false,
  3404. "navigationStyle": "custom",
  3405. "navigationBarTextStyle": "black"
  3406. }
  3407. },
  3408. {
  3409. "path": "pages/contact/searchAddedFriend/index",
  3410. "style": {
  3411. "navigationBarTitleText": "搜索好友",
  3412. "enablePullDownRefresh": false,
  3413. "navigationStyle": "custom",
  3414. "navigationBarTextStyle": "black"
  3415. }
  3416. },
  3417. {
  3418. "path": "pages/common/userCard/index",
  3419. "style": {
  3420. "navigationBarTitleText": "个人主页",
  3421. "enablePullDownRefresh": false,
  3422. "navigationStyle": "custom",
  3423. "navigationBarTextStyle": "black"
  3424. }
  3425. },
  3426. {
  3427. "path": "pages/common/userOrGroupQrCode/index",
  3428. "style": {
  3429. "navigationBarTitleText": "二维码",
  3430. "enablePullDownRefresh": false,
  3431. "navigationStyle": "custom",
  3432. "navigationBarTextStyle": "black"
  3433. }
  3434. },
  3435. {
  3436. "path": "pages/common/sendAddRequest/index",
  3437. "style": {
  3438. "navigationBarTitleText": "",
  3439. "enablePullDownRefresh": false,
  3440. "navigationStyle": "custom",
  3441. "navigationBarTextStyle": "black"
  3442. }
  3443. },
  3444. {
  3445. "path": "pages/common/contactChoose/index",
  3446. "style": {
  3447. "navigationBarTitleText": "联系人",
  3448. "enablePullDownRefresh": false,
  3449. "navigationStyle": "custom",
  3450. "navigationBarTextStyle": "black"
  3451. }
  3452. },
  3453. {
  3454. "path": "pages/common/userCardMore/index",
  3455. "style": {
  3456. "navigationBarTitleText": "个人资料/好友设置",
  3457. "enablePullDownRefresh": false,
  3458. "navigationStyle": "custom",
  3459. "navigationBarTextStyle": "black"
  3460. }
  3461. },
  3462. {
  3463. "path": "pages/common/markOrIDPage/index",
  3464. "style": {
  3465. "navigationBarTitleText": "工作圈",
  3466. "enablePullDownRefresh": false,
  3467. "navigationStyle": "custom",
  3468. "navigationBarTextStyle": "black"
  3469. }
  3470. },
  3471. {
  3472. "path": "pages/common/detailsFileds/index",
  3473. "style": {
  3474. "navigationBarTitleText": "个人资料明细",
  3475. "enablePullDownRefresh": false,
  3476. "navigationStyle": "custom",
  3477. "navigationBarTextStyle": "black"
  3478. }
  3479. },
  3480. {
  3481. "path": "pages/common/webH5/index",
  3482. "style": {
  3483. "navigationBarTitleText": "课程",
  3484. "enablePullDownRefresh": false,
  3485. "navigationBarTextStyle": "black"
  3486. }
  3487. }
  3488. ]
  3489. },
  3490. {
  3491. "root": "pages_manage",
  3492. "pages": [
  3493. {
  3494. "path": "login",
  3495. "style": {
  3496. "navigationBarTitleText": "登录",
  3497. "enablePullDownRefresh": false,
  3498. "navigationBarTextStyle": "black"
  3499. }
  3500. },
  3501. {
  3502. "path": "index",
  3503. "style": {
  3504. "navigationBarTitleText": "数据",
  3505. "enablePullDownRefresh": false,
  3506. "navigationBarTextStyle": "black"
  3507. }
  3508. },
  3509. {
  3510. "path": "dataDetails",
  3511. "style": {
  3512. "navigationBarTitleText": "课程数据详情",
  3513. "enablePullDownRefresh": false,
  3514. "navigationBarTextStyle": "black"
  3515. }
  3516. },
  3517. {
  3518. "path": "selectMember",
  3519. "style": {
  3520. "navigationBarTitleText": "选择会员",
  3521. "enablePullDownRefresh": false,
  3522. "navigationStyle": "custom",
  3523. "navigationBarTextStyle": "black"
  3524. }
  3525. },
  3526. {
  3527. "path": "statistic",
  3528. "style": {
  3529. "navigationBarTitleText": "课程统计",
  3530. "enablePullDownRefresh": false,
  3531. "navigationBarTextStyle": "black"
  3532. }
  3533. },
  3534. {
  3535. "path": "manageDataDetail",
  3536. "style": {
  3537. "navigationBarTitleText": "销售详情",
  3538. "enablePullDownRefresh": false,
  3539. "navigationBarTextStyle": "black"
  3540. }
  3541. },
  3542. {
  3543. "path": "createTask",
  3544. "style": {
  3545. "navigationBarTitleText": "创建任务",
  3546. "enablePullDownRefresh": false,
  3547. "navigationBarTextStyle": "black"
  3548. }
  3549. },
  3550. {
  3551. "path": "taskDetail",
  3552. "style": {
  3553. "navigationBarTitleText": "任务详情",
  3554. "enablePullDownRefresh": false,
  3555. "navigationBarTextStyle": "black"
  3556. }
  3557. }
  3558. ]
  3559. },
  3560. {
  3561. "root": "pages_managedata",
  3562. "pages": [
  3563. {
  3564. "path": "coursedetail",
  3565. "style": {
  3566. "navigationBarTitleText": "课程详情",
  3567. "enablePullDownRefresh": false,
  3568. "navigationBarTextStyle": "black"
  3569. }
  3570. },
  3571. {
  3572. "path": "vipdetail",
  3573. "style": {
  3574. "navigationBarTitleText": "会员详情",
  3575. "enablePullDownRefresh": false,
  3576. "navigationBarTextStyle": "black"
  3577. }
  3578. },
  3579. {
  3580. "path": "userInfo",
  3581. "style": {
  3582. "navigationBarTitleText": "用户信息",
  3583. "enablePullDownRefresh": false,
  3584. "navigationBarTextStyle": "black"
  3585. }
  3586. },
  3587. {
  3588. "path": "editUser",
  3589. "style": {
  3590. "navigationBarTitleText": "设置",
  3591. "enablePullDownRefresh": false,
  3592. "navigationBarTextStyle": "black"
  3593. }
  3594. },
  3595. {
  3596. "path": "lableSetup",
  3597. "style": {
  3598. "navigationBarTitleText": "标签设置",
  3599. "enablePullDownRefresh": false,
  3600. "navigationBarTextStyle": "black"
  3601. }
  3602. },
  3603. {
  3604. "path": "about",
  3605. "style": {
  3606. "navigationBarTitleText": "关于我们",
  3607. "enablePullDownRefresh": false,
  3608. "navigationBarTextStyle": "black"
  3609. }
  3610. },
  3611. {
  3612. "path": "users",
  3613. "style": {
  3614. "navigationBarTitleText": "审核销售",
  3615. "enablePullDownRefresh": false,
  3616. "navigationBarTextStyle": "black"
  3617. }
  3618. },
  3619. {
  3620. "path": "managedetail",
  3621. "style": {
  3622. "navigationBarTitleText": "审核销售",
  3623. "enablePullDownRefresh": false,
  3624. "navigationBarTextStyle": "black"
  3625. }
  3626. },
  3627. {
  3628. "path": "exprotList",
  3629. "style": {
  3630. "navigationBarTitleText": "审核列表",
  3631. "enablePullDownRefresh": false,
  3632. "navigationBarTextStyle": "black"
  3633. }
  3634. },
  3635. {
  3636. "path": "saleInfo",
  3637. "style": {
  3638. "navigationBarTitleText": "员工详情",
  3639. "enablePullDownRefresh": false,
  3640. "navigationBarTextStyle": "black"
  3641. }
  3642. },
  3643. {
  3644. "path": "changeVip",
  3645. "style": {
  3646. "navigationBarTitleText": "更换会员归属",
  3647. "enablePullDownRefresh": false,
  3648. "navigationBarTextStyle": "black"
  3649. }
  3650. }
  3651. ]
  3652. },
  3653. {
  3654. "root": "pages_course",
  3655. "pages": [
  3656. {
  3657. "path": "video",
  3658. "style": {
  3659. "navigationBarTitleText": "课程",
  3660. "navigationStyle": "custom",
  3661. "usingComponents": {
  3662. "uni-popup": "/uni_modules/uni-popup/components/uni-popup/uni-popup"
  3663. },
  3664. "componentPlaceholder": {
  3665. "uni-popup": "view"
  3666. }
  3667. }
  3668. },
  3669. {
  3670. "path": "feedback",
  3671. "style": {
  3672. "navigationBarTitleText": "投诉反馈",
  3673. "navigationStyle": "custom"
  3674. }
  3675. },
  3676. {
  3677. "path": "reward",
  3678. "style": {
  3679. "navigationBarTitleText": "领取奖励",
  3680. "enablePullDownRefresh": false
  3681. }
  3682. },
  3683. {
  3684. "path": "becomeVIP",
  3685. "style": {
  3686. "navigationBarTitleText": "注册会员",
  3687. "enablePullDownRefresh": false
  3688. }
  3689. },
  3690. {
  3691. "path": "becomeSale",
  3692. "style": {
  3693. "navigationBarTitleText": "注册销售",
  3694. "enablePullDownRefresh": false
  3695. }
  3696. },
  3697. {
  3698. "path": "webviewA",
  3699. "style": {
  3700. "navigationBarTitleText": "授权登录",
  3701. "enablePullDownRefresh": false
  3702. }
  3703. },
  3704. {
  3705. "path": "videovip",
  3706. "style": {
  3707. "navigationBarTitleText": "看课详情",
  3708. "enablePullDownRefresh": false
  3709. }
  3710. },
  3711. {
  3712. "path": "webview",
  3713. "style": {
  3714. "navigationBarTitleText": "授权登录"
  3715. }
  3716. }
  3717. ]
  3718. },
  3719. {
  3720. "root": "pages_enter",
  3721. "pages": [
  3722. {
  3723. "path": "index",
  3724. "style": {
  3725. "navigationBarTitleText": "娱乐模式",
  3726. "navigationStyle": "custom",
  3727. "enablePullDownRefresh": false
  3728. }
  3729. },
  3730. {
  3731. "path": "games",
  3732. "style": {
  3733. "navigationBarTitleText": "小游戏",
  3734. "enablePullDownRefresh": false
  3735. }
  3736. },
  3737. {
  3738. "path": "drama",
  3739. "style": {
  3740. "navigationBarTitleText": "短剧",
  3741. "navigationStyle": "custom",
  3742. "enablePullDownRefresh": false
  3743. }
  3744. },
  3745. {
  3746. "path": "novel",
  3747. "style": {
  3748. "navigationBarTitleText": "小说",
  3749. "navigationStyle": "custom",
  3750. "enablePullDownRefresh": false
  3751. }
  3752. },
  3753. {
  3754. "path": "sports",
  3755. "style": {
  3756. "navigationBarTitleText": "运动",
  3757. "enablePullDownRefresh": false
  3758. }
  3759. },
  3760. {
  3761. "path": "program",
  3762. "style": {
  3763. "navigationBarTitleText": "节目",
  3764. "enablePullDownRefresh": false
  3765. }
  3766. },
  3767. {
  3768. "path": "activity/index",
  3769. "style": {
  3770. "navigationBarTitleText": "广场舞大赛",
  3771. "navigationStyle": "custom",
  3772. "enablePullDownRefresh": false
  3773. }
  3774. },
  3775. {
  3776. "path": "activity/detail",
  3777. "style": {
  3778. "navigationBarTitleText": "活动详情",
  3779. "navigationStyle": "custom",
  3780. "enablePullDownRefresh": false
  3781. }
  3782. },
  3783. {
  3784. "path": "activity/create",
  3785. "style": {
  3786. "navigationBarTitleText": "创建队伍",
  3787. "navigationStyle": "custom",
  3788. "enablePullDownRefresh": false
  3789. }
  3790. },
  3791. {
  3792. "path": "activity/success",
  3793. "style": {
  3794. "navigationBarTitleText": "队伍创建成功",
  3795. "navigationStyle": "custom",
  3796. "enablePullDownRefresh": false
  3797. }
  3798. },
  3799. {
  3800. "path": "activity/team",
  3801. "style": {
  3802. "navigationBarTitleText": "我的队伍",
  3803. "navigationStyle": "custom",
  3804. "enablePullDownRefresh": false
  3805. }
  3806. },
  3807. {
  3808. "path": "activity/publishWork",
  3809. "style": {
  3810. "navigationBarTitleText": "发布作品",
  3811. "enablePullDownRefresh": false
  3812. }
  3813. }
  3814. ]
  3815. },
  3816. {
  3817. "root": "pages_user",
  3818. "pages": [
  3819. {
  3820. "path": "user/addPatient",
  3821. "style": {
  3822. "navigationBarTitleText": "创建健康档案",
  3823. "app-plus": {
  3824. "titleNView": false
  3825. }
  3826. }
  3827. },
  3828. {
  3829. "path": "user/message",
  3830. "style": {
  3831. "navigationBarTitleText": "消息",
  3832. "enablePullDownRefresh": false
  3833. }
  3834. },
  3835. {
  3836. "path": "user/msgDetail",
  3837. "style": {
  3838. "navigationBarTitleText": "系统消息",
  3839. "enablePullDownRefresh": false
  3840. }
  3841. },
  3842. {
  3843. "path": "user/storeOrder",
  3844. "style": {
  3845. // "navigationBarTitleText": "我的服务",
  3846. "navigationBarTitleText": "我的订单",
  3847. "enablePullDownRefresh": false
  3848. }
  3849. },
  3850. {
  3851. "path": "user/storeOrderDetail",
  3852. "style": {
  3853. "navigationBarTitleText": "服务详情",
  3854. "navigationStyle": "custom",
  3855. "enablePullDownRefresh": false
  3856. }
  3857. },
  3858. {
  3859. "path": "user/doctorOrder",
  3860. "style": {
  3861. "navigationBarTitleText": "问诊列表",
  3862. "enablePullDownRefresh": false
  3863. }
  3864. },
  3865. {
  3866. "path": "user/patient",
  3867. "style": {
  3868. "navigationBarTitleText": "健康档案",
  3869. "enablePullDownRefresh": false
  3870. }
  3871. },
  3872. {
  3873. "path": "user/addAddress",
  3874. "style": {
  3875. "navigationBarTitleText": "新建收货地址",
  3876. "enablePullDownRefresh": false
  3877. }
  3878. },
  3879. {
  3880. "path": "user/address",
  3881. "style": {
  3882. "navigationBarTitleText": "收货地址",
  3883. "enablePullDownRefresh": false
  3884. }
  3885. },
  3886. {
  3887. "path": "user/integral",
  3888. "style": {
  3889. "navigationBarTitleText": "我的福币",
  3890. "navigationStyle": "custom",
  3891. "enablePullDownRefresh": false
  3892. }
  3893. },
  3894. {
  3895. "path": "user/refundOrderList",
  3896. "style": {
  3897. "navigationBarTitleText": "售后服务",
  3898. "enablePullDownRefresh": false
  3899. }
  3900. },
  3901. {
  3902. "path": "user/refundOrderDetail",
  3903. "style": {
  3904. "navigationBarTitleText": "处理进度",
  3905. "navigationStyle": "custom",
  3906. "enablePullDownRefresh": false
  3907. }
  3908. },
  3909. {
  3910. "path": "user/refundOrderLogs",
  3911. "style": {
  3912. "navigationBarTitleText": "退款详情",
  3913. "navigationStyle": "custom",
  3914. "enablePullDownRefresh": false
  3915. }
  3916. },
  3917. {
  3918. "path": "user/storeOrderDelivery",
  3919. "style": {
  3920. "navigationBarTitleText": "物流信息",
  3921. "navigationStyle": "custom",
  3922. "enablePullDownRefresh": false
  3923. }
  3924. },
  3925. {
  3926. "path": "user/refundOrder",
  3927. "style": {
  3928. "navigationBarTitleText": "申请售后",
  3929. "enablePullDownRefresh": false
  3930. }
  3931. },
  3932. {
  3933. "path": "user/prescribeOrder",
  3934. "style": {
  3935. "navigationBarTitleText": "处方单",
  3936. "enablePullDownRefresh": false
  3937. }
  3938. },
  3939. {
  3940. "path": "user/pay",
  3941. "style": {
  3942. "navigationBarTitleText": "收款",
  3943. "enablePullDownRefresh": false
  3944. }
  3945. },
  3946. {
  3947. "path": "user/success",
  3948. "style": {
  3949. "navigationBarTitleText": "支付结果",
  3950. "enablePullDownRefresh": false
  3951. }
  3952. },
  3953. {
  3954. "path": "user/refundOrderProduct",
  3955. "style": {
  3956. "navigationBarTitleText": "订单售后",
  3957. "enablePullDownRefresh": false
  3958. }
  3959. },
  3960. {
  3961. "path": "user/refundOrderDelivery",
  3962. "style": {
  3963. "navigationBarTitleText": "物流信息",
  3964. "enablePullDownRefresh": false
  3965. }
  3966. },
  3967. {
  3968. "path": "user/userTui",
  3969. "style": {
  3970. "navigationBarTitleText": "我的推广",
  3971. "enablePullDownRefresh": false
  3972. }
  3973. },
  3974. {
  3975. "path": "user/userTuiProduct",
  3976. "style": {
  3977. "navigationBarTitleText": "推广产品",
  3978. "enablePullDownRefresh": false
  3979. }
  3980. },
  3981. {
  3982. "path": "user/userTuiImg",
  3983. "style": {
  3984. "navigationBarTitleText": "推广海报",
  3985. "enablePullDownRefresh": false
  3986. }
  3987. },
  3988. {
  3989. "path": "user/userTuiList",
  3990. "style": {
  3991. "navigationBarTitleText": "我的推荐人",
  3992. "enablePullDownRefresh": false
  3993. }
  3994. },
  3995. {
  3996. "path": "user/userTuiMoneyList",
  3997. "style": {
  3998. "navigationBarTitleText": "佣金记录",
  3999. "enablePullDownRefresh": false
  4000. }
  4001. },
  4002. {
  4003. "path": "user/userTuiOrderList",
  4004. "style": {
  4005. "navigationBarTitleText": "服务记录",
  4006. "enablePullDownRefresh": false
  4007. }
  4008. },
  4009. {
  4010. "path": "user/storeProductRelation",
  4011. "style": {
  4012. "navigationBarTitleText": "我的足迹",
  4013. "enablePullDownRefresh": false
  4014. }
  4015. },
  4016. {
  4017. "path": "user/personInfo",
  4018. "style": {
  4019. "navigationBarTitleText": "个人信息",
  4020. "enablePullDownRefresh": false
  4021. }
  4022. },
  4023. {
  4024. "path": "user/userTuiMoney",
  4025. "style": {
  4026. "navigationBarTitleText": "提现管理",
  4027. "enablePullDownRefresh": false
  4028. }
  4029. },
  4030. {
  4031. "path": "user/userTuiExtractLog",
  4032. "style": {
  4033. "navigationBarTitleText": "提现记录",
  4034. "enablePullDownRefresh": false
  4035. }
  4036. },
  4037. {
  4038. "path": "user/doc",
  4039. "style": {
  4040. "navigationBarTitleText": "健康档案",
  4041. "enablePullDownRefresh": false
  4042. }
  4043. },
  4044. {
  4045. "path": "user/addDoc",
  4046. "style": {
  4047. "navigationBarTitleText": "创建健康档案",
  4048. "enablePullDownRefresh": false
  4049. }
  4050. },
  4051. {
  4052. "path": "user/docDetail",
  4053. "style": {
  4054. "navigationBarTitleText": "健康档案",
  4055. "navigationBarBackgroundColor": "#dff9f5",
  4056. "enablePullDownRefresh": false
  4057. }
  4058. },
  4059. {
  4060. "path": "user/docRecord",
  4061. "style": {
  4062. "navigationBarTitleText": "健康记录",
  4063. "enablePullDownRefresh": false
  4064. }
  4065. },
  4066. {
  4067. "path": "user/addDocRecord",
  4068. "style": {
  4069. "navigationBarTitleText": "添加健康记录",
  4070. "enablePullDownRefresh": false
  4071. }
  4072. },
  4073. {
  4074. "path": "user/userTuiAdd",
  4075. "style": {
  4076. "navigationBarTitleText": "申请推广员",
  4077. "enablePullDownRefresh": false
  4078. }
  4079. },
  4080. {
  4081. "path": "user/paymentOrderRemain",
  4082. "style": {
  4083. "navigationBarTitleText": "支付尾款",
  4084. "enablePullDownRefresh": false
  4085. }
  4086. },
  4087. {
  4088. "path": "user/otherPaymentOrder",
  4089. "style": {
  4090. "navigationBarTitleText": "亲友代付",
  4091. "enablePullDownRefresh": false
  4092. }
  4093. },
  4094. {
  4095. "path": "user/otherPaySuccess",
  4096. "style": {
  4097. "navigationBarTitleText": "支付成功",
  4098. "enablePullDownRefresh": false
  4099. }
  4100. },
  4101. {
  4102. "path": "user/otherPaymentOrderRemain",
  4103. "style": {
  4104. "navigationBarTitleText": "亲友代付尾款",
  4105. "enablePullDownRefresh": false
  4106. }
  4107. }
  4108. ]
  4109. },
  4110. {
  4111. "root": "pages_company",
  4112. "pages": [
  4113. {
  4114. "path": "auth/login",
  4115. "style": {
  4116. "navigationBarTitleText": "销售员登录"
  4117. // "app-plus": {
  4118. // "titleNView": false
  4119. // }
  4120. }
  4121. },
  4122. {
  4123. "path": "index",
  4124. "style": {
  4125. "navigationBarTitleText": "销售管理首页"
  4126. // "app-plus": {
  4127. // "titleNView": false
  4128. // }
  4129. }
  4130. },
  4131. {
  4132. "path": "storeOrder",
  4133. "style": {
  4134. "navigationBarTitleText": "服务管理"
  4135. }
  4136. },
  4137. {
  4138. "path": "storeOrderDetail",
  4139. "style": {
  4140. "navigationBarTitleText": "服务详情",
  4141. "navigationStyle": "custom",
  4142. "enablePullDownRefresh": false
  4143. }
  4144. },
  4145. {
  4146. "path": "storeProductPackage",
  4147. "style": {
  4148. "navigationBarTitleText": "产品套餐"
  4149. }
  4150. },
  4151. {
  4152. "path": "storeProductPackageDetails",
  4153. "style": {
  4154. "navigationBarTitleText": "套餐详情"
  4155. }
  4156. },
  4157. {
  4158. "path": "coupon",
  4159. "style": {
  4160. "navigationBarTitleText": "优惠券"
  4161. }
  4162. },
  4163. {
  4164. "path": "couponDetails",
  4165. "style": {
  4166. "navigationBarTitleText": "优惠券详情"
  4167. }
  4168. },
  4169. {
  4170. "path": "order/productList",
  4171. "style": {
  4172. "navigationBarTitleText": "产品列表"
  4173. }
  4174. },
  4175. {
  4176. "path": "order/productDetails",
  4177. "style": {
  4178. "navigationBarTitleText": "产品详情",
  4179. "enablePullDownRefresh": false
  4180. }
  4181. },
  4182. {
  4183. "path": "order/cart",
  4184. "style": {
  4185. "navigationBarTitleText": "购物车"
  4186. }
  4187. },
  4188. {
  4189. "path": "order/confirmOrder",
  4190. "style": {
  4191. "navigationBarTitleText": "推荐服务信息"
  4192. }
  4193. },
  4194. {
  4195. "path": "order/confirmCompanyOrder",
  4196. "style": {
  4197. "navigationBarTitleText": "推荐服务"
  4198. }
  4199. },
  4200. {
  4201. "path": "order/coupon",
  4202. "style": {
  4203. "navigationBarTitleText": "制单优惠券"
  4204. }
  4205. },
  4206. {
  4207. "path": "order/productShowDetails",
  4208. "style": {
  4209. "navigationBarTitleText": "产品详情"
  4210. }
  4211. },
  4212. {
  4213. "path": "alipayImg",
  4214. "style": {
  4215. "navigationBarTitleText": "支付宝收款"
  4216. }
  4217. },
  4218. {
  4219. "path": "wechatcode",
  4220. "style": {
  4221. "navigationBarTitleText": "微信收款码"
  4222. }
  4223. },
  4224. {
  4225. "path": "card",
  4226. "style": {
  4227. "navigationBarTitleText": "我的名片"
  4228. }
  4229. },
  4230. {
  4231. "path": "managerOrder/productList",
  4232. "style": {
  4233. "navigationBarTitleText": "商品列表",
  4234. "app-plus": {
  4235. "titleNView": false
  4236. }
  4237. }
  4238. },
  4239. {
  4240. "path": "managerOrder/productDetails",
  4241. "style": {
  4242. "navigationBarTitleText": "商品详情",
  4243. "enablePullDownRefresh": false
  4244. }
  4245. },
  4246. {
  4247. "path": "managerOrder/confirmOrder",
  4248. "style": {
  4249. "navigationBarTitleText": "提交订单",
  4250. "app-plus": {
  4251. "titleNView": false
  4252. }
  4253. }
  4254. }
  4255. ]
  4256. },
  4257. {
  4258. "root": "pages_shopping",
  4259. "pages": [
  4260. {
  4261. "path": "shopping/confirmPackageOrder",
  4262. "style": {
  4263. "navigationBarTitleText": "确认支付",
  4264. "enablePullDownRefresh": false
  4265. }
  4266. },
  4267. {
  4268. "path": "shopping/confirmCreateOrder",
  4269. "style": {
  4270. "navigationBarTitleText": "确认订单",
  4271. "enablePullDownRefresh": false
  4272. }
  4273. },
  4274. // {
  4275. // "path": "shopping/productList",
  4276. // "style": {
  4277. // "navigationBarTitleText": "药品列表",
  4278. // "enablePullDownRefresh": false
  4279. // }
  4280. // },
  4281. {
  4282. "path": "shopping/coupon",
  4283. "style": {
  4284. "navigationBarTitleText": "优惠券",
  4285. "enablePullDownRefresh": false
  4286. }
  4287. },
  4288. {
  4289. "path": "shopping/myCoupon",
  4290. "style": {
  4291. "navigationBarTitleText": "我的优惠券",
  4292. "enablePullDownRefresh": false
  4293. }
  4294. },
  4295. {
  4296. "path": "shopping/activityDetails",
  4297. "style": {
  4298. "navigationBarTitleText": "活动",
  4299. "enablePullDownRefresh": false
  4300. }
  4301. }
  4302. ]
  4303. },
  4304. {
  4305. "root": "pages_mall",
  4306. "pages": [
  4307. {
  4308. "path": "index",
  4309. "style": {
  4310. "navigationBarTitleText": "商城",
  4311. "enablePullDownRefresh": false,
  4312. "navigationStyle": "custom",
  4313. "navigationBarTextStyle": "black"
  4314. }
  4315. },
  4316. {
  4317. "path": "productList",
  4318. "style": {
  4319. "navigationBarTitleText": "商品列表"
  4320. }
  4321. },
  4322. {
  4323. "path": "recommendList",
  4324. "style": {
  4325. "navigationBarTitleText": "商品列表"
  4326. }
  4327. },
  4328. {
  4329. "path": "productSearch",
  4330. "style": {
  4331. "navigationBarTitleText": "产品搜索"
  4332. }
  4333. },
  4334. {
  4335. "path": "productDetails",
  4336. "style": {
  4337. "navigationBarTitleText": "产品详情",
  4338. "enablePullDownRefresh": false,
  4339. "navigationStyle": "custom",
  4340. "app-plus": {
  4341. "titleNView": false
  4342. }
  4343. }
  4344. },
  4345. {
  4346. "path": "cart",
  4347. "style": {
  4348. "navigationBarTitleText": "购物车",
  4349. "enablePullDownRefresh": false
  4350. }
  4351. },
  4352. {
  4353. "path": "newArrival",
  4354. "style": {
  4355. "navigationBarTitleText": "新品推荐",
  4356. "navigationStyle": "custom",
  4357. "enablePullDownRefresh": false
  4358. }
  4359. },
  4360. {
  4361. "path": "exchange",
  4362. "style": {
  4363. "navigationBarTitleText": "福币商城",
  4364. "enablePullDownRefresh": false,
  4365. "navigationBarBackgroundColor": "#ffffff",
  4366. "navigationBarTextStyle": "black"
  4367. }
  4368. },
  4369. {
  4370. "path": "confirmOrder",
  4371. "style": {
  4372. "navigationBarTitleText": "确认订单",
  4373. "enablePullDownRefresh": false
  4374. }
  4375. },
  4376. {
  4377. "path": "paymentOrder",
  4378. "style": {
  4379. "navigationBarTitleText": "去支付",
  4380. "enablePullDownRefresh": false,
  4381. "navigationStyle": "custom",
  4382. "app-plus": {
  4383. "titleNView": false
  4384. }
  4385. }
  4386. },
  4387. {
  4388. "path": "payOrder",
  4389. "style": {
  4390. "navigationBarTitleText": "推荐服务支付",
  4391. "enablePullDownRefresh": false
  4392. }
  4393. },
  4394. {
  4395. "path": "storeOrderDetail",
  4396. "style": {
  4397. "navigationBarTitleText": "订单详情",
  4398. "enablePullDownRefresh": false,
  4399. "navigationStyle": "custom"
  4400. }
  4401. },
  4402. {
  4403. "path": "prescribe",
  4404. "style": {
  4405. "navigationBarTitleText": "填写处方信息",
  4406. "enablePullDownRefresh": false
  4407. }
  4408. },
  4409. {
  4410. "path": "paymentSuccess",
  4411. "style": {
  4412. "navigationBarTitleText": "支付成功",
  4413. "enablePullDownRefresh": false
  4414. }
  4415. },
  4416. {
  4417. "path": "productList",
  4418. "style": {
  4419. "navigationBarTitleText": "药品列表",
  4420. "enablePullDownRefresh": false
  4421. }
  4422. }
  4423. ]
  4424. },
  4425. {
  4426. "root": "pages_live",
  4427. "pages": [
  4428. {
  4429. "path": "index",
  4430. "style": {
  4431. "navigationBarTitleText": "直播间",
  4432. "enablePullDownRefresh": false,
  4433. "navigationStyle": "custom",
  4434. "navigationBarTextStyle": "black",
  4435. "navigationBarBackgroundColor": "#ffffff"
  4436. }
  4437. },
  4438. {
  4439. "path": "living",
  4440. "style": {
  4441. "navigationBarTitleText": "直播间",
  4442. "enablePullDownRefresh": false,
  4443. "navigationStyle": "custom",
  4444. "navigationBarTextStyle": "black",
  4445. "navigationBarBackgroundColor": "#ffffff"
  4446. }
  4447. },
  4448. {
  4449. "path": "livingList",
  4450. "style": {
  4451. "navigationBarTitleText": "直播间列表",
  4452. "enablePullDownRefresh": false,
  4453. "navigationBarTextStyle": "black",
  4454. "navigationBarBackgroundColor": "#ffffff"
  4455. }
  4456. },
  4457. {
  4458. "path": "shareLive",
  4459. "style": {
  4460. "navigationBarTitleText": "分享直播间",
  4461. "enablePullDownRefresh": false,
  4462. "navigationBarTextStyle": "black",
  4463. "navigationBarBackgroundColor": "#ffffff"
  4464. }
  4465. },
  4466. {
  4467. "path": "shopping/complaintList",
  4468. "style": {
  4469. "navigationBarTitleText": "投诉列表",
  4470. "enablePullDownRefresh": false,
  4471. "navigationBarTextStyle": "black",
  4472. "navigationBarBackgroundColor": "#ffffff"
  4473. }
  4474. },
  4475. {
  4476. "path": "shopping/complaint",
  4477. "style": {
  4478. "navigationBarTitleText": "投诉",
  4479. "enablePullDownRefresh": false,
  4480. "navigationBarTextStyle": "black",
  4481. "navigationBarBackgroundColor": "#ffffff"
  4482. }
  4483. },
  4484. {
  4485. "path": "shopping/confirmCreateOrder",
  4486. "style": {
  4487. "navigationBarTitleText": "创建订单",
  4488. "enablePullDownRefresh": false,
  4489. "navigationBarTextStyle": "black",
  4490. "navigationBarBackgroundColor": "#ffffff"
  4491. }
  4492. },
  4493. {
  4494. "path": "shopping/goods",
  4495. "style": {
  4496. "navigationBarTitleText": "商品详情",
  4497. "enablePullDownRefresh": false,
  4498. "navigationBarTextStyle": "black",
  4499. "navigationBarBackgroundColor": "#ffffff"
  4500. }
  4501. },
  4502. {
  4503. "path": "shopping/integral",
  4504. "style": {
  4505. "navigationBarTitleText": "芳华币",
  4506. "enablePullDownRefresh": false,
  4507. "navigationBarTextStyle": "black",
  4508. "navigationBarBackgroundColor": "#ffffff"
  4509. }
  4510. },
  4511. {
  4512. "path": "shopping/order",
  4513. "style": {
  4514. "navigationBarTitleText": "订单详情",
  4515. "enablePullDownRefresh": false,
  4516. "navigationBarTextStyle": "black",
  4517. "navigationBarBackgroundColor": "#ffffff"
  4518. }
  4519. },
  4520. {
  4521. "path": "shopping/paymentOrder",
  4522. "style": {
  4523. "navigationBarTitleText": "支付订单",
  4524. "enablePullDownRefresh": false,
  4525. "navigationBarTextStyle": "black",
  4526. "navigationBarBackgroundColor": "#ffffff"
  4527. }
  4528. },
  4529. {
  4530. "path": "shopping/refundOrder",
  4531. "style": {
  4532. "navigationBarTitleText": "退款订单",
  4533. "enablePullDownRefresh": false,
  4534. "navigationBarTextStyle": "black",
  4535. "navigationBarBackgroundColor": "#ffffff"
  4536. }
  4537. },
  4538. {
  4539. "path": "shopping/refundOrderDelivery",
  4540. "style": {
  4541. "navigationBarTitleText": "退款订单发货",
  4542. "enablePullDownRefresh": false,
  4543. "navigationBarTextStyle": "black",
  4544. "navigationBarBackgroundColor": "#ffffff"
  4545. }
  4546. },
  4547. {
  4548. "path": "shopping/refundOrderDetail",
  4549. "style": {
  4550. "navigationBarTitleText": "退款订单详情",
  4551. "enablePullDownRefresh": false,
  4552. "navigationBarTextStyle": "black",
  4553. "navigationBarBackgroundColor": "#ffffff"
  4554. }
  4555. },
  4556. {
  4557. "path": "shopping/refundOrderProduct",
  4558. "style": {
  4559. "navigationBarTitleText": "退款商品",
  4560. "enablePullDownRefresh": false,
  4561. "navigationBarTextStyle": "black",
  4562. "navigationBarBackgroundColor": "#ffffff"
  4563. }
  4564. },
  4565. {
  4566. "path": "shopping/storeOrderDelivery",
  4567. "style": {
  4568. "navigationBarTitleText": "订单发货",
  4569. "enablePullDownRefresh": false,
  4570. "navigationBarTextStyle": "black",
  4571. "navigationBarBackgroundColor": "#ffffff"
  4572. }
  4573. },
  4574. {
  4575. "path": "shopping/storeOrderDetail",
  4576. "style": {
  4577. "navigationBarTitleText": "订单详情",
  4578. "enablePullDownRefresh": false,
  4579. "navigationBarTextStyle": "black",
  4580. "navigationBarBackgroundColor": "#ffffff"
  4581. }
  4582. },
  4583. {
  4584. "path": "shopping/storeOrderRefundList",
  4585. "style": {
  4586. "navigationBarTitleText": "退款列表",
  4587. "enablePullDownRefresh": false,
  4588. "navigationBarTextStyle": "black",
  4589. "navigationBarBackgroundColor": "#ffffff"
  4590. }
  4591. },
  4592. {
  4593. "path": "shopping/storeOrderRefundSubmit",
  4594. "style": {
  4595. "navigationBarTitleText": "提交退款",
  4596. "enablePullDownRefresh": false,
  4597. "navigationBarTextStyle": "black",
  4598. "navigationBarBackgroundColor": "#ffffff"
  4599. }
  4600. },
  4601. {
  4602. "path": "shopping/success",
  4603. "style": {
  4604. "navigationBarTitleText": "操作成功",
  4605. "enablePullDownRefresh": false,
  4606. "navigationBarTextStyle": "black",
  4607. "navigationBarBackgroundColor": "#ffffff"
  4608. }
  4609. }
  4610. ]
  4611. },
  4612. {
  4613. "root": "pages_points",
  4614. "pages": [
  4615. {
  4616. "path": "integralLogsList",
  4617. "style": {
  4618. "navigationBarTitleText": "获得记录",
  4619. "navigationBarTextStyle": "black",
  4620. "navigationBarBackgroundColor": "#ffffff"
  4621. }
  4622. },
  4623. {
  4624. "path": "integralOrderList",
  4625. "style": {
  4626. "navigationBarTitleText": "兑换订单",
  4627. "navigationBarTextStyle": "black",
  4628. "navigationBarBackgroundColor": "#ffffff"
  4629. }
  4630. },
  4631. {
  4632. "path": "integralOrderDetails",
  4633. "style": {
  4634. "navigationBarTitleText": "订单详情"
  4635. }
  4636. },
  4637. {
  4638. "path": "integralOrderPaySuccess",
  4639. "style": {
  4640. "navigationBarTitleText": "兑换结果",
  4641. "navigationBarTextStyle": "black",
  4642. "navigationBarBackgroundColor": "#ffffff"
  4643. }
  4644. },
  4645. {
  4646. "path": "integralPayment",
  4647. "style": {
  4648. "navigationBarTitleText": "支付订单",
  4649. "navigationBarTextStyle": "black",
  4650. "navigationBarBackgroundColor": "#ffffff"
  4651. }
  4652. },
  4653. {
  4654. "path": "integralGoodsDetails",
  4655. "style": {
  4656. "navigationBarTitleText": "商品详情",
  4657. "navigationBarTextStyle": "black",
  4658. "navigationBarBackgroundColor": "#ffffff"
  4659. }
  4660. },
  4661. {
  4662. "path": "confirmIntegralOrder",
  4663. "style": {
  4664. "navigationBarTitleText": "积分兑换",
  4665. "enablePullDownRefresh": false,
  4666. "navigationBarBackgroundColor": "#ffffff",
  4667. "navigationBarTextStyle": "black"
  4668. }
  4669. },
  4670. {
  4671. "path": "integralGoodsList",
  4672. "style": {
  4673. "navigationBarTitleText": "积分商城",
  4674. "navigationBarTextStyle": "black",
  4675. "navigationBarBackgroundColor": "#ffffff",
  4676. "navigationStyle": "custom"
  4677. }
  4678. },
  4679. {
  4680. "path": "integralOrderPay",
  4681. "style": {
  4682. "navigationBarTitleText": "积分兑换",
  4683. "navigationBarTextStyle": "black",
  4684. "navigationBarBackgroundColor": "#ffffff"
  4685. }
  4686. },
  4687. {
  4688. "path": "cart",
  4689. "style": {
  4690. "navigationBarTitleText": "购物车",
  4691. "enablePullDownRefresh": false,
  4692. "navigationBarBackgroundColor": "#ffffff",
  4693. "navigationBarTextStyle": "black"
  4694. }
  4695. },
  4696. {
  4697. "path": "integral",
  4698. "style": {
  4699. "navigationBarTitleText": "我的积分",
  4700. "navigationStyle": "custom",
  4701. "enablePullDownRefresh": false
  4702. }
  4703. }
  4704. ]
  4705. }
  4706. ],
  4707. "tabBar": {
  4708. "color": "#999999",
  4709. "selectedColor": "#FF233C",
  4710. "borderStyle": "white",
  4711. "backgroundColor": "#ffffff",
  4712. "height": "64px",
  4713. "fontSize": "14px",
  4714. "iconWidth": "24px",
  4715. "spacing": "4px",
  4716. "list": [
  4717. // {
  4718. // "pagePath": "pages_im/pages/conversation/conversationList/index",
  4719. // "iconPath": "/static/image/tabbar/tab_new_icon.png",
  4720. // "selectedIconPath": "/static/image/tabbar/tab_new_on_icon.png",
  4721. // "text": "消息"
  4722. // },
  4723. {
  4724. "pagePath": "pages/index/index",
  4725. "iconPath": "/static/image/tabbar/home.png",
  4726. "selectedIconPath": "/static/image/tabbar/home_sel.png",
  4727. "text": "首页"
  4728. },
  4729. // {
  4730. // "pagePath": "pages/course/index",
  4731. // "iconPath": "/static/image/tabbar/tab_hall_icon.png",
  4732. // "selectedIconPath": "/static/image/tabbar/tab_hall_on_icon.png",
  4733. // "text": "讲堂"
  4734. // },
  4735. {
  4736. "pagePath": "pages_mall/index",
  4737. "iconPath": "/static/image/tabbar/mall.png",
  4738. "selectedIconPath": "/static/image/tabbar/mall_sel.png",
  4739. "text": "商城"
  4740. },
  4741. {
  4742. "pagePath": "pages/course/video/living-app",
  4743. "iconPath": "/static/image/tabbar/video.png",
  4744. "selectedIconPath": "/static/image/tabbar/video_sel.png",
  4745. "text": "短视频"
  4746. },
  4747. // {
  4748. // "pagePath": "pages_enter/index",
  4749. // "iconPath": "/static/image/tabbar/tab_hall_icon.png",
  4750. // "selectedIconPath": "/static/image/tabbar/shop_mall_sel.png",
  4751. // "text": "娱乐"
  4752. // },
  4753. // {
  4754. // "pagePath": "pages_im/pages/contact/index/index",
  4755. // "iconPath": "/static/image/tabbar/tab_video_icon.png",
  4756. // "selectedIconPath": "/static/image/tabbar/tab_video_on_icon.png",
  4757. // "text": "通讯录"
  4758. // },
  4759. {
  4760. "pagePath": "pages/user/index",
  4761. "iconPath": "/static/image/tabbar/my.png",
  4762. "selectedIconPath": "/static/image/tabbar/my_sel.png",
  4763. "text": "我的"
  4764. }
  4765. ]
  4766. }
  4767. }