pages.json 112 KB

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