pages.json 102 KB

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