pages.json 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901
  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" ,// 匹配node_modules内的vue文件
  5. "^z-(.*)": "@zebra-swiper/swiper/components/z-$1/z-$1.vue"
  6. },
  7. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  8. {
  9. "path": "pages/common/launch",
  10. "style": {
  11. "navigationBarBackgroundColor":"#ffffff",
  12. "navigationBarTitleText": ""
  13. }
  14. },
  15. {
  16. "path": "pages/index/index",
  17. "aliasPath": "/",
  18. "name": "home",
  19. "style": {
  20. "navigationBarBackgroundColor":"#FF5C03",
  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", //"close"(启用侧滑返回)、"none"(禁用侧滑返回)
  46. "bounce":"none" //页面回弹效果,设置为 "none" 时关闭效果。
  47. }
  48. }
  49. },
  50. {
  51. "path" : "pages/auth/loginIndex",
  52. "style" :
  53. {
  54. "navigationBarTitleText": "登录",
  55. "navigationBarTextStyle": "black",
  56. "navigationStyle": "custom",
  57. "app-plus":{
  58. "popGesture":"none",
  59. "bounce":"none"
  60. }
  61. }
  62. },
  63. {
  64. "path" : "pages/auth/register",
  65. "aliasPath": "/",
  66. "name": "register",
  67. "meta": {
  68. "title": "用户注册"
  69. },
  70. "style": {
  71. "navigationBarTitleText": "用户注册",
  72. "navigationBarTextStyle": "black",
  73. "enablePullDownRefresh" : false
  74. }
  75. },
  76. {
  77. "path" : "pages/auth/findpass",
  78. "name": "findpass",
  79. "meta": {
  80. "title": "忘记密码"
  81. },
  82. "style" :
  83. {
  84. "navigationBarTitleText" : "忘记密码",
  85. "navigationBarTextStyle": "white",
  86. "enablePullDownRefresh" : false
  87. }
  88. },
  89. {
  90. "path" : "pages/course/index",
  91. "style" :
  92. {
  93. "navigationBarBackgroundColor":"#FF5C03",
  94. "navigationBarTextStyle":"black",
  95. "scrollIndicator": "none",
  96. "bounce": "none",
  97. "titleNView": false,
  98. "navigationBarTitleText": "",
  99. "enablePullDownRefresh": false,
  100. "backgroundColor": "#f7f7f7",
  101. "backgroundColorTop":"#ffffff",
  102. "navigationStyle": "custom"
  103. }
  104. },
  105. {
  106. "path" : "pages/course/learning",
  107. "name": "learning",
  108. "style" :
  109. {
  110. "navigationBarBackgroundColor":"#FF5C03",
  111. "navigationBarTextStyle":"white",
  112. "scrollIndicator": "none",
  113. "bounce": "none",
  114. "titleNView": false,
  115. "navigationBarTitleText": "",
  116. "enablePullDownRefresh": false,
  117. "backgroundColor": "#f7f7f7",
  118. "backgroundColorTop":"#ffffff",
  119. "navigationStyle": "custom"
  120. }
  121. },
  122. {
  123. "path" : "pages/course/famousHall",
  124. "name": "famousHall",
  125. "style" :
  126. {
  127. "navigationBarBackgroundColor":"#FF5C03",
  128. "navigationBarTextStyle":"black",
  129. "scrollIndicator": "none",
  130. "bounce": "none",
  131. "titleNView": false,
  132. "navigationBarTitleText": "",
  133. "enablePullDownRefresh": false,
  134. "backgroundColor": "#f7f7f7",
  135. "backgroundColorTop":"#ffffff",
  136. "navigationStyle": "custom"
  137. }
  138. },
  139. {
  140. "path": "pages/course/info",
  141. "style": {
  142. "navigationBarTitleText": "课程详情",
  143. "navigationBarTextStyle":"black",
  144. "navigationStyle": "custom",
  145. "scrollIndicator": "none",
  146. "bounce": "none",
  147. "titleNView": false,
  148. "enablePullDownRefresh": false,
  149. "backgroundColor": "#f7f7f7",
  150. "backgroundColorTop":"#ffffff",
  151. "app-plus": {
  152. "titleNView": false, //不启用系统导航
  153. "screenOrientation" : [
  154. //可选,字符串数组类型,应用支持的横竖屏
  155. "portrait-primary", //可选,字符串类型,支持竖屏
  156. "portrait-secondary", //可选,字符串类型,支持反向竖屏
  157. "landscape-primary", //可选,字符串类型,支持横屏
  158. "landscape-secondary" //可选,字符串类型,支持反向横屏
  159. ],
  160. "subNVues":[{
  161. "id": "privilege", // 唯一标识
  162. "path":"pages/course/privilege", // 页面路径
  163. "type":"popup",
  164. "style": {
  165. "position": "absolute",
  166. "bottom": "0",
  167. "left": "0",
  168. "width": "100%",
  169. "height": "1150upx",
  170. "mask":"rgba(0,0,0,0.5)",
  171. "background": "transparent",
  172. "border-top-left-radius": "20px",
  173. "border-top-right-radius": "20px"
  174. }
  175. }
  176. ,{
  177. "id": "commentN", // 唯一标识
  178. "path":"pages/course/commentN", // 页面路径
  179. "type":"popup",
  180. "style": {
  181. "position": "absolute",
  182. "bottom": "0",
  183. "left": "0",
  184. "width": "100%",
  185. "height": "85%",
  186. "mask":"rgba(0,0,0,0.5)",
  187. "background": "transparent",
  188. "border-top-left-radius": "20px",
  189. "border-top-right-radius": "20px"
  190. }
  191. }
  192. ,{
  193. "id": "catalogueN", // 唯一标识
  194. "path":"pages/course/catalogueN", // 页面路径
  195. "type":"popup",
  196. "style": {
  197. "position": "absolute",
  198. "bottom": "0",
  199. "left": "0",
  200. "width": "100%",
  201. "height": "85%",
  202. "mask":"rgba(0,0,0,0.5)",
  203. "background": "transparent",
  204. "border-top-left-radius": "20px",
  205. "border-top-right-radius": "20px"
  206. }
  207. },
  208. // {
  209. // "id": "courseVideo",
  210. // "path": "pages/course/courseVideo", // 课程详情视频
  211. // "style": {
  212. // "position": "absolute",
  213. // "width": "100%",
  214. // "height": "422rpx",
  215. // "left":"0",
  216. // "top":"0"
  217. // }
  218. // },
  219. {
  220. "id": "videoPopup",
  221. "path": "pages/course/videoPopup", // 配置弹窗
  222. "type":"popup",
  223. "style": {
  224. "position": "absolute",
  225. "bottom": "0",
  226. "left": "0",
  227. "width": "100%",
  228. "height": "100%",
  229. "mask":"rgba(0,0,0,0.6)",
  230. "background": "rgba(0,0,0,0.6)"
  231. }
  232. }
  233. ]
  234. }
  235. }
  236. },
  237. {
  238. "path": "pages/course/introduce",
  239. "style": {
  240. "navigationBarTitleText": "课程简介",
  241. "navigationStyle": "custom",
  242. "scrollIndicator": "none",
  243. "bounce": "none",
  244. "titleNView": false,
  245. "enablePullDownRefresh": false,
  246. "backgroundColor": "#f7f7f7",
  247. "backgroundColorTop":"#ffffff"
  248. }
  249. },
  250. {
  251. "path" : "pages/course/vipBuy",
  252. "style" :
  253. {
  254. "navigationBarTitleText" : "御君方会员",
  255. "enablePullDownRefresh": false,
  256. "navigationStyle": "custom",
  257. "backgroundColor": "#1B1F22;",
  258. "navigationBarTextStyle":"black",
  259. "disableSwipeBack": true,
  260. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  261. "app-plus": {
  262. // "animationType": "none", // 设置fade-in淡入动画,为最合理的动画类型
  263. "animationDuration": 0,
  264. "animationType": "fade-in",
  265. "background": "transparent", // 背景透明
  266. "backgroundColor": "#1B1F22", // 背景透明
  267. "webviewBGTransparent": true,
  268. "mask": "none",
  269. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  270. }
  271. }
  272. },
  273. {
  274. "path": "pages/course/comment",
  275. "style": {
  276. "navigationBarTitleText": "评论",
  277. "navigationStyle": "custom",
  278. "scrollIndicator": "none",
  279. "bounce": "none",
  280. "titleNView": false,
  281. "enablePullDownRefresh": false,
  282. "backgroundColor": "#f7f7f7",
  283. "backgroundColorTop":"#ffffff"
  284. }
  285. },
  286. {
  287. "path": "pages/course/noteList",
  288. "style": {
  289. "navigationBarTitleText": "学习笔记",
  290. "navigationBarTextStyle":"black",
  291. "navigationStyle": "custom",
  292. "scrollIndicator": "none",
  293. "bounce": "none",
  294. "titleNView": false,
  295. "enablePullDownRefresh": false,
  296. "backgroundColor": "#f7f7f7",
  297. "backgroundColorTop":"#ffffff"
  298. }
  299. },
  300. {
  301. "path": "pages/course/note",
  302. "style": {
  303. "navigationBarTitleText": "笔记",
  304. "navigationStyle": "custom",
  305. "scrollIndicator": "none",
  306. "bounce": "none",
  307. "titleNView": false,
  308. "enablePullDownRefresh": false,
  309. "backgroundColor": "#f7f7f7",
  310. "backgroundColorTop":"#ffffff"
  311. }
  312. },
  313. {
  314. "path" : "pages/course/myNote",
  315. "style" :
  316. {
  317. "navigationBarTitleText": "我的笔记",
  318. "navigationStyle": "custom",
  319. "scrollIndicator": "none",
  320. "bounce": "none",
  321. "titleNView": false,
  322. "enablePullDownRefresh": false,
  323. "backgroundColor": "#f7f7f7",
  324. "backgroundColorTop":"#ffffff"
  325. }
  326. },
  327. {
  328. "path": "pages/course/catalogue",
  329. "style": {
  330. "navigationBarTitleText": "目录",
  331. "navigationStyle": "custom",
  332. "scrollIndicator": "none",
  333. "bounce": "none",
  334. "titleNView": false,
  335. "enablePullDownRefresh": false,
  336. "backgroundColor": "#f7f7f7",
  337. "backgroundColorTop":"#ffffff"
  338. }
  339. },
  340. {
  341. "path" : "pages/course/video/living-app",
  342. "style" :
  343. {
  344. "navigationBarTitleText" : "直播",
  345. "navigationStyle": "custom",
  346. "titleNView": false,
  347. "enablePullDownRefresh": false,
  348. "backgroundColor": "#000000",
  349. "backgroundColorTop":"#000000",
  350. "navigationBarTextStyle": "white",
  351. "app-plus": {
  352. "titleNView": false, //不启用系统导航
  353. "subNVues":[{
  354. "id": "videoComment", // 唯一标识
  355. "path":"pages/course/video/commentN", // 页面路径
  356. "type":"popup",
  357. "style": {
  358. "position": "absolute",
  359. "bottom": "0",
  360. "left": "0",
  361. "width": "100%",
  362. "height": "1150upx",
  363. "mask":"rgba(0,0,0,0.5)",
  364. "background": "transparent",
  365. "border-top-left-radius": "20px",
  366. "border-top-right-radius": "20px"
  367. }
  368. }]
  369. }
  370. }
  371. },
  372. {
  373. "path" : "pages/course/video/living-app1",
  374. "style" :
  375. {
  376. "navigationBarTitleText" : "短视频",
  377. "navigationStyle": "custom",
  378. "titleNView": false,
  379. "enablePullDownRefresh": false,
  380. "backgroundColor": "#000000",
  381. "backgroundColorTop":"#000000",
  382. "navigationBarTextStyle": "white",
  383. "app-plus": {
  384. "titleNView": false, //不启用系统导航
  385. "subNVues":[{
  386. "id": "videoComment", // 唯一标识
  387. "path":"pages/course/video/commentN", // 页面路径
  388. "type":"popup",
  389. "style": {
  390. "position": "absolute",
  391. "bottom": "0",
  392. "left": "0",
  393. "width": "100%",
  394. "height": "1150upx",
  395. "mask":"rgba(0,0,0,0.5)",
  396. "background": "transparent",
  397. "border-top-left-radius": "20px",
  398. "border-top-right-radius": "20px"
  399. }
  400. }]
  401. }
  402. }
  403. },
  404. {
  405. "path": "pages/course/video/living",
  406. "style": {
  407. "navigationBarTitleText": "直播",
  408. "navigationStyle": "custom",
  409. "scrollIndicator": "none",
  410. "bounce": "none",
  411. "titleNView": false,
  412. "enablePullDownRefresh": false,
  413. "backgroundColor": "#f7f7f7",
  414. "backgroundColorTop":"#ffffff"
  415. }
  416. },
  417. {
  418. "path": "pages/course/video/video",
  419. "style": {
  420. "navigationBarTitleText": "视频",
  421. "navigationStyle": "custom",
  422. "scrollIndicator": "none",
  423. "bounce": "none"
  424. }
  425. },
  426. {
  427. "path": "pages/index/search",
  428. "style": {
  429. "navigationBarTitleText": "搜索",
  430. "navigationStyle": "custom",
  431. "scrollIndicator": "none",
  432. "bounce": "none",
  433. "titleNView": false,
  434. "enablePullDownRefresh": false,
  435. "backgroundColor": "#f7f7f7",
  436. "backgroundColorTop":"#ffffff"
  437. }
  438. },
  439. {
  440. "path": "pages/index/specialist-appointment",
  441. "style": {
  442. "navigationBarTitleText": "专家约诊",
  443. "navigationStyle": "custom",
  444. "scrollIndicator": "none",
  445. "bounce": "none",
  446. "titleNView": false,
  447. "enablePullDownRefresh": false,
  448. "backgroundColor": "#f7f7f7",
  449. "backgroundColorTop":"#ffffff"
  450. }
  451. },
  452. {
  453. "path": "pages/index/h5",
  454. "style": {
  455. "navigationBarTextStyle":"black",
  456. "scrollIndicator": "none",
  457. "bounce": "none",
  458. "enablePullDownRefresh": false,
  459. "backgroundColor": "#f7f7f7",
  460. "backgroundColorTop":"#ffffff"
  461. }
  462. },
  463. {
  464. "path" : "pages/user/index",
  465. "aliasPath": "/",
  466. "name": "mine",
  467. "style": {
  468. "navigationBarBackgroundColor":"#FF5C03",
  469. "navigationBarTextStyle":"black",
  470. "scrollIndicator": "none",
  471. "bounce": "none",
  472. "titleNView": false,
  473. "navigationBarTitleText": "",
  474. "enablePullDownRefresh": false,
  475. "backgroundColor": "#f7f7f7",
  476. "backgroundColorTop":"#ffffff",
  477. "navigationStyle": "custom"
  478. }
  479. },
  480. {
  481. "path": "pages/TUIKit/TUIPages/TUIConversation/index",
  482. "style": {
  483. "navigationBarTitleText": "消息",
  484. "navigationBarBackgroundColor": "#fff",
  485. "navigationBarTextStyle": "black",
  486. "navigationStyle": "custom",
  487. "app-plus": {
  488. "titleNView": {
  489. "backButton": {
  490. "title": ""
  491. }
  492. }
  493. }
  494. }
  495. },
  496. {
  497. "path" : "pages/store/inquirySelectType",
  498. "style" :
  499. {
  500. "navigationBarTitleText" : "会诊通道",
  501. "enablePullDownRefresh": false,
  502. "navigationBarBackgroundColor":"#ffffff",
  503. "navigationBarTextStyle":"black"
  504. }
  505. },
  506. {
  507. "path" : "pages/store/inquiryForm2_1",
  508. "style" :
  509. {
  510. "navigationBarTitleText" : "症状描述",
  511. "enablePullDownRefresh": false,
  512. "navigationBarBackgroundColor":"#ffffff",
  513. "navigationBarTextStyle":"black"
  514. }
  515. },
  516. {
  517. "path" : "pages/store/inquiryForm2_2",
  518. "style" :
  519. {
  520. "navigationBarTitleText" : "症状描述",
  521. "enablePullDownRefresh": false,
  522. "navigationBarBackgroundColor":"#ffffff",
  523. "navigationBarTextStyle":"black"
  524. }
  525. },
  526. {
  527. "path" : "pages/store/inquirySelect",
  528. "style" :
  529. {
  530. "navigationBarTitleText" : "问诊选择",
  531. "enablePullDownRefresh": false,
  532. "navigationBarBackgroundColor":"#ffffff",
  533. "navigationBarTextStyle":"black"
  534. }
  535. },
  536. {
  537. "path" : "pages/store/inquiryForm1",
  538. "style" :
  539. {
  540. "navigationBarTitleText" : "症状描述",
  541. "enablePullDownRefresh": false,
  542. "navigationBarBackgroundColor":"#ffffff",
  543. "navigationBarTextStyle":"black"
  544. }
  545. },
  546. {
  547. "path" : "pages/store/inquiryForm3",
  548. "style" :
  549. {
  550. "navigationBarTitleText" : "症状描述",
  551. "enablePullDownRefresh": false,
  552. "navigationBarBackgroundColor":"#ffffff",
  553. "navigationBarTextStyle":"black"
  554. }
  555. },
  556. {
  557. "path" : "pages/doctor/doctorList",
  558. "style" :
  559. {
  560. "navigationBarTitleText" : "医生列表",
  561. "enablePullDownRefresh": false,
  562. "navigationBarBackgroundColor":"#ffffff",
  563. "navigationBarTextStyle":"black"
  564. }
  565. },
  566. {
  567. "path" : "pages/doctor/doctorDetails",
  568. "style" :
  569. {
  570. "navigationBarTitleText" : "医生详情",
  571. "enablePullDownRefresh": false,
  572. "navigationBarBackgroundColor":"#ffffff",
  573. "navigationBarTextStyle":"black"
  574. }
  575. },
  576. {
  577. "path" : "pages/store/inquiryPay",
  578. "style" :
  579. {
  580. "navigationBarTitleText" : "支付订单",
  581. "enablePullDownRefresh": false,
  582. "navigationBarBackgroundColor":"#ffffff",
  583. "navigationBarTextStyle":"black"
  584. }
  585. },
  586. {
  587. "path" : "pages/store/inquiryOrderPaySuccess",
  588. "style" :
  589. {
  590. "navigationBarTitleText" : "支付结果",
  591. "enablePullDownRefresh": false,
  592. "navigationBarBackgroundColor":"#ffffff",
  593. "navigationBarTextStyle":"black"
  594. }
  595. },
  596. {
  597. "path" : "pages/store/inquiryOrderList",
  598. "style" :
  599. {
  600. "navigationBarTitleText" : "我的问诊",
  601. "enablePullDownRefresh": false,
  602. "navigationBarBackgroundColor":"#ffffff",
  603. "navigationBarTextStyle":"black"
  604. }
  605. },
  606. {
  607. "path" : "pages/store/inquiryOrderDetails",
  608. "style" :
  609. {
  610. "navigationBarTitleText" : "订单详情",
  611. "enablePullDownRefresh": false,
  612. "navigationBarBackgroundColor":"#ffffff",
  613. "navigationBarTextStyle":"black"
  614. }
  615. },
  616. {
  617. "path" : "pages/store/storeOrderList",
  618. "style" :
  619. {
  620. "navigationBarTitleText" : "我的订单",
  621. "enablePullDownRefresh": false,
  622. "navigationBarBackgroundColor":"#ffffff",
  623. "navigationBarTextStyle":"black"
  624. }
  625. },
  626. {
  627. "path" : "pages/store/storeOrderDetail",
  628. "style" :
  629. {
  630. "navigationBarTitleText" : "订单详情",
  631. "enablePullDownRefresh": false,
  632. "navigationBarBackgroundColor":"#FF5C03",
  633. "navigationBarTextStyle":"white"
  634. }
  635. },
  636. {
  637. "path" : "pages/store/storeOrderPay",
  638. "style" :
  639. {
  640. "navigationBarTitleText" : "订单支付",
  641. "enablePullDownRefresh": false,
  642. "navigationBarBackgroundColor":"#ffffff",
  643. "navigationBarTextStyle":"black"
  644. }
  645. },
  646. {
  647. "path" : "pages/store/storeOrderPaySuccess",
  648. "style" :
  649. {
  650. "navigationBarTitleText" : "支付结果",
  651. "enablePullDownRefresh": false,
  652. "navigationBarBackgroundColor":"#ffffff",
  653. "navigationBarTextStyle":"black"
  654. }
  655. },
  656. {
  657. "path" : "pages/user/myDoctorList",
  658. "style" :
  659. {
  660. "navigationBarTitleText" : "我的医生",
  661. "enablePullDownRefresh": false,
  662. "navigationBarBackgroundColor":"#ffffff",
  663. "navigationBarTextStyle":"black"
  664. }
  665. },
  666. {
  667. "path" : "pages/store/prescribeList",
  668. "style" :
  669. {
  670. "navigationBarTitleText" : "我的处方",
  671. "enablePullDownRefresh": false,
  672. "navigationBarBackgroundColor":"#ffffff",
  673. "navigationBarTextStyle":"black"
  674. }
  675. },
  676. {
  677. "path" : "pages/store/prescribeDetails",
  678. "style" :
  679. {
  680. "navigationBarTitleText" : "处方详情",
  681. "enablePullDownRefresh": false,
  682. "navigationBarBackgroundColor":"#ffffff",
  683. "navigationBarTextStyle":"black"
  684. }
  685. },
  686. {
  687. "path" : "pages/user/followList",
  688. "style" :
  689. {
  690. "navigationBarTitleText" : "我的随访",
  691. "enablePullDownRefresh": false,
  692. "navigationBarBackgroundColor":"#ffffff",
  693. "navigationBarTextStyle":"black"
  694. }
  695. },
  696. {
  697. "path" : "pages/user/drugReportList",
  698. "style" :
  699. {
  700. "navigationBarTitleText" : "用药报告",
  701. "enablePullDownRefresh": false,
  702. "navigationBarBackgroundColor":"#ffffff",
  703. "navigationBarTextStyle":"black"
  704. }
  705. },
  706. {
  707. "path" : "pages/user/drugReportDetails",
  708. "style" :
  709. {
  710. "navigationBarTitleText" : "用药详情",
  711. "enablePullDownRefresh": false,
  712. "navigationBarBackgroundColor":"#ffffff",
  713. "navigationBarTextStyle":"black"
  714. }
  715. },
  716. {
  717. "path" : "pages/user/drugReportPing",
  718. "style" :
  719. {
  720. "navigationBarTitleText" : "用药评价",
  721. "enablePullDownRefresh": false,
  722. "navigationBarBackgroundColor":"#ffffff",
  723. "navigationBarTextStyle":"black"
  724. }
  725. },
  726. {
  727. "path" : "pages/user/followDetails",
  728. "style" :
  729. {
  730. "navigationBarTitleText" : "随访列表",
  731. "enablePullDownRefresh": false,
  732. "navigationBarBackgroundColor":"#ffffff",
  733. "navigationBarTextStyle":"black"
  734. }
  735. },
  736. {
  737. "path" : "pages/user/doFollow",
  738. "style" :
  739. {
  740. "navigationBarTitleText" : "提交随访报告",
  741. "enablePullDownRefresh": false,
  742. "navigationBarBackgroundColor":"#ffffff",
  743. "navigationBarTextStyle":"black"
  744. }
  745. },
  746. {
  747. "path" : "pages/doctor/doctorInfo",
  748. "style" :
  749. {
  750. "navigationBarTitleText" : "医生详情",
  751. "enablePullDownRefresh": false,
  752. "navigationBarBackgroundColor":"#FF5C03",
  753. "navigationBarTextStyle":"white"
  754. }
  755. },
  756. {
  757. "path" : "pages/doctor/doctorImgs",
  758. "style" :
  759. {
  760. "navigationBarTitleText" : "医生资质证书",
  761. "enablePullDownRefresh": false,
  762. "navigationBarBackgroundColor":"#ffffff",
  763. "navigationBarTextStyle":"black"
  764. }
  765. },
  766. {
  767. "path" : "pages/doctor/doctorPingList",
  768. "style" :
  769. {
  770. "navigationBarTitleText" : "医生评价",
  771. "enablePullDownRefresh": false,
  772. "navigationBarBackgroundColor":"#ffffff",
  773. "navigationBarTextStyle":"black"
  774. }
  775. },
  776. {
  777. "path" : "pages/article/questionsList",
  778. "style" :
  779. {
  780. "navigationBarTitleText" : "问答专区",
  781. "enablePullDownRefresh": false,
  782. "navigationBarBackgroundColor":"#ffffff",
  783. "navigationBarTextStyle":"black"
  784. }
  785. },
  786. {
  787. "path" : "pages/article/questionsDetails",
  788. "style" :
  789. {
  790. "navigationBarTitleText" : "问答专区",
  791. "enablePullDownRefresh": false,
  792. "navigationBarBackgroundColor":"#ffffff",
  793. "navigationBarTextStyle":"black",
  794. "app-plus": {
  795. "titleNView": {
  796. "buttons": [
  797. {
  798. "type":"share"
  799. }
  800. ]
  801. }
  802. }
  803. }
  804. },
  805. {
  806. "path" : "pages/article/medicatedFoodList",
  807. "style" :
  808. {
  809. "navigationBarTitleText" : "药膳食疗",
  810. "enablePullDownRefresh": false,
  811. "navigationBarBackgroundColor":"#ffffff",
  812. "navigationBarTextStyle":"black"
  813. }
  814. },
  815. {
  816. "path" : "pages/article/medicatedFoodDetails",
  817. "style" :
  818. {
  819. "navigationBarTitleText" : "药膳食疗",
  820. "enablePullDownRefresh": false,
  821. "navigationBarBackgroundColor":"#ffffff",
  822. "navigationBarTextStyle":"black",
  823. "app-plus": {
  824. "titleNView": {
  825. "buttons": [
  826. {
  827. "type":"share"
  828. }
  829. ]
  830. }
  831. }
  832. }
  833. },
  834. {
  835. "path" : "pages/article/vesselList",
  836. "style" :
  837. {
  838. "navigationBarTitleText" : "经络穴位",
  839. "enablePullDownRefresh": false,
  840. "navigationBarBackgroundColor":"#ffffff",
  841. "navigationBarTextStyle":"black"
  842. }
  843. },
  844. {
  845. "path" : "pages/article/vesselDetails",
  846. "style" :
  847. {
  848. "navigationBarTitleText" : "经络穴位",
  849. "enablePullDownRefresh": false,
  850. "navigationBarBackgroundColor":"#ffffff",
  851. "navigationBarTextStyle":"black",
  852. "app-plus": {
  853. "titleNView": {
  854. "buttons": [{
  855. "type":"share"
  856. }]
  857. }
  858. }
  859. }
  860. },
  861. {
  862. "path" : "pages/article/diseaseList",
  863. "style" :
  864. {
  865. "navigationBarTitleText" : "疾病",
  866. "enablePullDownRefresh": false,
  867. "navigationBarBackgroundColor":"#ffffff",
  868. "navigationBarTextStyle":"black"
  869. }
  870. },
  871. {
  872. "path" : "pages/article/diseaseDetails",
  873. "style" :
  874. {
  875. "navigationBarTitleText" : "疾病",
  876. "enablePullDownRefresh": false,
  877. "navigationBarBackgroundColor":"#ffffff",
  878. "navigationBarTextStyle":"black",
  879. "app-plus": {
  880. "titleNView": {
  881. "buttons": [{
  882. "type":"share"
  883. }]
  884. }
  885. }
  886. }
  887. },
  888. {
  889. "path" : "pages/article/chineseMedicineList",
  890. "style" :
  891. {
  892. "navigationBarTitleText" : "中医图解",
  893. "enablePullDownRefresh": false,
  894. "navigationBarBackgroundColor":"#ffffff",
  895. "navigationBarTextStyle":"black"
  896. }
  897. },
  898. {
  899. "path" : "pages/article/famousPrescribeList",
  900. "style" :
  901. {
  902. "navigationBarTitleText" : "名方今用",
  903. "enablePullDownRefresh": false,
  904. "navigationBarBackgroundColor":"#ffffff",
  905. "navigationBarTextStyle":"black"
  906. }
  907. },
  908. {
  909. "path" : "pages/article/famousPrescribeDetails",
  910. "style" :
  911. {
  912. "navigationBarTitleText" : "名方今用",
  913. "enablePullDownRefresh": false,
  914. "navigationBarBackgroundColor":"#ffffff",
  915. "navigationBarTextStyle":"black",
  916. "app-plus": {
  917. "titleNView": {
  918. "buttons": [{
  919. "type":"share"
  920. }]
  921. }
  922. }
  923. }
  924. },
  925. {
  926. "path" : "pages/article/chineseMedicineDetails",
  927. "style" : {
  928. "navigationBarTitleText" : "中医图解",
  929. "enablePullDownRefresh": false,
  930. "navigationBarBackgroundColor":"#ffffff",
  931. "navigationBarTextStyle":"black",
  932. "app-plus": {
  933. "titleNView": {
  934. "buttons": [{
  935. "type":"share"
  936. }]
  937. }
  938. }
  939. }
  940. },
  941. {
  942. "path" : "pages/article/articleList",
  943. "style" :
  944. {
  945. "navigationBarTitleText" : "养生干货",
  946. "enablePullDownRefresh": false,
  947. "navigationBarBackgroundColor":"#ffffff",
  948. "navigationBarTextStyle":"black"
  949. }
  950. },
  951. {
  952. "path" : "pages/article/articleDetails",
  953. "style" :
  954. {
  955. "navigationBarTitleText" : "文章详情",
  956. "enablePullDownRefresh": false,
  957. "navigationBarBackgroundColor":"#ffffff",
  958. "navigationBarTextStyle":"black",
  959. "app-plus": {
  960. "titleNView": {
  961. "buttons": [{
  962. "type":"share"
  963. }]
  964. }
  965. }
  966. }
  967. },
  968. {
  969. "path" : "pages/doctor/doctorArticleList",
  970. "style" :
  971. {
  972. "navigationBarTitleText" : "养生讲堂",
  973. "enablePullDownRefresh": false,
  974. "navigationBarBackgroundColor":"#ffffff",
  975. "navigationBarTextStyle":"black"
  976. }
  977. },
  978. {
  979. "path" : "pages/doctor/doctorArticleDetails",
  980. "style" :
  981. {
  982. "navigationBarTitleText" : "养生讲堂",
  983. "enablePullDownRefresh": false,
  984. "navigationBarBackgroundColor":"#ffffff",
  985. "navigationBarTextStyle":"black",
  986. "app-plus": {
  987. "titleNView": {
  988. "buttons": [{
  989. "type":"share"
  990. }]
  991. }
  992. }
  993. }
  994. },
  995. {
  996. "path" : "pages/article/testList",
  997. "style" :
  998. {
  999. "navigationBarTitleText" : "测一测",
  1000. "enablePullDownRefresh": false,
  1001. "navigationBarBackgroundColor":"#ffffff",
  1002. "navigationBarTextStyle":"black"
  1003. }
  1004. },
  1005. {
  1006. "path" : "pages/article/testDetails",
  1007. "style" :
  1008. {
  1009. "navigationBarTitleText" : "测一测详情",
  1010. "enablePullDownRefresh": false,
  1011. "navigationBarBackgroundColor":"#ffffff",
  1012. "navigationBarTextStyle":"black"
  1013. }
  1014. },
  1015. {
  1016. "path" : "pages/article/test",
  1017. "style" :
  1018. {
  1019. "navigationBarTitleText" : "测一测",
  1020. "enablePullDownRefresh": false,
  1021. "navigationBarBackgroundColor":"#ffffff",
  1022. "navigationBarTextStyle":"black"
  1023. }
  1024. },
  1025. {
  1026. "path" : "pages/article/testResult",
  1027. "style" :
  1028. {
  1029. "navigationBarTitleText" : "测试结果",
  1030. "enablePullDownRefresh": false,
  1031. "navigationBarBackgroundColor":"#ffffff",
  1032. "navigationBarTextStyle":"black"
  1033. }
  1034. },
  1035. {
  1036. "path" : "pages/article/testResultImg",
  1037. "style" :
  1038. {
  1039. "navigationBarTitleText" : "测试结果",
  1040. "enablePullDownRefresh": false,
  1041. "navigationBarBackgroundColor":"#ffffff",
  1042. "navigationBarTextStyle":"black"
  1043. }
  1044. },
  1045. {
  1046. "path" : "pages/company/login",
  1047. "style" :
  1048. {
  1049. "navigationBarTitleText" : "客服登录",
  1050. "enablePullDownRefresh": false,
  1051. "navigationBarBackgroundColor":"#ffffff",
  1052. "navigationBarTextStyle":"black"
  1053. }
  1054. },
  1055. {
  1056. "path" : "pages/company/index",
  1057. "style" :
  1058. {
  1059. "navigationBarTitleText" : "客服首页",
  1060. "enablePullDownRefresh": false,
  1061. "navigationBarBackgroundColor":"#ffffff",
  1062. "navigationBarTextStyle":"black"
  1063. }
  1064. },
  1065. {
  1066. "path" : "pages/company/couponList",
  1067. "style" :
  1068. {
  1069. "navigationBarTitleText" : "优惠券",
  1070. "enablePullDownRefresh": false,
  1071. "navigationBarBackgroundColor":"#ffffff",
  1072. "navigationBarTextStyle":"black"
  1073. }
  1074. },
  1075. {
  1076. "path" : "pages/company/couponDetails",
  1077. "style" :
  1078. {
  1079. "navigationBarTitleText" : "优惠券详情",
  1080. "enablePullDownRefresh": false,
  1081. "navigationBarBackgroundColor":"#ffffff",
  1082. "navigationBarTextStyle":"black"
  1083. }
  1084. },
  1085. {
  1086. "path" : "pages/company/packageList",
  1087. "style" :
  1088. {
  1089. "navigationBarTitleText" : "疗法",
  1090. "enablePullDownRefresh": false,
  1091. "navigationBarBackgroundColor":"#ffffff",
  1092. "navigationBarTextStyle":"black"
  1093. }
  1094. },
  1095. {
  1096. "path" : "pages/company/packageDetails",
  1097. "style" :
  1098. {
  1099. "navigationBarTitleText" : "疗法详情",
  1100. "navigationBarTextStyle":"black",
  1101. "navigationStyle": "custom",
  1102. "scrollIndicator": "none",
  1103. "bounce": "none",
  1104. "titleNView": false,
  1105. "enablePullDownRefresh": false,
  1106. "backgroundColor": "#f7f7f7",
  1107. "backgroundColorTop":"#ffffff"
  1108. }
  1109. },
  1110. {
  1111. "path" : "pages/company/packageOrderList",
  1112. "style" :
  1113. {
  1114. "navigationBarTitleText" : "疗法订单",
  1115. "enablePullDownRefresh": false,
  1116. "navigationBarBackgroundColor":"#ffffff",
  1117. "navigationBarTextStyle":"black"
  1118. }
  1119. },
  1120. {
  1121. "path" : "pages/company/packageOrderDetails",
  1122. "style" :
  1123. {
  1124. "navigationBarTitleText" : "订单详情",
  1125. "enablePullDownRefresh": false,
  1126. "navigationBarBackgroundColor":"#FF5C03",
  1127. "navigationBarTextStyle":"white"
  1128. }
  1129. },
  1130. {
  1131. "path" : "pages/company/storeOrderList",
  1132. "style" :
  1133. {
  1134. "navigationBarTitleText" : "处方订单",
  1135. "enablePullDownRefresh": false,
  1136. "navigationBarBackgroundColor":"#ffffff",
  1137. "navigationBarTextStyle":"black"
  1138. }
  1139. },
  1140. {
  1141. "path" : "pages/company/storeOrderDetail",
  1142. "style" :
  1143. {
  1144. "navigationBarTitleText" : "订单详情",
  1145. "enablePullDownRefresh": false,
  1146. "navigationBarBackgroundColor":"#FF5C03",
  1147. "navigationBarTextStyle":"white"
  1148. }
  1149. },
  1150. {
  1151. "path" : "pages/store/storeOrderDelivery",
  1152. "style" :
  1153. {
  1154. "navigationBarTitleText" : "物流查询",
  1155. "enablePullDownRefresh": false,
  1156. "navigationBarBackgroundColor":"#ffffff",
  1157. "navigationBarTextStyle":"black"
  1158. }
  1159. },
  1160. {
  1161. "path" : "pages/company/inquiryOrderList",
  1162. "style" :
  1163. {
  1164. "navigationBarTitleText" : "问诊订单",
  1165. "enablePullDownRefresh": false,
  1166. "navigationBarBackgroundColor":"#ffffff",
  1167. "navigationBarTextStyle":"black"
  1168. }
  1169. },
  1170. {
  1171. "path" : "pages/company/inquiryOrderDetails",
  1172. "style" :
  1173. {
  1174. "navigationBarTitleText" : "订单详情",
  1175. "enablePullDownRefresh": false,
  1176. "navigationBarBackgroundColor":"#ffffff",
  1177. "navigationBarTextStyle":"black"
  1178. }
  1179. },
  1180. {
  1181. "path" : "pages/company/voice",
  1182. "style" :
  1183. {
  1184. "navigationBarTitleText" : "声音采集",
  1185. "enablePullDownRefresh": false,
  1186. "navigationBarBackgroundColor":"#ffffff",
  1187. "navigationBarTextStyle":"black",
  1188. "app-plus": {
  1189. "bounce": "none" // 页面回弹
  1190. }
  1191. }
  1192. },{
  1193. "path" : "pages/company/voiceList",
  1194. "style" :
  1195. {
  1196. "navigationBarTitleText" : "声音采集",
  1197. "enablePullDownRefresh": false,
  1198. "navigationBarBackgroundColor":"#ffffff",
  1199. "navigationBarTextStyle":"black",
  1200. "app-plus": {
  1201. "bounce": "none" // 页面回弹
  1202. }
  1203. }
  1204. },
  1205. {
  1206. "path" : "pages/company/bindInfo",
  1207. "style" :
  1208. {
  1209. "navigationBarTitleText" : "",
  1210. "enablePullDownRefresh": false,
  1211. "navigationBarBackgroundColor":"#f7f7f7",
  1212. "navigationBarTextStyle":"black",
  1213. "app-plus": {
  1214. "bounce": "none" // 页面回弹
  1215. }
  1216. }
  1217. },
  1218. {
  1219. "path" : "pages/store/packageList",
  1220. "style" :
  1221. {
  1222. "navigationBarTitleText" : "疗法列表",
  1223. "enablePullDownRefresh": false,
  1224. "navigationBarBackgroundColor":"#ffffff",
  1225. "navigationBarTextStyle":"black"
  1226. }
  1227. },
  1228. {
  1229. "path" : "pages/store/packageDetails",
  1230. "style" :
  1231. {
  1232. "navigationBarTitleText" : "疗法详情",
  1233. "navigationBarTextStyle":"black",
  1234. "navigationStyle": "custom",
  1235. "scrollIndicator": "none",
  1236. "bounce": "none",
  1237. "titleNView": false,
  1238. "enablePullDownRefresh": false,
  1239. "backgroundColor": "#f7f7f7",
  1240. "backgroundColorTop":"#ffffff"
  1241. }
  1242. },
  1243. {
  1244. "path" : "pages/store/packageForm",
  1245. "style" :
  1246. {
  1247. "navigationBarTitleText" : "问答",
  1248. "enablePullDownRefresh": false,
  1249. "navigationBarBackgroundColor":"#ffffff",
  1250. "navigationBarTextStyle":"black"
  1251. }
  1252. },
  1253. {
  1254. "path" : "pages/store/packageOrderPay",
  1255. "style" :
  1256. {
  1257. "navigationBarTitleText" : "支付",
  1258. "enablePullDownRefresh": false,
  1259. "navigationBarBackgroundColor":"#ffffff",
  1260. "navigationBarTextStyle":"black",
  1261. "navigationStyle": "custom"
  1262. }
  1263. },
  1264. {
  1265. "path" : "pages/store/packageOrderPaySuccess",
  1266. "style" :
  1267. {
  1268. "navigationBarTitleText" : "支付结果",
  1269. "enablePullDownRefresh": false,
  1270. "navigationBarBackgroundColor":"#ffffff",
  1271. "navigationBarTextStyle":"black"
  1272. }
  1273. },
  1274. {
  1275. "path" : "pages/store/pingOrder",
  1276. "style" :
  1277. {
  1278. "navigationBarTitleText" : "评价",
  1279. "enablePullDownRefresh": false,
  1280. "navigationBarBackgroundColor":"#ffffff",
  1281. "navigationBarTextStyle":"black"
  1282. }
  1283. },
  1284. {
  1285. "path" : "pages/user/patient",
  1286. "style" :
  1287. {
  1288. "navigationBarTitleText" : "就诊人管理",
  1289. "enablePullDownRefresh": false,
  1290. "navigationBarBackgroundColor":"#ffffff",
  1291. "navigationBarTextStyle":"black"
  1292. }
  1293. },
  1294. {
  1295. "path" : "pages/user/addEditPatient",
  1296. "style" :
  1297. {
  1298. "navigationBarTitleText" : "",
  1299. "enablePullDownRefresh": false,
  1300. "navigationBarBackgroundColor":"#ffffff",
  1301. "navigationBarTextStyle":"black"
  1302. }
  1303. },
  1304. {
  1305. "path" : "pages/user/address",
  1306. "style" :
  1307. {
  1308. "navigationBarTitleText" : "地址管理",
  1309. "enablePullDownRefresh": false,
  1310. "navigationBarBackgroundColor":"#ffffff",
  1311. "navigationBarTextStyle":"black"
  1312. }
  1313. },
  1314. {
  1315. "path" : "pages/user/addEditAddress",
  1316. "style" :
  1317. {
  1318. "navigationBarTitleText" : "",
  1319. "enablePullDownRefresh": false,
  1320. "navigationBarBackgroundColor":"#ffffff",
  1321. "navigationBarTextStyle":"black"
  1322. }
  1323. },
  1324. {
  1325. "path" : "pages/store/packageOrderList",
  1326. "style" :
  1327. {
  1328. "navigationBarTitleText" : "疗法包",
  1329. "enablePullDownRefresh": false,
  1330. "navigationBarBackgroundColor":"#ffffff",
  1331. "navigationBarTextStyle":"black"
  1332. }
  1333. },
  1334. {
  1335. "path" : "pages/store/packageOrderDetails",
  1336. "style" :
  1337. {
  1338. "navigationBarTitleText" : "订单详情",
  1339. "enablePullDownRefresh": false,
  1340. "navigationBarBackgroundColor":"#FF5C03",
  1341. "navigationBarTextStyle":"white"
  1342. }
  1343. },
  1344. {
  1345. "path" : "pages/user/registerDoctor",
  1346. "style" :
  1347. {
  1348. "navigationBarTitleText" : "医生注册",
  1349. "enablePullDownRefresh": false,
  1350. "navigationBarBackgroundColor":"#ffffff",
  1351. "navigationBarTextStyle":"black"
  1352. }
  1353. },
  1354. {
  1355. "path" : "pages/user/agreement",
  1356. "style" :
  1357. {
  1358. "navigationBarTitleText" : "协议",
  1359. "enablePullDownRefresh": false,
  1360. "navigationBarBackgroundColor":"#ffffff",
  1361. "navigationBarTextStyle":"black"
  1362. }
  1363. },
  1364. {
  1365. "path" : "pages/store/inquiryOrderPingList",
  1366. "style" :
  1367. {
  1368. "navigationBarTitleText" : "我的评价",
  1369. "enablePullDownRefresh": false,
  1370. "navigationBarBackgroundColor":"#ffffff",
  1371. "navigationBarTextStyle":"black"
  1372. }
  1373. },
  1374. {
  1375. "path" : "pages/user/integral/integral",
  1376. "style" :
  1377. {
  1378. "navigationBarTitleText" : "我的芳华币",
  1379. "enablePullDownRefresh": false,
  1380. "navigationBarBackgroundColor":"#ffffff",
  1381. "navigationBarTextStyle":"black"
  1382. }
  1383. },
  1384. {
  1385. "path" : "pages/user/integral/points",
  1386. "style" :
  1387. {
  1388. "navigationBarTitleText" : "我的芳华币",
  1389. "enablePullDownRefresh": false,
  1390. "navigationBarBackgroundColor":"#ffffff",
  1391. "navigationBarTextStyle":"black",
  1392. "bounce": "none",
  1393. "titleNView": false,
  1394. "navigationStyle": "custom"
  1395. }
  1396. },
  1397. {
  1398. "path" : "pages/user/integral/integralGoodsList",
  1399. "style" :
  1400. {
  1401. "navigationBarTitleText" : "芳华币商城",
  1402. "enablePullDownRefresh": false,
  1403. "navigationBarBackgroundColor":"#ffffff",
  1404. "navigationBarTextStyle":"black"
  1405. }
  1406. },
  1407. {
  1408. "path" : "pages/user/integral/integralGoodsDetails",
  1409. "style" :
  1410. {
  1411. "navigationBarTitleText" : "商品详情",
  1412. "enablePullDownRefresh": false,
  1413. "navigationBarBackgroundColor":"#ffffff",
  1414. "navigationBarTextStyle":"black"
  1415. }
  1416. },
  1417. {
  1418. "path" : "pages/user/integral/integralOrderPay",
  1419. "style" :
  1420. {
  1421. "navigationBarTitleText" : "芳华币兑换",
  1422. "enablePullDownRefresh": false,
  1423. "navigationBarBackgroundColor":"#ffffff",
  1424. "navigationBarTextStyle":"black"
  1425. }
  1426. },
  1427. {
  1428. "path" : "pages/user/integral/integralOrderPaySuccess",
  1429. "style" :
  1430. {
  1431. "navigationBarTitleText" : "兑换成功",
  1432. "enablePullDownRefresh": false,
  1433. "navigationBarBackgroundColor":"#ffffff",
  1434. "navigationBarTextStyle":"black"
  1435. }
  1436. },
  1437. {
  1438. "path" : "pages/user/integral/integralOrderDetails",
  1439. "style" :
  1440. {
  1441. "navigationBarTitleText" : "订单详情",
  1442. "enablePullDownRefresh": false,
  1443. "navigationBarBackgroundColor":"#ffffff",
  1444. "navigationBarTextStyle":"black"
  1445. }
  1446. },
  1447. {
  1448. "path" : "pages/user/integral/integralOrderList",
  1449. "style" :
  1450. {
  1451. "navigationBarTitleText" : "订单列表",
  1452. "enablePullDownRefresh": false,
  1453. "navigationBarBackgroundColor":"#ffffff",
  1454. "navigationBarTextStyle":"black"
  1455. }
  1456. },
  1457. {
  1458. "path" : "pages/user/integral/integralLogsList",
  1459. "style" :
  1460. {
  1461. "navigationBarTitleText" : "芳华币记录",
  1462. "enablePullDownRefresh": false,
  1463. "navigationBarBackgroundColor":"#ffffff",
  1464. "navigationBarTextStyle":"black"
  1465. }
  1466. },
  1467. {
  1468. "path" : "pages/user/coupon/myCouponList",
  1469. "style" :
  1470. {
  1471. "navigationBarTitleText" : "我的优惠券",
  1472. "enablePullDownRefresh": false,
  1473. "navigationBarBackgroundColor":"#ffffff",
  1474. "navigationBarTextStyle":"black"
  1475. }
  1476. },
  1477. {
  1478. "path": "pages/TUIKit/TUIPages/TUIConversation/create",
  1479. "style": {
  1480. "navigationBarTitleText": "选择联系人",
  1481. "app-plus": {
  1482. "scrollIndicator": "none"
  1483. }
  1484. }
  1485. },
  1486. {
  1487. "path": "pages/TUIKit/TUIPages/TUIChat/index",
  1488. "style": {
  1489. "navigationBarTitleText": "问诊中",
  1490. "navigationBarBackgroundColor":"#ffffff",
  1491. "navigationBarTextStyle":"black",
  1492. "app-plus": {
  1493. "scrollIndicator": "none", //当前页面不显示滚动条
  1494. "bounce": "none" // 页面回弹
  1495. },
  1496. "usingComponents": {
  1497. "tuicallkit": "/wxcomponents/TUICallKit/TUICallKit/TUICallKit"
  1498. }
  1499. }
  1500. },
  1501. {
  1502. "path": "pages/TUIKit/TUIPages/TUIChat/components/message-elements/video-play",
  1503. "style": {
  1504. "navigationBarTitleText": "消息",
  1505. "app-plus": {}
  1506. }
  1507. },
  1508. {
  1509. "path" : "pages/user/editUser",
  1510. "aliasPath": "/",
  1511. "name": "editUser",
  1512. "style" : {
  1513. "navigationBarTitleText": "用户信息",
  1514. "enablePullDownRefresh": false,
  1515. "navigationBarBackgroundColor":"#fff",
  1516. "navigationBarTextStyle":"black",
  1517. "app-plus": {
  1518. "titleNView": {
  1519. "backButton": {
  1520. "title": ""
  1521. }
  1522. }
  1523. }
  1524. }
  1525. }
  1526. ,{
  1527. "path" : "pages/user/editPwd",
  1528. "aliasPath": "/",
  1529. "name": "editPwd",
  1530. "style" : {
  1531. "navigationBarTitleText": "修改密码",
  1532. "enablePullDownRefresh": false
  1533. }
  1534. },
  1535. {
  1536. "path": "pages/user/integralMall",
  1537. "style": {
  1538. "navigationBarTitleText": "芳华币商城",
  1539. "navigationStyle": "custom",
  1540. "titleNView": false,
  1541. "enablePullDownRefresh": false,
  1542. "backgroundColor": "#f7f7f7",
  1543. "backgroundColorTop":"#ffffff",
  1544. "bounce": "none"
  1545. }
  1546. },
  1547. {
  1548. "path": "pages/index/share/share",
  1549. "style": {
  1550. "navigationBarTitleText": "邀请好友",
  1551. "navigationStyle": "custom",
  1552. "titleNView": false,
  1553. "enablePullDownRefresh": false,
  1554. "backgroundColor": "#f7f7f7",
  1555. "backgroundColorTop":"#ffffff",
  1556. "bounce": "none"
  1557. }
  1558. },
  1559. {
  1560. "path": "pages/user/popularize",
  1561. "style": {
  1562. "navigationBarTitleText": "我的推广",
  1563. "navigationStyle": "custom",
  1564. "titleNView": false,
  1565. "enablePullDownRefresh": false,
  1566. "backgroundColor": "#f7f7f7",
  1567. "backgroundColorTop":"#ffffff",
  1568. "bounce": "none"
  1569. }
  1570. },
  1571. {
  1572. "path": "pages/user/popularizeGoods",
  1573. "style": {
  1574. "navigationBarTitleText": "推广商品",
  1575. "navigationStyle": "custom",
  1576. "titleNView": false,
  1577. "enablePullDownRefresh": false,
  1578. "backgroundColor": "#f7f7f7",
  1579. "backgroundColorTop":"#ffffff",
  1580. "bounce": "none"
  1581. }
  1582. },
  1583. {
  1584. "path": "pages/user/popularizeCommission",
  1585. "style": {
  1586. "navigationBarTitleText": "佣金明细",
  1587. "navigationStyle": "custom",
  1588. "titleNView": false,
  1589. "enablePullDownRefresh": false,
  1590. "backgroundColor": "#f7f7f7",
  1591. "backgroundColorTop":"#ffffff",
  1592. "bounce": "none"
  1593. }
  1594. },
  1595. {
  1596. "path": "pages/user/popularizeOrder",
  1597. "style": {
  1598. "navigationBarTitleText": "订单记录",
  1599. "navigationStyle": "custom",
  1600. "titleNView": false,
  1601. "enablePullDownRefresh": false,
  1602. "backgroundColor": "#f7f7f7",
  1603. "backgroundColorTop":"#ffffff",
  1604. "bounce": "none"
  1605. }
  1606. },
  1607. {
  1608. "path": "pages/index/video/index",
  1609. "style": {
  1610. "navigationBarTitleText": "达人视觉",
  1611. "navigationStyle": "custom",
  1612. "titleNView": false,
  1613. "enablePullDownRefresh": false,
  1614. "backgroundColor": "#f7f7f7",
  1615. "backgroundColorTop":"#ffffff",
  1616. "bounce": "none"
  1617. }
  1618. },
  1619. {
  1620. "path": "pages/user/wallet",
  1621. "style": {
  1622. "navigationBarTitleText": "我的钱包",
  1623. "navigationStyle": "custom",
  1624. "titleNView": false,
  1625. "enablePullDownRefresh": false,
  1626. "backgroundColor": "#f7f7f7",
  1627. "backgroundColorTop":"#ffffff",
  1628. "bounce": "none"
  1629. }
  1630. },
  1631. {
  1632. "path": "pages/user/courseCommission",
  1633. "style": {
  1634. "navigationBarTitleText": "课程佣金",
  1635. "navigationStyle": "custom",
  1636. "titleNView": false,
  1637. "enablePullDownRefresh": false,
  1638. "backgroundColor": "#f7f7f7",
  1639. "backgroundColorTop":"#ffffff",
  1640. "bounce": "none"
  1641. }
  1642. },
  1643. {
  1644. "path": "pages/user/share",
  1645. "style": {
  1646. "navigationBarTitleText": "医生拉新",
  1647. "navigationStyle": "custom",
  1648. "titleNView": false,
  1649. "enablePullDownRefresh": false,
  1650. "backgroundColor": "#f7f7f7",
  1651. "backgroundColorTop":"#ffffff",
  1652. "bounce": "none"
  1653. }
  1654. },
  1655. {
  1656. "path": "pages/user/integralInfo",
  1657. "style": {
  1658. "navigationBarTitleText": "我的芳华币",
  1659. "navigationStyle": "custom",
  1660. "titleNView": false,
  1661. "enablePullDownRefresh": false,
  1662. "backgroundColor": "#f7f7f7",
  1663. "backgroundColorTop":"#ffffff",
  1664. "bounce": "none"
  1665. }
  1666. },
  1667. {
  1668. "path": "pages/user/shareGoods",
  1669. "style": {
  1670. "navigationBarTitleText": "达人推荐",
  1671. "navigationStyle": "custom",
  1672. "titleNView": false,
  1673. "enablePullDownRefresh": false,
  1674. "backgroundColor": "#f7f7f7",
  1675. "backgroundColorTop":"#ffffff",
  1676. "bounce": "none"
  1677. }
  1678. },
  1679. // {
  1680. // "path" : "pages/course/video/livingApp",
  1681. // "style" :
  1682. // {
  1683. // "navigationBarTitleText" : "直播",
  1684. // "navigationStyle": "custom",
  1685. // "titleNView": false,
  1686. // "enablePullDownRefresh": false,
  1687. // "backgroundColor": "#000000",
  1688. // "backgroundColorTop":"#000000",
  1689. // "navigationBarTextStyle": "white"
  1690. // }
  1691. // },
  1692. {
  1693. "path" : "pages/course/video/fullVideo",
  1694. "style" :
  1695. {
  1696. "navigationBarTitleText" : "横屏播放",
  1697. "enablePullDownRefresh": false,
  1698. "navigationStyle": "custom",
  1699. "disableSwipeBack": true,
  1700. "backgroundColor": "#000000",
  1701. "titleNView": true,
  1702. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  1703. "app-plus": {
  1704. // "animationType": "none", // 设置fade-in淡入动画,为最合理的动画类型
  1705. "animationDuration": 0,
  1706. "animationType": "fade-in",
  1707. "background": "transparent", // 背景透明
  1708. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  1709. "webviewBGTransparent": true,
  1710. "mask": "none",
  1711. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  1712. }
  1713. }
  1714. },
  1715. {
  1716. "path" : "pages/course/video/comment",
  1717. "style" :
  1718. {
  1719. "navigationBarTitleText" : "视频评论",
  1720. "navigationStyle": "custom",
  1721. "titleNView": false,
  1722. "enablePullDownRefresh": false,
  1723. "navigationBarTextStyle": "white"
  1724. }
  1725. },
  1726. {
  1727. "path" : "pages/course/video/living-applet",
  1728. "style" :
  1729. {
  1730. "navigationBarTitleText" : "短视频",
  1731. "navigationStyle": "custom",
  1732. "enablePullDownRefresh": true
  1733. }
  1734. },
  1735. {
  1736. "path" : "pages/course/video/living-app-searchInfo",
  1737. "style" :
  1738. {
  1739. "navigationBarTitleText" : "短视频",
  1740. "navigationStyle": "custom",
  1741. "titleNView": false,
  1742. "enablePullDownRefresh": false,
  1743. "backgroundColor": "#000000",
  1744. "backgroundColorTop":"#000000",
  1745. "navigationBarTextStyle": "white",
  1746. "app-plus": {
  1747. "titleNView": false, //不启用系统导航
  1748. "subNVues":[{
  1749. "id": "videoCommentSearch", // 唯一标识
  1750. "path":"pages/course/video/commentN", // 页面路径
  1751. "type":"popup",
  1752. "style": {
  1753. "position": "absolute",
  1754. "bottom": "0",
  1755. "left": "0",
  1756. "width": "100%",
  1757. "height": "1150upx",
  1758. "mask":"rgba(0,0,0,0.5)",
  1759. "background": "transparent",
  1760. "border-top-left-radius": "20px",
  1761. "border-top-right-radius": "20px"
  1762. }
  1763. }]
  1764. }
  1765. }
  1766. },
  1767. {
  1768. "path" : "pages/course/video/videoUni",
  1769. "aliasPath": "/",
  1770. "name": "videoUni",
  1771. "style" :
  1772. {
  1773. "navigationBarTitleText" : "videoUni",
  1774. "enablePullDownRefresh": false,
  1775. "navigationStyle": "custom",
  1776. "disableSwipeBack": true,
  1777. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  1778. "app-plus": {
  1779. // "animationType": "none", // 设置fade-in淡入动画,为最合理的动画类型
  1780. "animationDuration": 0,
  1781. "animationType": "fade-in",
  1782. "background": "transparent", // 背景透明
  1783. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  1784. "webviewBGTransparent": true,
  1785. "mask": "none",
  1786. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  1787. }
  1788. }
  1789. },
  1790. {
  1791. "path" : "pages/course/video/play",
  1792. "aliasPath": "/",
  1793. "name": "videoPlay",
  1794. "style" :
  1795. {
  1796. "navigationBarTitleText" : "横屏播放",
  1797. "enablePullDownRefresh": false,
  1798. "navigationStyle": "custom",
  1799. "disableSwipeBack": true,
  1800. "backgroundColor": "#000000",
  1801. "titleNView": false,
  1802. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  1803. "app-plus": {
  1804. // "animationType": "none", // 设置fade-in淡入动画,为最合理的动画类型
  1805. "animationDuration": 0,
  1806. "animationType": "fade-in",
  1807. "background": "transparent", // 背景透明
  1808. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  1809. "webviewBGTransparent": true,
  1810. "mask": "none",
  1811. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  1812. }
  1813. }
  1814. },
  1815. {
  1816. "path" : "pages/course/video/play2",
  1817. "style" :
  1818. {
  1819. "navigationBarTitleText" : "横屏播放",
  1820. "enablePullDownRefresh": false,
  1821. "navigationStyle": "custom",
  1822. "disableSwipeBack": true,
  1823. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  1824. "app-plus": {
  1825. // "animationType": "none", // 设置fade-in淡入动画,为最合理的动画类型
  1826. "animationDuration": 0,
  1827. "animationType": "fade-in",
  1828. "background": "transparent", // 背景透明
  1829. "backgroundColor": "#000", // 背景透明
  1830. "webviewBGTransparent": true,
  1831. "mask": "none",
  1832. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  1833. }
  1834. }
  1835. },
  1836. {
  1837. "path" : "pages/course/video/playClose",
  1838. "style" :
  1839. {
  1840. "navigationBarTitleText" : "横屏播放",
  1841. "enablePullDownRefresh": false,
  1842. "navigationStyle": "custom",
  1843. "disableSwipeBack": true,
  1844. "popGesture": "none", // 关闭IOS屏幕左边滑动关闭当前页面的功能
  1845. "app-plus": {
  1846. // "animationType": "none", // 设置fade-in淡入动画,为最合理的动画类型
  1847. "animationDuration": 0,
  1848. "animationType": "fade-in",
  1849. "background": "transparent", // 背景透明
  1850. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  1851. "webviewBGTransparent": true,
  1852. "mask": "none",
  1853. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  1854. }
  1855. }
  1856. },
  1857. {
  1858. "path" : "pages/user/about",
  1859. "aliasPath": "/",
  1860. "name": "about",
  1861. "style" : {
  1862. "navigationBarTitleText": "关于我们",
  1863. "enablePullDownRefresh": false,
  1864. "navigationBarBackgroundColor":"#ffffff",
  1865. "navigationBarTextStyle":"black"
  1866. }
  1867. },
  1868. {
  1869. "path" : "pages/user/myFavoriteVideo",
  1870. "style" :
  1871. {
  1872. "navigationBarTitleText": "视频收藏",
  1873. "navigationStyle": "custom",
  1874. "scrollIndicator": "none",
  1875. "bounce": "none",
  1876. "titleNView": false,
  1877. "enablePullDownRefresh": false
  1878. }
  1879. },
  1880. {
  1881. "path" : "pages/user/myliving-app",
  1882. "style" :
  1883. {
  1884. "navigationBarTitleText": "",
  1885. "enablePullDownRefresh": false,
  1886. "navigationBarBackgroundColor":"#ffffff",
  1887. "navigationBarTextStyle":"black",
  1888. "navigationStyle": "custom",
  1889. "app-plus": {
  1890. "titleNView": false, //不启用系统导航
  1891. "bounce": "none",
  1892. "subNVues":[{
  1893. "id": "mylivingApp", // 唯一标识
  1894. "path":"pages/course/video/commentN", // 页面路径
  1895. "type":"popup",
  1896. "style": {
  1897. "position": "absolute",
  1898. "bottom": "0",
  1899. "left": "0",
  1900. "width": "100%",
  1901. "height": "1150upx",
  1902. "mask":"rgba(0,0,0,0.5)",
  1903. "background": "transparent",
  1904. "border-top-left-radius": "20px",
  1905. "border-top-right-radius": "20px"
  1906. }
  1907. }]
  1908. }
  1909. }
  1910. },
  1911. {
  1912. "path" : "pages/user/userInfo",
  1913. "style" :
  1914. {
  1915. "navigationBarTitleText": "个人信息",
  1916. "enablePullDownRefresh": false,
  1917. "navigationBarBackgroundColor":"#ffffff",
  1918. "scrollIndicator": "none",
  1919. "bounce": "none",
  1920. "navigationBarTextStyle":"black"
  1921. }
  1922. },
  1923. {
  1924. "path" : "pages/store/storeOrderRefundApply",
  1925. "style" :
  1926. {
  1927. "navigationBarTitleText": "申请售后",
  1928. "navigationBarTextStyle": "black",
  1929. "navigationBarBackgroundColor": "#ffffff"
  1930. }
  1931. },
  1932. {
  1933. "path" : "pages/store/storeOrderRefundSubmit",
  1934. "style" :
  1935. {
  1936. "navigationBarTitleText": "提交售后",
  1937. "navigationBarTextStyle": "black",
  1938. "navigationBarBackgroundColor": "#ffffff"
  1939. }
  1940. },
  1941. {
  1942. "path" : "pages/store/storeOrderRefundList",
  1943. "style" :
  1944. {
  1945. "navigationBarTitleText" : "我的售后",
  1946. "enablePullDownRefresh": false,
  1947. "navigationBarBackgroundColor":"#ffffff",
  1948. "navigationBarTextStyle":"black"
  1949. }
  1950. },
  1951. {
  1952. "path" : "pages/store/storeOrderRefundDetails",
  1953. "style" :
  1954. {
  1955. "navigationBarTitleText" : "售后详情",
  1956. "enablePullDownRefresh": false,
  1957. "navigationBarBackgroundColor":"#FF5C03",
  1958. "navigationBarTextStyle":"white"
  1959. }
  1960. },
  1961. {
  1962. "path" : "pages/store/storeOrderRefundAddDelivery",
  1963. "style" :
  1964. {
  1965. "navigationBarTitleText": "填写物流单号",
  1966. "navigationBarTextStyle": "black",
  1967. "navigationBarBackgroundColor": "#ffffff"
  1968. }
  1969. },
  1970. {
  1971. "path" : "pages/store/inquiryOrderReport",
  1972. "style" :
  1973. {
  1974. "navigationBarTitleText": "报告详情",
  1975. "navigationBarTextStyle": "black",
  1976. "navigationBarBackgroundColor": "#ffffff"
  1977. }
  1978. },
  1979. {
  1980. "path" : "pages/store/payH5",
  1981. "style" :
  1982. {
  1983. "navigationBarTitleText": "支付订单",
  1984. "navigationBarTextStyle": "black",
  1985. "navigationBarBackgroundColor": "#ffffff"
  1986. }
  1987. },
  1988. {
  1989. "path" : "pages/course/video/test",
  1990. "style" :
  1991. {
  1992. "navigationBarTitleText" : ""
  1993. }
  1994. },
  1995. {
  1996. "path" : "components/share-box/share-box",
  1997. "style" :
  1998. {
  1999. "navigationBarTitleText" : ""
  2000. }
  2001. },
  2002. {
  2003. "path" : "pages/ai/index",
  2004. "style" :
  2005. {
  2006. "navigationBarTitleText": "智能客服系统",
  2007. "navigationBarTextStyle": "black",
  2008. "navigationBarBackgroundColor": "#ffffff"
  2009. }
  2010. },{
  2011. "path" : "pages/ai/consultation",
  2012. "style" :
  2013. {
  2014. "navigationBarTitleText": "智能体咨询",
  2015. "navigationBarTextStyle": "black",
  2016. "navigationBarBackgroundColor": "#ffffff"
  2017. }
  2018. },{
  2019. "path" : "pages/ai/list",
  2020. "style" :
  2021. {
  2022. "navigationBarTitleText": "对话",
  2023. "navigationBarTextStyle": "black",
  2024. "navigationBarBackgroundColor": "#ffffff"
  2025. }
  2026. },{
  2027. "path" : "pages/ai/chat",
  2028. "style" :
  2029. {
  2030. "navigationBarTitleText": "",
  2031. "navigationBarTextStyle": "black",
  2032. "navigationBarBackgroundColor": "#ffffff",
  2033. "navigationStyle": "custom",
  2034. "app-plus": {
  2035. "bounce": "none", // 页面回弹
  2036. "softinputMode": "adjustResize"
  2037. }
  2038. }
  2039. },
  2040. {
  2041. "path" : "pages/auth/h5WxLogin",
  2042. "style" :
  2043. {
  2044. "navigationBarTitleText": "微信授权登录",
  2045. "navigationBarTextStyle": "black",
  2046. "navigationBarBackgroundColor": "#ffffff"
  2047. }
  2048. },
  2049. {
  2050. "path" : "pages/course/studyCenter/courseCollect",
  2051. "style": {
  2052. "navigationBarTitleText": "课程收藏",
  2053. "navigationBarTextStyle": "black",
  2054. "navigationBarBackgroundColor": "#ffffff",
  2055. "app-plus": {
  2056. "titleNView": {
  2057. "buttons": [
  2058. {
  2059. "fontSize": "15px",
  2060. "width": "60px",
  2061. "text": "管理"
  2062. }
  2063. ]
  2064. }
  2065. }
  2066. }
  2067. },
  2068. {
  2069. "path" : "pages/course/studyCenter/orderList",
  2070. "style" :
  2071. {
  2072. "navigationBarTitleText" : "我的订单",
  2073. "navigationBarTextStyle": "black",
  2074. "navigationBarBackgroundColor": "#ffffff"
  2075. }
  2076. },
  2077. {
  2078. "path" : "pages/auth/loginTest",
  2079. "style" :
  2080. {
  2081. "navigationBarTitleText" : "H5登录",
  2082. "navigationBarTextStyle": "black",
  2083. "navigationBarBackgroundColor": "#ffffff"
  2084. }
  2085. },
  2086. {
  2087. "path" : "pages/user/msgSetting",
  2088. "style" :
  2089. {
  2090. "navigationBarTitleText" : "消息设置",
  2091. "navigationBarTextStyle": "black",
  2092. "navigationBarBackgroundColor": "#ffffff",
  2093. "app-plus": {
  2094. "titleNView": {
  2095. "buttons": [
  2096. {
  2097. "fontSize": "15px",
  2098. "width": "60px",
  2099. "text": "保存"
  2100. }
  2101. ]
  2102. }
  2103. }
  2104. }
  2105. }
  2106. ,{
  2107. "path": "pages/user/tongue/index",
  2108. "style": {
  2109. "navigationBarTitleText": "AI舌诊",
  2110. "navigationBarTextStyle": "black",
  2111. "navigationStyle": "custom",
  2112. "scrollIndicator": "none",
  2113. "titleNView": false,
  2114. "enablePullDownRefresh": false,
  2115. "app-plus": {
  2116. "bounce": "none"
  2117. }
  2118. }
  2119. },{
  2120. "path": "pages/user/tongue/ques",
  2121. "style": {
  2122. "navigationBarTitleText": "使用教程",
  2123. "enablePullDownRefresh": false,
  2124. "navigationBarBackgroundColor":"#ffffff",
  2125. "navigationBarTextStyle":"black",
  2126. "scrollIndicator": "none",
  2127. "app-plus": {
  2128. "bounce": "none"
  2129. }
  2130. }
  2131. },{
  2132. "path": "pages/user/tongue/photoPreview",
  2133. "style": {
  2134. "navigationBarTitleText": "",
  2135. "navigationBarTextStyle": "black",
  2136. "navigationStyle": "custom",
  2137. "scrollIndicator": "none",
  2138. "titleNView": false,
  2139. "enablePullDownRefresh": false,
  2140. "app-plus": {
  2141. "bounce": "none"
  2142. }
  2143. }
  2144. }
  2145. ,{
  2146. "path": "pages/user/tongue/tongueList",
  2147. "style": {
  2148. "navigationBarTitleText" : "舌诊记录",
  2149. "enablePullDownRefresh": false,
  2150. "navigationBarBackgroundColor":"#ffffff",
  2151. "navigationBarTextStyle":"black",
  2152. "scrollIndicator": "none",
  2153. "app-plus": {
  2154. "bounce": "none"
  2155. }
  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. ,{
  2173. "path" : "pages/user/tongue/test",
  2174. "style" :
  2175. {
  2176. "navigationBarTitleText" : ""
  2177. }
  2178. },
  2179. {
  2180. "path": "pages/index/download",
  2181. "style": {
  2182. "navigationBarTitleText": "",
  2183. "navigationStyle": "custom",
  2184. "scrollIndicator": "none",
  2185. "bounce": "none",
  2186. "titleNView": false,
  2187. "enablePullDownRefresh": false,
  2188. "backgroundColor": "#f7f7f7",
  2189. "backgroundColorTop":"#ffffff"
  2190. }
  2191. },
  2192. {
  2193. "path" : "pages/user/addHealthButler",
  2194. "style" :
  2195. {
  2196. "navigationBarTitleText": "健康管家",
  2197. "enablePullDownRefresh": false,
  2198. "navigationBarBackgroundColor":"#ffffff",
  2199. "navigationBarTextStyle":"black",
  2200. "app-plus": {
  2201. "bounce": "none"
  2202. }
  2203. }
  2204. },
  2205. {
  2206. "path" : "pages/index/appDownload",
  2207. "style" :
  2208. {
  2209. "navigationBarTitleText": "芳华未来-APP下载",
  2210. "enablePullDownRefresh": false,
  2211. "navigationBarBackgroundColor":"#ffffff",
  2212. "navigationBarTextStyle":"black",
  2213. "navigationStyle": "custom",
  2214. "app-plus": {
  2215. "bounce": "none"
  2216. }
  2217. }
  2218. },{
  2219. "path" : "pages/store/invoice/index",
  2220. "style" :
  2221. {
  2222. "navigationBarTitleText": "开具发票",
  2223. "enablePullDownRefresh": false,
  2224. "navigationBarBackgroundColor":"#ffffff",
  2225. "navigationBarTextStyle":"black",
  2226. "app-plus": {
  2227. "bounce": "none"
  2228. }
  2229. }
  2230. },{
  2231. "path" : "pages/store/invoice/invoiceDetail",
  2232. "style" :
  2233. {
  2234. "navigationBarTitleText": "发票详情",
  2235. "enablePullDownRefresh": false,
  2236. "navigationBarBackgroundColor":"#ffffff",
  2237. "navigationBarTextStyle":"black",
  2238. "app-plus": {
  2239. "bounce": "none"
  2240. }
  2241. }
  2242. },{
  2243. "path" : "pages/store/invoice/invoiceList",
  2244. "style" :
  2245. {
  2246. "navigationBarTitleText": "开票历史",
  2247. "enablePullDownRefresh": false,
  2248. "navigationBarBackgroundColor":"#ffffff",
  2249. "navigationBarTextStyle":"black",
  2250. "app-plus": {
  2251. "bounce": "none"
  2252. }
  2253. }
  2254. },{
  2255. "path" : "pages/store/invoice/invoiceOther",
  2256. "style" :
  2257. {
  2258. "navigationBarTitleText": "",
  2259. "enablePullDownRefresh": false,
  2260. "navigationBarBackgroundColor":"#ffffff",
  2261. "navigationBarTextStyle":"black",
  2262. "app-plus": {
  2263. "bounce": "none"
  2264. }
  2265. }
  2266. },
  2267. {
  2268. "path" : "pages/index/searchInfo",
  2269. "style" :
  2270. {
  2271. "navigationBarTitleText": "搜索结果",
  2272. "enablePullDownRefresh": false,
  2273. "navigationBarBackgroundColor":"#ffffff",
  2274. "navigationBarTextStyle":"black",
  2275. "navigationStyle": "custom",
  2276. "app-plus": {
  2277. "bounce": "none"
  2278. }
  2279. }
  2280. },
  2281. {
  2282. "path": "pages/courseAnswer/index",
  2283. "style": {
  2284. "navigationBarTitleText": "课程详情",
  2285. "enablePullDownRefresh": false,
  2286. "navigationBarBackgroundColor":"#ffffff",
  2287. "navigationBarTextStyle":"black",
  2288. "app-plus": {
  2289. "bounce": "none",
  2290. "popGesture": "none",
  2291. "screenOrientation" : [
  2292. //可选,字符串数组类型,应用支持的横竖屏
  2293. "portrait-primary", //可选,字符串类型,支持竖屏
  2294. "portrait-secondary", //可选,字符串类型,支持反向竖屏
  2295. "landscape-primary", //可选,字符串类型,支持横屏
  2296. "landscape-secondary" //可选,字符串类型,支持反向横屏
  2297. ]
  2298. }
  2299. }
  2300. },
  2301. {
  2302. "path": "pages/courseAnswer/list",
  2303. "style": {
  2304. "navigationBarTitleText": "看课通知",
  2305. "enablePullDownRefresh": false,
  2306. "navigationBarBackgroundColor":"#ffffff",
  2307. "navigationBarTextStyle":"black",
  2308. "app-plus": {
  2309. "bounce": "none"
  2310. }
  2311. }
  2312. },
  2313. {
  2314. "path": "pages/user/myNoticeList",
  2315. "style": {
  2316. "navigationBarTitleText": "系统通知",
  2317. "enablePullDownRefresh": false,
  2318. "navigationBarBackgroundColor":"#ffffff",
  2319. "navigationBarTextStyle":"black",
  2320. "navigationStyle": "custom",
  2321. "app-plus": {
  2322. "bounce": "none"
  2323. }
  2324. }
  2325. },
  2326. {
  2327. "path": "pages/user/bindCompanyUser",
  2328. "style": {
  2329. "navigationBarTitleText": "",
  2330. "enablePullDownRefresh": false,
  2331. "navigationBarBackgroundColor":"#ffffff",
  2332. "navigationBarTextStyle":"black",
  2333. "navigationStyle": "custom",
  2334. "app-plus": {
  2335. "bounce": "none"
  2336. }
  2337. }
  2338. },
  2339. {
  2340. "path": "pages/expert/index",
  2341. "style": {
  2342. "navigationBarTitleText": "",
  2343. "enablePullDownRefresh": false,
  2344. "navigationBarBackgroundColor":"#ffffff",
  2345. "navigationBarTextStyle":"black",
  2346. "navigationStyle": "custom",
  2347. "app-plus": {
  2348. "bounce": "none"
  2349. }
  2350. }
  2351. },
  2352. {
  2353. "path": "pages/expert/releaseVideo",
  2354. "style": {
  2355. "navigationBarTitleText": "",
  2356. "enablePullDownRefresh": false,
  2357. "navigationBarBackgroundColor":"#ffffff",
  2358. "navigationBarTextStyle":"black",
  2359. "navigationStyle": "custom",
  2360. "app-plus": {
  2361. "bounce": "none"
  2362. }
  2363. }
  2364. },{
  2365. "path": "pages/expert/info",
  2366. "style": {
  2367. "navigationBarTitleText": "",
  2368. "enablePullDownRefresh": false,
  2369. "navigationBarBackgroundColor":"#ffffff",
  2370. "navigationBarTextStyle":"black",
  2371. "navigationStyle": "custom",
  2372. "app-plus": {
  2373. "bounce": "none"
  2374. }
  2375. }
  2376. },
  2377. {
  2378. "path" : "pages/expert/friendsList",
  2379. "style": {
  2380. "navigationBarTitleText": "",
  2381. "enablePullDownRefresh": false,
  2382. "navigationBarBackgroundColor":"#ffffff",
  2383. "navigationBarTextStyle":"black",
  2384. "navigationStyle": "custom",
  2385. "app-plus": {
  2386. "bounce": "none"
  2387. }
  2388. }
  2389. }
  2390. ],
  2391. "globalStyle": {
  2392. "navigationBarTextStyle": "white",
  2393. "navigationBarTitleText": "",
  2394. "navigationBarBackgroundColor": "#ffffff",
  2395. "backgroundColor": "#f7f7f7",
  2396. "backgroundColorTop":"#f7f7f7" // iOS APP真机bounce回弹区域默认灰色,建议统一重置为白色
  2397. },
  2398. "uniIdRouter": {},
  2399. "tabBar": {
  2400. "color": "#999999",
  2401. "selectedColor": "#FF5C03",
  2402. "borderStyle": "white",
  2403. "backgroundColor": "#ffffff",
  2404. "height": "64px",
  2405. "fontSize":"12px",
  2406. "iconWidth":"20px",
  2407. "spacing": "4px",
  2408. "list": [
  2409. {
  2410. "pagePath": "pages/index/index",
  2411. "iconPath": "/static/image/tabbar/tab_home_icon.png",
  2412. "selectedIconPath": "/static/image/tabbar/tab_home_on_iconx.png",
  2413. "text": "首页"
  2414. },
  2415. {
  2416. "pagePath": "pages/course/index",
  2417. "iconPath": "/static/image/tabbar/tab_hall_icon.png",
  2418. "selectedIconPath": "/static/image/tabbar/tab_hall_on_icon.png",
  2419. "text": "学习"
  2420. },
  2421. {
  2422. "pagePath": "pages/course/video/living-app",
  2423. "iconPath": "/static/image/tabbar/tab_video_icon.png",
  2424. "selectedIconPath": "/static/image/tabbar/tab_video_on_icon.png",
  2425. "text": "视频"
  2426. },
  2427. {
  2428. "pagePath": "pages/TUIKit/TUIPages/TUIConversation/index",
  2429. "iconPath": "/static/image/tabbar/tab_new_icon.png",
  2430. "selectedIconPath": "/static/image/tabbar/tab_new_on_icon.png",
  2431. "text": "消息"
  2432. },
  2433. {
  2434. "pagePath": "pages/user/index",
  2435. "iconPath": "/static/image/tabbar/tab_my_icon.png",
  2436. "selectedIconPath": "/static/image/tabbar/tab_my_on_icon.png",
  2437. "text": "我的"
  2438. }
  2439. ]
  2440. },
  2441. "subPackages": [
  2442. {
  2443. "root": "pages/user/healthRecords",
  2444. "pages":
  2445. [
  2446. {
  2447. "path": "index",
  2448. "style": {
  2449. "navigationBarTitleText": "健康档案",
  2450. "navigationStyle": "custom",
  2451. "app-plus": {
  2452. "bounce": "none"
  2453. }
  2454. }
  2455. },
  2456. {
  2457. "path": "add",
  2458. "style": {
  2459. "navigationBarTitleText": "快速填写健康档案",
  2460. "navigationBarTextStyle": "black"
  2461. }
  2462. },
  2463. {
  2464. "path": "edit",
  2465. "style": {
  2466. "navigationBarTitleText": "",
  2467. "navigationBarTextStyle": "black",
  2468. "navigationBarBackgroundColor": "#ffffff"
  2469. }
  2470. }
  2471. ]
  2472. },
  2473. {
  2474. "root": "pages_watch",
  2475. "pages":
  2476. [
  2477. {
  2478. "path": "index/myfamily/index",
  2479. "style": {
  2480. "navigationBarTitleText": "我的家人",
  2481. "enablePullDownRefresh": false,
  2482. "navigationStyle": "custom",
  2483. "navigationBarBackgroundColor":"#ffffff",
  2484. "navigationBarTextStyle":"black",
  2485. "app-plus": {
  2486. "bounce": "none"
  2487. }
  2488. }
  2489. },
  2490. {
  2491. "path": "index/myfamily/changeTitle",
  2492. "style": {
  2493. "navigationBarTitleText": "修改称呼",
  2494. "enablePullDownRefresh": false,
  2495. "navigationStyle": "custom",
  2496. "navigationBarBackgroundColor":"#ffffff",
  2497. "navigationBarTextStyle":"black",
  2498. "app-plus": {
  2499. "bounce": "none"
  2500. }
  2501. }
  2502. },{
  2503. "path": "index/equipment/index",
  2504. "style": {
  2505. "navigationBarTitleText": "设备管理",
  2506. "navigationStyle": "custom",
  2507. "enablePullDownRefresh": false,
  2508. "navigationBarBackgroundColor":"#ffffff",
  2509. "navigationBarTextStyle":"black",
  2510. "app-plus": {
  2511. "bounce": "none"
  2512. }
  2513. }
  2514. },{
  2515. "path": "index/equipment/offlineReason",
  2516. "style": {
  2517. "navigationBarTitleText": "设备离线提示",
  2518. "enablePullDownRefresh": false,
  2519. "navigationBarBackgroundColor":"#ffffff",
  2520. "navigationBarTextStyle":"black",
  2521. "app-plus": {
  2522. "bounce": "none"
  2523. }
  2524. }
  2525. },{
  2526. "path": "index/equipment/set",
  2527. "style": {
  2528. "navigationBarTitleText": "",
  2529. "enablePullDownRefresh": false,
  2530. "navigationBarBackgroundColor":"#ffffff",
  2531. "navigationBarTextStyle":"black",
  2532. "app-plus": {
  2533. "bounce": "none"
  2534. }
  2535. }
  2536. },{
  2537. "path": "index/equipment/clockalarm",
  2538. "style": {
  2539. "navigationBarTitleText": "",
  2540. "navigationStyle": "custom",
  2541. "enablePullDownRefresh": false,
  2542. "disableScroll":true,
  2543. "navigationBarBackgroundColor":"#ffffff",
  2544. "navigationBarTextStyle":"black",
  2545. "app-plus": {
  2546. "bounce": "none"
  2547. }
  2548. }
  2549. },{
  2550. "path": "index/equipment/emergencyContact",
  2551. "style": {
  2552. "navigationBarTitleText": "常用联系人",
  2553. "navigationStyle": "custom",
  2554. "enablePullDownRefresh": false,
  2555. "disableScroll":true,
  2556. "app-plus":{
  2557. "bounce":"none"
  2558. }
  2559. }
  2560. },{
  2561. "path": "index/equipment/editEmergencyContact",
  2562. "style": {
  2563. "navigationBarTitleText": "创建联系人",
  2564. "navigationStyle": "custom",
  2565. "enablePullDownRefresh": false,
  2566. "app-plus": {
  2567. "bounce": "none"
  2568. }
  2569. }
  2570. },{
  2571. "path": "index/equipment/instructions",
  2572. "style": {
  2573. "navigationBarTitleText": "新手指导",
  2574. "enablePullDownRefresh": false,
  2575. "navigationBarBackgroundColor":"#ffffff",
  2576. "navigationBarTextStyle":"black",
  2577. "app-plus": {
  2578. "bounce": "none"
  2579. }
  2580. }
  2581. },{
  2582. "path": "index/equipment/deviceInfo",
  2583. "style": {
  2584. "navigationBarTitleText": "设备信息",
  2585. "enablePullDownRefresh": false,
  2586. "navigationBarBackgroundColor":"#ffffff",
  2587. "navigationBarTextStyle":"black",
  2588. "app-plus": {
  2589. "bounce": "none",
  2590. "softinputNavBar": "none"
  2591. }
  2592. }
  2593. },{
  2594. "path": "index/equipment/sportsTrajectory",
  2595. "style": {
  2596. "navigationBarTitleText": "运动轨迹",
  2597. "enablePullDownRefresh": false,
  2598. "navigationBarBackgroundColor":"#ffffff",
  2599. "navigationBarTextStyle":"black",
  2600. "app-plus": {
  2601. "bounce": "none",
  2602. "softinputNavBar": "none"
  2603. }
  2604. }
  2605. },{
  2606. "path": "healthMonitoring/index",
  2607. "style": {
  2608. // "navigationBarTitleText": "编辑卡片",
  2609. "navigationBarTitleText": "",
  2610. "navigationStyle": "custom",
  2611. "enablePullDownRefresh": false,
  2612. "app-plus": {
  2613. "bounce": "none"
  2614. }
  2615. }
  2616. },{
  2617. "path": "healthMonitoring/bloodSugar",
  2618. "style": {
  2619. // "navigationBarTitleText": "血糖监测",
  2620. "navigationBarTitleText": "",
  2621. "navigationStyle": "custom",
  2622. "app-plus": {
  2623. "bounce": "none"
  2624. }
  2625. }
  2626. },{
  2627. "path": "healthMonitoring/bloodSugarAbnormal",
  2628. "style": {
  2629. "navigationBarTitleText": "血糖异常数据",
  2630. "enablePullDownRefresh": false,
  2631. "navigationBarBackgroundColor":"#ffffff",
  2632. "navigationBarTextStyle":"black",
  2633. "app-plus": {
  2634. "bounce": "none"
  2635. }
  2636. }
  2637. },{
  2638. "path": "healthMonitoring/bloodSugarDetail",
  2639. "style": {
  2640. "navigationBarTitleText": "血糖详情",
  2641. "enablePullDownRefresh": false,
  2642. "navigationBarBackgroundColor":"#ffffff",
  2643. "navigationBarTextStyle":"black",
  2644. "app-plus": {
  2645. "bounce": "none"
  2646. }
  2647. }
  2648. },{
  2649. "path": "healthMonitoring/bloodPressure",
  2650. "style": {
  2651. // "navigationBarTitleText": "血压监测",
  2652. "navigationBarTitleText": "",
  2653. "navigationStyle": "custom",
  2654. "app-plus": {
  2655. "bounce": "none"
  2656. }
  2657. }
  2658. },{
  2659. "path": "healthMonitoring/bloodPressureAbnormal",
  2660. "style": {
  2661. "navigationBarTitleText": "血压异常数据",
  2662. "enablePullDownRefresh": false,
  2663. "navigationBarBackgroundColor":"#ffffff",
  2664. "navigationBarTextStyle":"black",
  2665. "app-plus": {
  2666. "bounce": "none"
  2667. }
  2668. }
  2669. },{
  2670. "path": "healthMonitoring/bloodPressureDetail",
  2671. "style": {
  2672. "navigationBarTitleText": "血压详情",
  2673. "enablePullDownRefresh": false,
  2674. "navigationBarBackgroundColor":"#ffffff",
  2675. "navigationBarTextStyle":"black",
  2676. "app-plus": {
  2677. "bounce": "none"
  2678. }
  2679. }
  2680. },{
  2681. "path": "healthMonitoring/heartRate",
  2682. "style": {
  2683. // "navigationBarTitleText": "心率监测",
  2684. "navigationBarTitleText": "",
  2685. "navigationStyle": "custom",
  2686. "app-plus": {
  2687. "bounce": "none"
  2688. }
  2689. }
  2690. },{
  2691. "path": "healthMonitoring/bloodOxygen",
  2692. "style": {
  2693. // "navigationBarTitleText": "血氧监测",
  2694. "navigationBarTitleText": "",
  2695. "navigationStyle": "custom",
  2696. "app-plus": {
  2697. "bounce": "none"
  2698. }
  2699. }
  2700. },{
  2701. "path": "healthMonitoring/sleep",
  2702. "style": {
  2703. // "navigationBarTitleText": "睡眠监测",
  2704. "navigationBarTitleText": "",
  2705. "navigationStyle": "custom",
  2706. "app-plus": {
  2707. "bounce": "none"
  2708. }
  2709. }
  2710. },{
  2711. "path": "healthMonitoring/scanCode",
  2712. "style": {
  2713. "navigationBarTitleText": "扫描手表二维码",
  2714. "enablePullDownRefresh": false,
  2715. "navigationBarTextStyle":"black",
  2716. "navigationStyle": "custom",
  2717. "app-plus": {
  2718. "titleNView": false,
  2719. "bounce": "none"
  2720. }
  2721. }
  2722. },{
  2723. "path": "health/healthReport",
  2724. "style": {
  2725. "navigationBarTitleText": "健康报告",
  2726. "enablePullDownRefresh": false,
  2727. "navigationBarBackgroundColor":"#ffffff",
  2728. "navigationBarTextStyle":"black",
  2729. "app-plus": {
  2730. "bounce": "none"
  2731. }
  2732. }
  2733. },{
  2734. "path": "health/healthWeekReport",
  2735. "style": {
  2736. "navigationBarTitleText": "健康报告",
  2737. "enablePullDownRefresh": false,
  2738. "navigationBarBackgroundColor":"#ffffff",
  2739. "navigationBarTextStyle":"black",
  2740. "navigationStyle": "custom",
  2741. "app-plus": {
  2742. "bounce": "none"
  2743. }
  2744. }
  2745. },{
  2746. "path": "health/healthReportHistory",
  2747. "style": {
  2748. "navigationBarTitleText": "健康报告列表",
  2749. "enablePullDownRefresh": false,
  2750. "navigationBarBackgroundColor":"#ffffff",
  2751. "navigationBarTextStyle":"black",
  2752. "app-plus": {
  2753. "bounce": "none"
  2754. }
  2755. }
  2756. },{
  2757. "path": "message/detail",
  2758. "style": {
  2759. "navigationBarTitleText": "",
  2760. "navigationStyle": "custom",
  2761. "enablePullDownRefresh": false,
  2762. "app-plus": {
  2763. "bounce": "none"
  2764. }
  2765. }
  2766. },{
  2767. "path": "message/sosMap",
  2768. "style": {
  2769. "navigationBarTitleText": "SOS详情",
  2770. "enablePullDownRefresh": false,
  2771. "navigationBarBackgroundColor":"#ffffff",
  2772. "navigationBarTextStyle":"black",
  2773. "app-plus": {
  2774. "bounce": "none"
  2775. }
  2776. }
  2777. },{
  2778. "path": "index/targetInfo",
  2779. "style": {
  2780. "navigationBarTitleText": "设备信息",
  2781. "navigationStyle": "custom",
  2782. "enablePullDownRefresh": false,
  2783. "navigationBarBackgroundColor":"#ffffff",
  2784. "navigationBarTextStyle":"black",
  2785. "app-plus": {
  2786. "bounce": "none"
  2787. }
  2788. }
  2789. },{
  2790. "path": "healthMonitoring/bodyTemperature",
  2791. "style": {
  2792. // "navigationBarTitleText": "体温",
  2793. "navigationBarTitleText": "",
  2794. "navigationStyle": "custom",
  2795. "app-plus": {
  2796. "bounce": "none"
  2797. }
  2798. }
  2799. },{
  2800. "path": "healthMonitoring/uricAcid",
  2801. "style": {
  2802. // "navigationBarTitleText": "尿酸监测",
  2803. "navigationBarTitleText": "",
  2804. "navigationStyle": "custom",
  2805. "app-plus": {
  2806. "bounce": "none"
  2807. }
  2808. }
  2809. },{
  2810. "path": "healthMonitoring/uricAcidAbnormal",
  2811. "style": {
  2812. "navigationBarTitleText": "尿酸异常数据",
  2813. "enablePullDownRefresh": false,
  2814. "navigationBarBackgroundColor":"#ffffff",
  2815. "navigationBarTextStyle":"black",
  2816. "app-plus": {
  2817. "bounce": "none"
  2818. }
  2819. }
  2820. },{
  2821. "path": "healthMonitoring/sports",
  2822. "style": {
  2823. // "navigationBarTitleText": "活动",
  2824. "navigationBarTitleText": "",
  2825. "navigationStyle": "custom",
  2826. "enablePullDownRefresh": false,
  2827. "navigationBarBackgroundColor":"#ffffff",
  2828. "navigationBarTextStyle":"black",
  2829. "app-plus": {
  2830. "bounce": "none"
  2831. }
  2832. }
  2833. },{
  2834. "path": "healthMonitoring/sportsList",
  2835. "style": {
  2836. "navigationBarTitleText": "运动",
  2837. "enablePullDownRefresh": false,
  2838. "navigationBarBackgroundColor":"#ffffff",
  2839. "navigationBarTextStyle":"black",
  2840. "app-plus": {
  2841. "bounce": "none"
  2842. }
  2843. }
  2844. },{
  2845. "path": "healthMonitoring/pressure",
  2846. "style": {
  2847. "navigationBarTitleText": "压力",
  2848. "navigationStyle": "custom",
  2849. "app-plus": {
  2850. "bounce": "none"
  2851. }
  2852. }
  2853. }
  2854. ]
  2855. }
  2856. ]
  2857. }