pages.json 115 KB

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