pages.json 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223
  1. {
  2. "easycom": {
  3. // "^w-(.*)": "@/uni_modules/wmf-code/components/w-$1/index.vue" ,//二维码条形码的配置 如果是uni_modules
  4. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  5. },
  6. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "path": "pages/index/index",
  9. "style": {
  10. "navigationBarTitleText": "",
  11. "navigationStyle": "custom",
  12. "navigationBarTextStyle": "white"
  13. }
  14. },
  15. {
  16. "path": "pages/guide/index",
  17. "style": {
  18. "app-plus": {
  19. "titleNView": false //禁用原生导航栏
  20. },
  21. "navigationStyle": "custom",
  22. "disableScroll": true
  23. }
  24. },
  25. {
  26. "path": "pages/store_cate/store_cate",
  27. "style": {
  28. "navigationBarTitleText": "门店",
  29. "navigationStyle": "custom",
  30. "navigationBarTextStyle": "white"
  31. }
  32. },
  33. {
  34. "path": "pages/mall/mall",
  35. "style": {
  36. "navigationBarTitleText": "",
  37. "navigationStyle": "custom",
  38. "navigationBarTextStyle": "white"
  39. }
  40. },
  41. {
  42. "path": "pages/chat/index",
  43. "style": {
  44. "navigationBarTitleText": "",
  45. "navigationStyle": "custom",
  46. "navigationBarTextStyle": "white"
  47. }
  48. },
  49. {
  50. "path": "pages/chat/details",
  51. "style": {
  52. "navigationBarTitleText": "",
  53. "navigationStyle": "custom",
  54. "navigationBarTextStyle": "white"
  55. }
  56. },
  57. {
  58. "path": "pages/index/storeInfo",
  59. "style": {
  60. "navigationBarTitleText": "商家信息"
  61. }
  62. },
  63. {
  64. "path": "pages/index/subscribe",
  65. "style": {
  66. "navigationBarTitleText": "预约服务"
  67. }
  68. },
  69. {
  70. "path": "pages/index/successfully",
  71. "style": {
  72. "navigationBarTitleText": "提交成功"
  73. }
  74. },
  75. {
  76. "path": "pages/user/order",
  77. "style": {
  78. "navigationBarTitleText": "",
  79. "navigationStyle": "custom",
  80. "navigationBarTextStyle": "white"
  81. }
  82. },
  83. {
  84. "path": "pages/user/orderDetails",
  85. "style": {
  86. "navigationBarTitleText": "订单详情"
  87. }
  88. },
  89. {
  90. "path": "pages/user/myFile",
  91. "style": {
  92. "navigationBarTitleText": "",
  93. "navigationStyle": "custom",
  94. "navigationBarTextStyle": "white"
  95. }
  96. },
  97. //新建健康档案
  98. {
  99. "path": "pages/createFiles/index",
  100. "style": {
  101. "navigationBarTitleText": "健康档案",
  102. "navigationStyle": "custom",
  103. "navigationBarTextStyle": "white"
  104. }
  105. },
  106. //上传图片
  107. {
  108. "path": "pages/createFiles/uploadImg",
  109. "style": {
  110. "navigationBarTitleText": "上传照片",
  111. "navigationStyle": "custom",
  112. "navigationBarTextStyle": "white"
  113. }
  114. },
  115. {
  116. "path": "pages/createFiles/myFile",
  117. "style": {
  118. "navigationBarTitleText": ""
  119. }
  120. },
  121. {
  122. "path": "pages/createFiles/editFile",
  123. "style": {
  124. "navigationBarTitleText": "修改档案",
  125. "navigationStyle": "custom",
  126. "navigationBarTextStyle": "white"
  127. }
  128. },
  129. {
  130. "path": "pages/createFiles/histroy",
  131. "style": {
  132. "navigationBarTitleText": "诊疗记录",
  133. "navigationStyle": "custom",
  134. "navigationBarTextStyle": "white"
  135. }
  136. },
  137. {
  138. "path": "pages/createFiles/successfully",
  139. "style": {
  140. "navigationBarTitleText": "提交成功"
  141. }
  142. },
  143. //专家出诊
  144. {
  145. "path": "pages/createFiles/visit",
  146. "style": {
  147. "navigationBarTitleText": ""
  148. }
  149. },
  150. {
  151. "path": "pages/wallet/wallet",
  152. "style": {
  153. "navigationBarTitleText": "",
  154. "navigationStyle": "custom",
  155. "navigationBarTextStyle": "white"
  156. }
  157. },
  158. {
  159. "path": "pages/order_addcart/order_addcart",
  160. "style": {
  161. "navigationBarTitleText": "购物车",
  162. // #ifdef MP || APP-PLUS
  163. "navigationStyle": "custom",
  164. // #endif
  165. "app-plus": {
  166. // #ifdef APP-PLUS
  167. "titleNView": {
  168. "type": "default"
  169. }
  170. // #endif
  171. }
  172. }
  173. },
  174. {
  175. "path": "pages/user/index",
  176. "style": {
  177. "navigationBarTitleText": "个人中心",
  178. // #ifdef MP || APP-PLUS
  179. "navigationStyle": "custom",
  180. // "navigationBarBackgroundColor": "#e93323",
  181. "navigationBarTextStyle": "black",
  182. // #endif
  183. // #ifdef MP
  184. "disableScroll": true,
  185. // #endif
  186. "app-plus": {
  187. // 将回弹属性关掉
  188. "bounce": "none"
  189. }
  190. }
  191. },
  192. {
  193. "path": "pages/goods_cate/goods_cate",
  194. "style": {
  195. "navigationBarTitleText": "商品分类",
  196. // #ifdef MP || APP-PLUS
  197. "navigationStyle": "custom",
  198. // #endif
  199. "app-plus": {
  200. // #ifdef APP-PLUS
  201. // "titleNView": {
  202. // "type": "default"
  203. // }
  204. // #endif
  205. }
  206. }
  207. }
  208. //#ifdef H5
  209. ,
  210. {
  211. "path": "pages/auth/index",
  212. "style": {
  213. "navigationBarTitleText": ""
  214. }
  215. }
  216. //#endif
  217. ],
  218. // "plugins": {
  219. // "live-player-plugin": {
  220. // "version": "1.3.2",
  221. // "provider": "wx2b03c6e691cd7370"
  222. // }
  223. // },
  224. "subPackages": [
  225. {
  226. "root": "pages/users",
  227. "name": "users",
  228. "pages": [{
  229. "path": "user_vip_areer/index",
  230. "style": {
  231. "navigationBarTitleText": "经验记录",
  232. "app-plus": {
  233. // #ifdef APP-PLUS
  234. "titleNView": {
  235. "type": "default"
  236. }
  237. // #endif
  238. }
  239. }
  240. },
  241. {
  242. "path": "privacy/index",
  243. "style": {
  244. "navigationBarTitleText": "协议",
  245. // #ifdef MP || APP-PLUS
  246. "navigationStyle": "custom",
  247. // #endif
  248. "app-plus": {
  249. // #ifdef APP-PLUS
  250. // "titleNView": {
  251. // "type": "default"
  252. // }
  253. // #endif
  254. }
  255. }
  256. }, {
  257. "path": "user_cancellation/index",
  258. "style": {
  259. "navigationBarTitleText": "注销协议",
  260. "app-plus": {
  261. // #ifdef APP-PLUS
  262. "titleNView": {
  263. "type": "default"
  264. }
  265. // #endif
  266. }
  267. }
  268. },
  269. {
  270. "path": "message_center/index",
  271. "style": {
  272. "navigationBarTitleText": "消息中心",
  273. "enablePullDownRefresh": true,
  274. "app-plus": {
  275. // #ifdef APP-PLUS
  276. "titleNView": {
  277. "type": "default"
  278. }
  279. // #endif
  280. }
  281. }
  282. },
  283. {
  284. "path": "message_center/messageDetail",
  285. "style": {
  286. "navigationBarTitleText": "消息详情",
  287. "app-plus": {
  288. // #ifdef APP-PLUS
  289. "titleNView": {
  290. "type": "default"
  291. }
  292. // #endif
  293. }
  294. }
  295. },
  296. {
  297. "path": "user_invoice_order/index",
  298. "style": {
  299. "navigationBarTitleText": "订单详情",
  300. "app-plus": {
  301. // #ifdef APP-PLUS
  302. "titleNView": {
  303. "type": "default"
  304. }
  305. // #endif
  306. }
  307. }
  308. },
  309. {
  310. "path": "scan_login/index",
  311. "style": {
  312. "navigationBarTitleText": "授权登录"
  313. }
  314. },
  315. {
  316. "path": "user_invoice_list/index",
  317. "style": {
  318. "navigationBarTitleText": "发票管理",
  319. "app-plus": {
  320. // #ifdef APP-PLUS
  321. "titleNView": {
  322. "type": "default"
  323. }
  324. // #endif
  325. }
  326. }
  327. },
  328. {
  329. "path": "user_invoice_form/index",
  330. "style": {
  331. "navigationBarTitleText": "添加新发票",
  332. "app-plus": {
  333. // #ifdef APP-PLUS
  334. "titleNView": {
  335. "type": "default"
  336. }
  337. // #endif
  338. }
  339. }
  340. },
  341. //#ifdef H5
  342. {
  343. "path": "alipay_invoke/index",
  344. "style": {
  345. "navigationBarTitleText": "支付提示"
  346. }
  347. },
  348. //#endif
  349. {
  350. "path": "wechat_login/index",
  351. "style": {
  352. "navigationBarTitleText": "账户登录",
  353. "navigationStyle": "custom",
  354. "app-plus": {
  355. "scrollIndicator": false //禁用原生导航栏
  356. }
  357. }
  358. },
  359. {
  360. "path": "binding_phone/index",
  361. "style": {
  362. "navigationBarTitleText": "",
  363. "navigationStyle": "custom",
  364. "app-plus": {
  365. "scrollIndicator": "none"
  366. }
  367. }
  368. },
  369. {
  370. "path": "retrievePassword/index",
  371. "style": {
  372. "navigationBarTitleText": "忘记密码",
  373. "app-plus": {
  374. // #ifdef APP-PLUS
  375. "titleNView": {
  376. "type": "default"
  377. }
  378. // #endif
  379. }
  380. }
  381. },
  382. {
  383. "path": "user_set/index",
  384. "style": {
  385. "navigationBarTitleText": "设置",
  386. "app-plus": {
  387. // #ifdef APP-PLUS
  388. "titleNView": {
  389. "type": "default"
  390. }
  391. // #endif
  392. }
  393. }
  394. },
  395. {
  396. "path": "user_info/index",
  397. "style": {
  398. "navigationBarTitleText": "个人资料",
  399. "app-plus": {
  400. // #ifdef APP-PLUS
  401. "titleNView": {
  402. "type": "default"
  403. }
  404. // #endif
  405. }
  406. }
  407. },
  408. {
  409. "path": "user_get_coupon/index",
  410. "style": {
  411. "navigationBarTitleText": "领取优惠券",
  412. "app-plus": {
  413. // #ifdef APP-PLUS
  414. "titleNView": {
  415. "type": "default"
  416. }
  417. // #endif
  418. }
  419. }
  420. },
  421. {
  422. "path": "visit_list/index",
  423. "style": {
  424. "navigationBarTitleText": "浏览记录",
  425. "app-plus": {
  426. // #ifdef APP-PLUS
  427. "titleNView": {
  428. "type": "default"
  429. }
  430. // #endif
  431. }
  432. }
  433. },
  434. {
  435. "path": "user_goods_collection/index",
  436. "style": {
  437. "navigationBarTitleText": "收藏商品",
  438. "app-plus": {
  439. // #ifdef APP-PLUS
  440. "titleNView": {
  441. "type": "default"
  442. }
  443. // #endif
  444. }
  445. }
  446. },
  447. {
  448. "path": "user_sgin/index",
  449. "style": {
  450. "navigationBarTitleText": "签到",
  451. // #ifdef MP
  452. // "navigationBarTextStyle": "white",
  453. // "navigationBarBackgroundColor": "#e93323"
  454. // #endif
  455. "app-plus": {
  456. // #ifdef APP-PLUS
  457. "titleNView": {
  458. "type": "default"
  459. }
  460. // #endif
  461. }
  462. }
  463. },
  464. {
  465. "path": "user_sgin_list/index",
  466. "style": {
  467. "navigationBarTitleText": "签到记录",
  468. "app-plus": {
  469. // #ifdef APP-PLUS
  470. "titleNView": {
  471. "type": "default"
  472. }
  473. // #endif
  474. }
  475. }
  476. },
  477. {
  478. "path": "user_money/index",
  479. "style": {
  480. "navigationBarTitleText": "我的账户",
  481. "app-plus": {
  482. // #ifdef APP-PLUS
  483. "titleNView": {
  484. "type": "default"
  485. }
  486. // #endif
  487. }
  488. }
  489. },
  490. {
  491. "path": "user_bill/index",
  492. "style": {
  493. "navigationBarTitleText": "账单明细",
  494. "app-plus": {
  495. // #ifdef APP-PLUS
  496. "titleNView": {
  497. "type": "default"
  498. }
  499. // #endif
  500. }
  501. }
  502. },
  503. {
  504. "path": "user_integral/index",
  505. "style": {
  506. "navigationBarTitleText": "积分详情"
  507. // #ifdef MP
  508. ,
  509. "navigationBarTextStyle": "black",
  510. "navigationBarBackgroundColor": "#FFFFFF"
  511. // #endif
  512. ,
  513. "app-plus": {
  514. // #ifdef APP-PLUS
  515. "titleNView": {
  516. "type": "default"
  517. }
  518. // #endif
  519. }
  520. }
  521. },
  522. {
  523. "path": "user_coupon/index",
  524. "style": {
  525. "navigationBarTitleText": "我的优惠券",
  526. "app-plus": {
  527. // #ifdef APP-PLUS
  528. "titleNView": {
  529. "type": "default"
  530. }
  531. // #endif
  532. }
  533. }
  534. },
  535. {
  536. "path": "user_spread_user/index",
  537. "style": {
  538. "navigationBarTitleText": "我的推广"
  539. // #ifdef MP
  540. ,
  541. "navigationBarTextStyle": "black",
  542. "navigationBarBackgroundColor": "#FFFFFF"
  543. // #endif
  544. ,
  545. "app-plus": {
  546. // #ifdef APP-PLUS
  547. "titleNView": {
  548. "type": "default"
  549. }
  550. // #endif
  551. }
  552. }
  553. },
  554. {
  555. "path": "user_spread_code/index",
  556. "style": {
  557. "navigationBarTitleText": "分销海报",
  558. "app-plus": {
  559. // #ifdef APP-PLUS
  560. "titleNView": {
  561. "type": "default"
  562. }
  563. // #endif
  564. }
  565. }
  566. },
  567. {
  568. "path": "user_spread_money/index",
  569. "style": {
  570. "navigationBarTitleText": "佣金记录"
  571. // #ifdef MP
  572. ,
  573. "navigationBarTextStyle": "black",
  574. "navigationBarBackgroundColor": "#FFFFFF"
  575. // #endif
  576. ,
  577. "app-plus": {
  578. // #ifdef APP-PLUS
  579. "titleNView": {
  580. "type": "default"
  581. }
  582. // #endif
  583. }
  584. }
  585. },
  586. {
  587. "path": "user_cash/index",
  588. "style": {
  589. "navigationBarTitleText": "提现",
  590. "navigationBarBackgroundColor": "#FFFFFF"
  591. // #ifdef MP || APP-PLUS
  592. ,
  593. "navigationBarTextStyle": "black"
  594. // #endif
  595. ,
  596. "app-plus": {
  597. // #ifdef APP-PLUS
  598. "titleNView": {
  599. "type": "default"
  600. }
  601. // #endif
  602. }
  603. }
  604. },
  605. {
  606. "path": "user_vip/index",
  607. "style": {
  608. "navigationBarTitleText": "我的等级",
  609. "navigationBarBackgroundColor": "#232323"
  610. // #ifdef MP || APP-PLUS
  611. ,
  612. "navigationBarTextStyle": "white"
  613. // #endif
  614. ,
  615. "app-plus": {
  616. // #ifdef APP-PLUS
  617. "titleNView": {
  618. "type": "default"
  619. }
  620. // #endif
  621. }
  622. }
  623. }, {
  624. "path": "user_distribution_level/index",
  625. "style": {
  626. "navigationBarTitleText": "分销等级",
  627. "navigationBarBackgroundColor": "#232323"
  628. // #ifdef MP || APP-PLUS
  629. ,
  630. "navigationBarTextStyle": "white"
  631. // #endif
  632. ,
  633. "app-plus": {
  634. // #ifdef APP-PLUS
  635. "titleNView": {
  636. "type": "default"
  637. }
  638. // #endif
  639. }
  640. }
  641. },
  642. {
  643. "path": "user_address_list/index",
  644. "style": {
  645. "navigationBarTitleText": "地址管理",
  646. "app-plus": {
  647. // #ifdef APP-PLUS
  648. "titleNView": {
  649. "type": "default"
  650. }
  651. // #endif
  652. }
  653. }
  654. },
  655. {
  656. "path": "user_address/index",
  657. "style": {
  658. "navigationBarTitleText": "添加地址",
  659. "app-plus": {
  660. // #ifdef APP-PLUS
  661. "titleNView": {
  662. "type": "default"
  663. }
  664. // #endif
  665. }
  666. }
  667. },
  668. {
  669. "path": "user_phone/index",
  670. "style": {
  671. "navigationBarTitleText": "绑定手机",
  672. // #ifdef MP
  673. // "navigationBarTextStyle": "white",
  674. // "navigationBarBackgroundColor": "#e93323"
  675. // #endif
  676. "app-plus": {
  677. // #ifdef APP-PLUS
  678. "titleNView": {
  679. "type": "default"
  680. }
  681. // #endif
  682. }
  683. }
  684. },
  685. {
  686. "path": "user_payment/index",
  687. "style": {
  688. "navigationBarTitleText": "余额充值",
  689. "app-plus": {
  690. // #ifdef APP-PLUS
  691. "titleNView": {
  692. "type": "default"
  693. }
  694. // #endif
  695. }
  696. }
  697. },
  698. {
  699. "path": "user_pwd_edit/index",
  700. "style": {
  701. "navigationBarTitleText": "修改密码"
  702. // #ifdef MP
  703. // ,
  704. // "navigationBarTextStyle": "white"
  705. // "navigationBarBackgroundColor": "#e93323"
  706. // #endif
  707. ,
  708. "app-plus": {
  709. // #ifdef APP-PLUS
  710. "titleNView": {
  711. "type": "default"
  712. }
  713. // #endif
  714. }
  715. }
  716. },
  717. {
  718. "path": "promoter-list/index",
  719. "style": {
  720. "navigationBarTitleText": "推广人列表"
  721. // #ifdef MP
  722. ,
  723. "navigationBarBackgroundColor": "#FFFFFF",
  724. "navigationBarTextStyle": "black"
  725. // #endif
  726. ,
  727. "app-plus": {
  728. // #ifdef APP-PLUS
  729. "titleNView": {
  730. "type": "default"
  731. }
  732. // #endif
  733. }
  734. }
  735. },
  736. {
  737. "path": "promoter-order/index",
  738. "style": {
  739. "navigationBarTitleText": "推广人订单"
  740. // #ifdef MP
  741. ,
  742. "navigationBarTextStyle": "black",
  743. "navigationBarBackgroundColor": "#FFFFFF"
  744. // #endif
  745. ,
  746. "app-plus": {
  747. // #ifdef APP-PLUS
  748. "titleNView": {
  749. "type": "default"
  750. }
  751. // #endif
  752. }
  753. }
  754. },
  755. {
  756. "path": "promoter_rank/index",
  757. "style": {
  758. "navigationBarTitleText": "推广人排行"
  759. // #ifdef MP
  760. ,
  761. "navigationBarTextStyle": "black",
  762. "navigationBarBackgroundColor": "#FFFFFF"
  763. // #endif
  764. ,
  765. "app-plus": {
  766. // #ifdef APP-PLUS
  767. "titleNView": {
  768. "type": "default"
  769. }
  770. // #endif
  771. }
  772. }
  773. },
  774. {
  775. "path": "commission_rank/index",
  776. "style": {
  777. "navigationBarTitleText": "佣金排行",
  778. "navigationBarBackgroundColor": "#FFFFFF"
  779. // #ifdef MP || APP-PLUS
  780. ,
  781. "navigationBarTextStyle": "black"
  782. // #endif
  783. ,
  784. "app-plus": {
  785. // #ifdef APP-PLUS
  786. "titleNView": {
  787. "type": "default"
  788. }
  789. // #endif
  790. }
  791. }
  792. },
  793. {
  794. "path": "user_return_list/index",
  795. "style": {
  796. "navigationBarTitleText": "退货列表",
  797. "app-plus": {
  798. // #ifdef APP-PLUS
  799. "titleNView": {
  800. "type": "default"
  801. }
  802. // #endif
  803. }
  804. }
  805. },
  806. {
  807. "path": "login/index",
  808. "style": {
  809. "navigationBarTitleText": "登录",
  810. "app-plus": {
  811. // #ifdef APP-PLUS
  812. "titleNView": {
  813. "type": "default"
  814. }
  815. // #endif
  816. }
  817. }
  818. },
  819. {
  820. "path": "supplier/index",
  821. "style": {
  822. "navigationBarTitleText": "供应商入驻",
  823. "app-plus": {
  824. // #ifdef APP-PLUS
  825. "titleNView": {
  826. "type": "default"
  827. }
  828. // #endif
  829. }
  830. }
  831. },
  832. {
  833. "path": "supplier_state/index",
  834. "style": {
  835. "navigationBarTitleText": "申请状态",
  836. "app-plus": {
  837. // #ifdef APP-PLUS
  838. "titleNView": {
  839. "type": "default"
  840. }
  841. // #endif
  842. }
  843. }
  844. },
  845. {
  846. "path": "record_list/index",
  847. "style": {
  848. "navigationBarTitleText": "申请记录",
  849. "app-plus": {
  850. // #ifdef APP-PLUS
  851. "titleNView": {
  852. "type": "default"
  853. }
  854. // #endif
  855. }
  856. }
  857. }
  858. ]
  859. },
  860. {
  861. "root": "pages/short_video",
  862. "name": "shortVideo",
  863. "pages": [{
  864. "enablePullDownRefresh": false,
  865. //#ifdef APP
  866. "path": "appSwiper/index",
  867. //#endif
  868. //#ifndef APP
  869. "path": "nvueSwiper/index",
  870. //#endif
  871. "style": {
  872. "navigationBarTitleText": "短视频",
  873. "app-plus": {
  874. "titleNView": false,
  875. "bounce": "none"
  876. }
  877. }
  878. }]
  879. },
  880. {
  881. "root": "pages/goods_details",
  882. "name": "goods_details",
  883. "pages": [{
  884. "path": "index",
  885. "style": {
  886. "navigationStyle": "custom"
  887. // #ifdef MP
  888. ,
  889. "disableScroll": true
  890. // #endif
  891. // "app-plus": {
  892. // // #ifdef APP-PLUS
  893. // "titleNView": {
  894. // "type": "default"
  895. // }
  896. // // #endif
  897. // }
  898. }
  899. },
  900. {
  901. "path": "discountsGoodsList",
  902. "style": {
  903. "navigationBarTitleText": "套餐列表",
  904. "app-plus": {
  905. // #ifdef APP-PLUS
  906. "titleNView": {
  907. "type": "default"
  908. }
  909. // #endif
  910. }
  911. }
  912. }]
  913. },
  914. // 门店分包
  915. {
  916. "root": "pages/store",
  917. "name": "store",
  918. "pages": [{
  919. "path": "service/index",
  920. "style": {
  921. "navigationBarTitleText": "小米之家",
  922. "app-plus": {
  923. // #ifdef APP-PLUS
  924. "titleNView": {
  925. "type": "default"
  926. }
  927. // #endif
  928. }
  929. }
  930. }, {
  931. "path": "search_stores/index",
  932. "style": {
  933. "navigationBarTitleText": "搜索列表",
  934. "app-plus": {
  935. "titleNView": {
  936. "type": "搜索列表"
  937. }
  938. }
  939. }
  940. },
  941. {
  942. "path": "newcomers/index",
  943. "style": {
  944. "navigationBarTitleText": "新人专享区",
  945. "app-plus": {
  946. // #ifdef APP-PLUS
  947. "titleNView": {
  948. "type": "default"
  949. }
  950. // #endif
  951. }
  952. }
  953. },
  954. {
  955. "path": "ruleInfo/index",
  956. "style": {
  957. "navigationBarTitleText": "活动规则",
  958. "app-plus": {
  959. // #ifdef APP-PLUS
  960. "titleNView": {
  961. "type": "default"
  962. }
  963. // #endif
  964. }
  965. }
  966. },
  967. {
  968. "path": "store_list/index",
  969. "style": {
  970. "navigationBarTitleText": "门店列表",
  971. "app-plus": {
  972. "titleNView": {
  973. "type": "default"
  974. }
  975. }
  976. }
  977. },
  978. {
  979. //#ifdef APP
  980. "path": "mapnvue/index",
  981. //#endif
  982. //#ifndef APP
  983. "path": "map/index",
  984. //#endif
  985. "style": {
  986. "navigationBarTitleText": "门店地图"
  987. }
  988. }
  989. // #ifdef MP || H5
  990. ,
  991. {
  992. "path": "group_buy/index",
  993. "style": {
  994. "navigationBarTitleText": "拼单进行中",
  995. "navigationStyle": "custom"
  996. }
  997. },
  998. {
  999. "path": "group_cart/index",
  1000. "style": {
  1001. "navigationStyle": "custom"
  1002. }
  1003. },
  1004. {
  1005. "path": "group_goods/index",
  1006. "style": {
  1007. "navigationBarTitleText": "订单详情"
  1008. }
  1009. }
  1010. // #endif
  1011. // #ifdef MP
  1012. ,
  1013. {
  1014. "path": "table_code/index",
  1015. "style": {
  1016. "navigationBarTitleText": "商品列表",
  1017. "navigationStyle": "custom"
  1018. }
  1019. },
  1020. {
  1021. "path": "table_confirm/index",
  1022. "style": {
  1023. "navigationBarTitleText": "提交订单",
  1024. "navigationStyle": "custom",
  1025. "enablePullDownRefresh": true
  1026. }
  1027. }
  1028. // #endif
  1029. ]
  1030. },
  1031. {
  1032. "root": "pages/activity",
  1033. "name": "activity",
  1034. "pages": [{
  1035. "path": "goods_bargain/index",
  1036. "style": {
  1037. // #ifdef MP
  1038. // "navigationBarTextStyle": "white",
  1039. // "navigationBarBackgroundColor": "#E93323",
  1040. "navigationBarTitleText": "砍价列表",
  1041. // #endif
  1042. "app-plus": {
  1043. // #ifdef APP-PLUS
  1044. "titleNView": {
  1045. "type": "default"
  1046. }
  1047. // #endif
  1048. }
  1049. }
  1050. },
  1051. {
  1052. "path": "goods_bargain_details/index",
  1053. "style": {
  1054. "navigationStyle": "custom"
  1055. // #ifdef MP
  1056. ,
  1057. "navigationBarTextStyle": "white"
  1058. // #endif
  1059. ,
  1060. "app-plus": {
  1061. // #ifdef APP-PLUS
  1062. "titleNView": {
  1063. "type": "default"
  1064. }
  1065. // #endif
  1066. }
  1067. }
  1068. },
  1069. {
  1070. "path": "goods_combination/index",
  1071. "style": {
  1072. // "navigationBarTextStyle": "white",
  1073. // "navigationBarBackgroundColor": "#E93323",
  1074. "navigationBarTitleText": "拼团列表",
  1075. "app-plus": {
  1076. // #ifdef APP-PLUS
  1077. "titleNView": {
  1078. "type": "default"
  1079. }
  1080. // #endif
  1081. }
  1082. }
  1083. },
  1084. {
  1085. "path": "goods_combination_details/index",
  1086. "style": {
  1087. "navigationStyle": "custom",
  1088. "app-plus": {
  1089. // #ifdef APP-PLUS
  1090. // "titleNView": {
  1091. // "type": "default"
  1092. // }
  1093. // #endif
  1094. }
  1095. // #ifdef MP
  1096. ,
  1097. "disableScroll": true
  1098. // #endif
  1099. }
  1100. },
  1101. {
  1102. "path": "goods_combination_status/index",
  1103. "style": {
  1104. "navigationBarTitleText": "拼团",
  1105. "app-plus": {
  1106. // #ifdef APP-PLUS
  1107. "titleNView": {
  1108. "type": "default"
  1109. }
  1110. // #endif
  1111. }
  1112. }
  1113. },
  1114. {
  1115. "path": "goods_seckill/index",
  1116. "style": {
  1117. "navigationBarTitleText": "限时秒杀"
  1118. // #ifdef MP
  1119. // "navigationBarTextStyle": "white"
  1120. // "navigationBarBackgroundColor": "#e93323"
  1121. // #endif
  1122. ,
  1123. "app-plus": {
  1124. // #ifdef APP-PLUS
  1125. "titleNView": {
  1126. "type": "default"
  1127. }
  1128. // #endif
  1129. }
  1130. }
  1131. },
  1132. {
  1133. "path": "goods_seckill_details/index",
  1134. "style": {
  1135. "navigationStyle": "custom"
  1136. // #ifdef MP
  1137. ,
  1138. "navigationBarTextStyle": "black"
  1139. // #endif
  1140. ,
  1141. "app-plus": {
  1142. // #ifdef APP-PLUS
  1143. // "titleNView": {
  1144. // "type": "default"
  1145. // }
  1146. // #endif
  1147. }
  1148. // #ifdef MP
  1149. ,
  1150. "disableScroll": true
  1151. // #endif
  1152. }
  1153. },
  1154. {
  1155. "path": "poster-poster/index",
  1156. "style": {
  1157. "navigationBarTitleText": "砍价海报"
  1158. // #ifdef MP
  1159. // "navigationBarTextStyle": "white"
  1160. // "navigationBarBackgroundColor": "#d22516"
  1161. // #endif
  1162. ,
  1163. "app-plus": {
  1164. // #ifdef APP-PLUS
  1165. "titleNView": {
  1166. "type": "default"
  1167. }
  1168. // #endif
  1169. }
  1170. }
  1171. },
  1172. {
  1173. "path": "bargain/index",
  1174. "style": {
  1175. "navigationBarTitleText": "砍价记录",
  1176. "app-plus": {
  1177. // #ifdef APP-PLUS
  1178. "titleNView": {
  1179. "type": "default"
  1180. }
  1181. // #endif
  1182. }
  1183. }
  1184. },
  1185. {
  1186. "path": "presell/index",
  1187. "style": {
  1188. "navigationBarTitleText": "预售列表",
  1189. "app-plus": {
  1190. // #ifdef APP-PLUS
  1191. "titleNView": {
  1192. "type": "default"
  1193. }
  1194. // #endif
  1195. }
  1196. }
  1197. },
  1198. {
  1199. "path": "discount/index",
  1200. "style": {
  1201. "navigationBarTitleText": "优惠活动",
  1202. "app-plus": {
  1203. // #ifdef APP-PLUS
  1204. "titleNView": {
  1205. "type": "default"
  1206. }
  1207. // #endif
  1208. }
  1209. }
  1210. }]
  1211. },
  1212. {
  1213. "root": "pages/admin",
  1214. "name": "adminOrder",
  1215. "pages": [{
  1216. "path": "custom_date/index",
  1217. "style": {
  1218. "navigationBarTitleText": "选择日期"
  1219. }
  1220. },
  1221. {
  1222. "path": "order/index",
  1223. "style": {
  1224. "navigationBarTitleText": "订单统计",
  1225. "app-plus": {
  1226. // #ifdef APP-PLUS
  1227. "titleNView": {
  1228. "type": "default"
  1229. }
  1230. // #endif
  1231. }
  1232. }
  1233. },
  1234. {
  1235. "path": "orderList/index",
  1236. "style": {
  1237. "navigationBarTitleText": "订单列表",
  1238. "app-plus": {
  1239. // #ifdef APP-PLUS
  1240. "titleNView": {
  1241. "type": "default"
  1242. }
  1243. // #endif
  1244. }
  1245. }
  1246. },
  1247. {
  1248. "path": "orderDetail/index",
  1249. "style": {
  1250. "navigationBarTitleText": "订单详情",
  1251. "app-plus": {
  1252. // #ifdef APP-PLUS
  1253. "titleNView": {
  1254. "type": "default"
  1255. }
  1256. // #endif
  1257. }
  1258. }
  1259. },
  1260. {
  1261. "path": "delivery/index",
  1262. "style": {
  1263. "navigationBarTitleText": "订单发货",
  1264. "app-plus": {
  1265. // #ifdef APP-PLUS
  1266. "titleNView": {
  1267. "type": "default"
  1268. }
  1269. // #endif
  1270. }
  1271. }
  1272. },
  1273. {
  1274. "path": "statistics/index",
  1275. "style": {
  1276. "navigationBarTitleText": "订单数据统计",
  1277. "app-plus": {
  1278. // #ifdef APP-PLUS
  1279. "titleNView": {
  1280. "type": "default"
  1281. }
  1282. // #endif
  1283. }
  1284. }
  1285. },
  1286. {
  1287. "path": "order_cancellation/index",
  1288. "style": {
  1289. "navigationBarTitleText": "订单核销",
  1290. "app-plus": {
  1291. // #ifdef APP-PLUS
  1292. "titleNView": {
  1293. "type": "default"
  1294. }
  1295. // #endif
  1296. }
  1297. }
  1298. },
  1299. {
  1300. "path": "store/index",
  1301. "style": {
  1302. "navigationBarTextStyle": "white",
  1303. "navigationBarBackgroundColor": "#333333",
  1304. "navigationBarTitleText": "门店中心",
  1305. "app-plus": {
  1306. // #ifdef APP-PLUS
  1307. "titleNView": {
  1308. "type": "default"
  1309. }
  1310. // #endif
  1311. }
  1312. }
  1313. },
  1314. {
  1315. "path": "store/custom_date/index",
  1316. "style": {
  1317. "navigationBarTitleText": "选择日期"
  1318. }
  1319. },
  1320. {
  1321. "path": "store/statistics/index",
  1322. "style": {
  1323. "navigationBarTitleText": "数据详情",
  1324. "app-plus": {
  1325. // #ifdef APP-PLUS
  1326. "titleNView": {
  1327. "type": "default"
  1328. }
  1329. // #endif
  1330. }
  1331. }
  1332. }, {
  1333. "path": "store/orderDetail/index",
  1334. "style": {
  1335. "navigationBarTitleText": "订单详情",
  1336. "app-plus": {
  1337. // #ifdef APP-PLUS
  1338. "titleNView": {
  1339. "type": "default"
  1340. }
  1341. // #endif
  1342. }
  1343. }
  1344. }, {
  1345. "path": "store/order/index",
  1346. "style": {
  1347. "navigationBarTitleText": "订单管理",
  1348. "app-plus": {
  1349. // #ifdef APP-PLUS
  1350. "titleNView": {
  1351. "type": "default"
  1352. }
  1353. // #endif
  1354. }
  1355. }
  1356. }, {
  1357. "path": "store/deliverGoods/index",
  1358. "style": {
  1359. "navigationBarTitleText": "订单发货",
  1360. "app-plus": {
  1361. // #ifdef APP-PLUS
  1362. "titleNView": {
  1363. "type": "default"
  1364. }
  1365. // #endif
  1366. }
  1367. }
  1368. }, {
  1369. "path": "distribution/index",
  1370. "style": {
  1371. "navigationBarTextStyle": "white",
  1372. "navigationBarBackgroundColor": "#333333",
  1373. "navigationBarTitleText": "配送员",
  1374. "app-plus": {
  1375. // #ifdef APP-PLUS
  1376. "titleNView": {
  1377. "type": "default"
  1378. }
  1379. // #endif
  1380. }
  1381. }
  1382. }, {
  1383. "path": "distribution/scanning/index",
  1384. "style": {
  1385. "navigationBarTitleText": "扫描结果",
  1386. "app-plus": {
  1387. // #ifdef APP-PLUS
  1388. "titleNView": {
  1389. "type": "default"
  1390. }
  1391. // #endif
  1392. }
  1393. }
  1394. }, {
  1395. "path": "distribution/scanning/detail/index",
  1396. "style": {
  1397. "navigationBarTitleText": "扫描结果详情",
  1398. "app-plus": {
  1399. // #ifdef APP-PLUS
  1400. "titleNView": {
  1401. "type": "default"
  1402. }
  1403. // #endif
  1404. }
  1405. }
  1406. }, {
  1407. "path": "distribution/orderDetail/index",
  1408. "style": {
  1409. "navigationBarTitleText": "配送员订单详情",
  1410. "app-plus": {
  1411. // #ifdef APP-PLUS
  1412. "titleNView": {
  1413. "type": "default"
  1414. }
  1415. // #endif
  1416. }
  1417. }
  1418. }, {
  1419. "path": "store/scanning/index",
  1420. "style": {
  1421. "navigationBarTitleText": "扫描结果",
  1422. "app-plus": {
  1423. // #ifdef APP-PLUS
  1424. "titleNView": {
  1425. "type": "default"
  1426. }
  1427. // #endif
  1428. }
  1429. }
  1430. }, {
  1431. "path": "store/scanning/detail/index",
  1432. "style": {
  1433. "navigationBarTitleText": "扫描结果详情",
  1434. "app-plus": {
  1435. // #ifdef APP-PLUS
  1436. "titleNView": {
  1437. "type": "default"
  1438. }
  1439. // #endif
  1440. }
  1441. }
  1442. }]
  1443. },
  1444. {
  1445. "root": "pages/columnGoods",
  1446. "name": "columnGoods",
  1447. "pages": [{
  1448. "path": "HotNewGoods/index",
  1449. "style": {
  1450. "navigationBarTitleText": "精品推荐",
  1451. "app-plus": {
  1452. // #ifdef APP-PLUS
  1453. "titleNView": {
  1454. "type": "default"
  1455. }
  1456. // #endif
  1457. }
  1458. }
  1459. },
  1460. {
  1461. "path": "live_list/index",
  1462. "style": {
  1463. "navigationBarTitleText": "推荐好货"
  1464. }
  1465. },
  1466. {
  1467. "path": "HotNewGoods/feedback",
  1468. "style": {
  1469. "navigationBarTitleText": "我的客服",
  1470. "navigationBarTextStyle": "white",
  1471. "navigationBarBackgroundColor": "#3A3A3A",
  1472. "app-plus": {
  1473. // #ifdef APP-PLUS
  1474. "titleNView": {
  1475. "type": "default"
  1476. }
  1477. // #endif
  1478. }
  1479. }
  1480. }]
  1481. },
  1482. {
  1483. "root": "pages/annex",
  1484. "pages": [{
  1485. "path": "web_view/index",
  1486. "style": {
  1487. "navigationBarTitleText": "",
  1488. "app-plus": {
  1489. // #ifdef APP-PLUS
  1490. "titleNView": {
  1491. "type": "default"
  1492. }
  1493. // #endif
  1494. }
  1495. }
  1496. }, {
  1497. "path": "vip_paid/index",
  1498. "style": {
  1499. "navigationBarTitleText": "SVIP会员",
  1500. "app-plus": {
  1501. // #ifdef APP-PLUS
  1502. "titleNView": {
  1503. "type": "default"
  1504. }
  1505. // #endif
  1506. }
  1507. }
  1508. },
  1509. {
  1510. "path": "vip_grade/index",
  1511. "style": {
  1512. "navigationBarTitleText": "会员中心",
  1513. "navigationBarTextStyle": "white",
  1514. "navigationBarBackgroundColor": "#302F35",
  1515. "app-plus": {
  1516. // #ifdef APP-PLUS
  1517. "titleNView": {
  1518. "type": "default"
  1519. }
  1520. // #endif
  1521. }
  1522. }
  1523. },
  1524. {
  1525. "path": "record_list/index",
  1526. "style": {
  1527. "navigationBarTitleText": "消费记录",
  1528. "app-plus": {
  1529. // #ifdef APP-PLUS
  1530. "titleNView": {
  1531. "type": "default"
  1532. }
  1533. // #endif
  1534. }
  1535. }
  1536. },
  1537. {
  1538. "path": "vip_grade_active/index",
  1539. "style": {
  1540. "navigationBarTitleText": "会员卡激活",
  1541. "app-plus": {
  1542. // #ifdef APP-PLUS
  1543. "titleNView": {
  1544. "type": "default"
  1545. }
  1546. // #endif
  1547. }
  1548. }
  1549. },
  1550. {
  1551. "path": "vip_coupon/index",
  1552. "style": {
  1553. "navigationBarTitleText": "会员优惠券",
  1554. "app-plus": {
  1555. // #ifdef APP-PLUS
  1556. "titleNView": {
  1557. "type": "default"
  1558. }
  1559. // #endif
  1560. }
  1561. }
  1562. },
  1563. {
  1564. "path": "vip_clause/index",
  1565. "style": {
  1566. "navigationBarTitleText": "会员协议",
  1567. "app-plus": {
  1568. // #ifdef APP-PLUS
  1569. "titleNView": {
  1570. "type": "default"
  1571. }
  1572. // #endif
  1573. }
  1574. }
  1575. },
  1576. {
  1577. "path": "vip_active/index",
  1578. "style": {
  1579. "navigationBarTitleText": "激活会员",
  1580. "app-plus": {
  1581. // #ifdef APP-PLUS
  1582. "titleNView": {
  1583. "type": "default"
  1584. }
  1585. // #endif
  1586. }
  1587. }
  1588. },
  1589. {
  1590. "path": "offline_pay/index",
  1591. "style": {
  1592. "navigationBarTitleText": "支付",
  1593. "app-plus": {
  1594. // #ifdef APP-PLUS
  1595. "titleNView": {
  1596. "type": "default"
  1597. }
  1598. // #endif
  1599. }
  1600. }
  1601. },
  1602. {
  1603. "path": "offline_result/index",
  1604. "style": {
  1605. "navigationBarTitleText": "支付结果",
  1606. "app-plus": {
  1607. // #ifdef APP-PLUS
  1608. "titleNView": {
  1609. "type": "default"
  1610. }
  1611. // #endif
  1612. }
  1613. }
  1614. },
  1615. {
  1616. "path": "special/index",
  1617. "style": {
  1618. "navigationBarTitleText": "专题页",
  1619. "app-plus": {
  1620. // #ifdef APP-PLUS
  1621. "titleNView": {
  1622. "type": "default"
  1623. }
  1624. // #endif
  1625. }
  1626. }
  1627. }]
  1628. },
  1629. {
  1630. "root": "pages/points_mall",
  1631. "pages": [{
  1632. "path": "index",
  1633. "style": {
  1634. "navigationBarTextStyle": "white",
  1635. "navigationBarBackgroundColor": "#333333",
  1636. "navigationBarTitleText": "积分商城",
  1637. "app-plus": {
  1638. // #ifdef APP-PLUS
  1639. "titleNView": {
  1640. "type": "default"
  1641. }
  1642. // #endif
  1643. }
  1644. }
  1645. },
  1646. {
  1647. "path": "integral_goods_list",
  1648. "style": {
  1649. "navigationBarTitleText": "商品列表",
  1650. // "navigationBarTextStyle": "white",
  1651. // "navigationBarBackgroundColor": "#E93323",
  1652. "app-plus": {
  1653. // #ifdef APP-PLUS
  1654. "titleNView": {
  1655. "type": "default"
  1656. }
  1657. // #endif
  1658. }
  1659. }
  1660. },
  1661. {
  1662. "path": "integral_goods_details",
  1663. "style": {
  1664. "navigationBarTitleText": "商品详情",
  1665. "app-plus": {
  1666. // #ifdef APP-PLUS
  1667. "titleNView": {
  1668. "type": "default"
  1669. }
  1670. // #endif
  1671. }
  1672. // #ifdef MP
  1673. ,
  1674. "disableScroll": true
  1675. // #endif
  1676. }
  1677. },
  1678. {
  1679. "path": "exchange_record",
  1680. "style": {
  1681. "navigationBarTitleText": "兑换记录",
  1682. "app-plus": {
  1683. // #ifdef APP-PLUS
  1684. "titleNView": {
  1685. "type": "default"
  1686. }
  1687. // #endif
  1688. }
  1689. }
  1690. },
  1691. {
  1692. "path": "integral_order",
  1693. "style": {
  1694. "navigationBarTitleText": "积分订单",
  1695. "app-plus": {
  1696. // #ifdef APP-PLUS
  1697. "titleNView": {
  1698. "type": "default"
  1699. }
  1700. // #endif
  1701. }
  1702. }
  1703. }, {
  1704. "path": "user_address",
  1705. "style": {
  1706. "navigationBarTitleText": "选择地址",
  1707. "app-plus": {
  1708. // #ifdef APP-PLUS
  1709. "titleNView": {
  1710. "type": "default"
  1711. }
  1712. // #endif
  1713. }
  1714. }
  1715. },
  1716. {
  1717. "path": "integral_order_status",
  1718. "style": {
  1719. "navigationBarTitleText": "兑换成功",
  1720. "app-plus": {
  1721. // #ifdef APP-PLUS
  1722. "titleNView": {
  1723. "type": "default"
  1724. }
  1725. // #endif
  1726. }
  1727. }
  1728. }, {
  1729. "path": "integral_order_details",
  1730. "style": {
  1731. "navigationBarTitleText": "兑换订单详情",
  1732. "app-plus": {
  1733. // #ifdef APP-PLUS
  1734. "titleNView": {
  1735. "type": "default"
  1736. }
  1737. // #endif
  1738. }
  1739. }
  1740. }, {
  1741. "path": "logistics_details",
  1742. "style": {
  1743. "navigationBarTitleText": "兑换物流详情",
  1744. "app-plus": {
  1745. // #ifdef APP-PLUS
  1746. "titleNView": {
  1747. "type": "default"
  1748. }
  1749. // #endif
  1750. }
  1751. }
  1752. }]
  1753. },
  1754. {
  1755. "root": "pages/extension",
  1756. "name": "extension",
  1757. "pages": [{
  1758. "path": "invite_friend/index",
  1759. "style": {
  1760. "navigationBarTitleText": "邀请好友",
  1761. "app-plus": {
  1762. // #ifdef APP-PLUS
  1763. "titleNView": {
  1764. "type": "default"
  1765. }
  1766. // #endif
  1767. }
  1768. }
  1769. },
  1770. {
  1771. "path": "customer_list/chat",
  1772. "style": {
  1773. "navigationBarTitleText": "对话详情",
  1774. "navigationStyle": "custom",
  1775. "app-plus": {
  1776. "scrollIndicator": false //禁用原生导航栏
  1777. // #ifdef APP-PLUS
  1778. ,
  1779. "titleNView": {
  1780. "type": "default"
  1781. }
  1782. // #endif
  1783. },
  1784. "disableScroll": true
  1785. }
  1786. },
  1787. {
  1788. "path": "news_list/index",
  1789. "style": {
  1790. "navigationBarTitleText": "资讯",
  1791. "app-plus": {
  1792. // #ifdef APP-PLUS
  1793. "titleNView": {
  1794. "type": "default"
  1795. }
  1796. // #endif
  1797. }
  1798. }
  1799. },
  1800. {
  1801. "path": "news_details/index",
  1802. "style": {
  1803. "navigationBarTitleText": "资讯详情",
  1804. "app-plus": {
  1805. // #ifdef APP-PLUS
  1806. "titleNView": {
  1807. "type": "default"
  1808. }
  1809. // #endif
  1810. }
  1811. }
  1812. }]
  1813. },
  1814. {
  1815. "root": "pages/work",
  1816. "name": "work",
  1817. "pages": [{
  1818. "path": "userInfo/index",
  1819. "style": {
  1820. "navigationBarTitleText": "客户信息"
  1821. }
  1822. },
  1823. {
  1824. "path": "orderList/index",
  1825. "style": {
  1826. "navigationBarTitleText": "交易管理"
  1827. }
  1828. },
  1829. {
  1830. "path": "orderDetail/index",
  1831. "style": {
  1832. "navigationBarTitleText": "订单详情"
  1833. }
  1834. },
  1835. {
  1836. "path": "record/index",
  1837. "style": {
  1838. "navigationBarTitleText": "记录"
  1839. }
  1840. },
  1841. {
  1842. "path": "groupInfo/index",
  1843. "style": {
  1844. "navigationBarTitleText": ""
  1845. }
  1846. }]
  1847. },
  1848. {
  1849. "root": "pages/goods",
  1850. "name": "goods",
  1851. "pages": [{
  1852. "path": "goods_list/index",
  1853. "style": {
  1854. "navigationBarTitleText": "商品列表",
  1855. // #ifndef MP
  1856. "navigationBarTextStyle": "black",
  1857. // #endif
  1858. // #ifdef MP
  1859. "navigationBarTextStyle": "white",
  1860. "navigationStyle": "custom",
  1861. // #endif
  1862. "app-plus": {
  1863. // #ifdef APP-PLUS
  1864. "titleNView": {
  1865. "type": "default"
  1866. }
  1867. // #endif
  1868. }
  1869. }
  1870. },
  1871. {
  1872. "path": "goods_search/index",
  1873. "style": {
  1874. "navigationBarTitleText": "搜索商品",
  1875. "app-plus": {
  1876. // #ifdef APP-PLUS
  1877. "titleNView": {
  1878. "type": "default"
  1879. }
  1880. // #endif
  1881. }
  1882. }
  1883. },
  1884. {
  1885. "path": "order_pay_status/index",
  1886. "style": {
  1887. "navigationBarTitleText": "支付成功",
  1888. "app-plus": {
  1889. // #ifdef APP-PLUS
  1890. "titleNView": {
  1891. "type": "default"
  1892. }
  1893. // #endif
  1894. }
  1895. }
  1896. }, {
  1897. "path": "order_pay_status/payLottery",
  1898. "style": {
  1899. "navigationBarTitleText": "支付成功",
  1900. "app-plus": {
  1901. // #ifdef APP-PLUS
  1902. "titleNView": {
  1903. "type": "default"
  1904. }
  1905. // #endif
  1906. }
  1907. }
  1908. },
  1909. {
  1910. "path": "goods_comment_list/index",
  1911. "style": {
  1912. "navigationBarTitleText": "商品评分",
  1913. "app-plus": {
  1914. // #ifdef APP-PLUS
  1915. "titleNView": {
  1916. "type": "default"
  1917. }
  1918. // #endif
  1919. }
  1920. }
  1921. },
  1922. {
  1923. "path": "goods_comment_con/index",
  1924. "style": {
  1925. "navigationBarTitleText": "商品评价",
  1926. "app-plus": {
  1927. // #ifdef APP-PLUS
  1928. "titleNView": {
  1929. "type": "default"
  1930. }
  1931. // #endif
  1932. }
  1933. }
  1934. },
  1935. {
  1936. "path": "goods_comment_con/comment_con",
  1937. "style": {
  1938. "navigationBarTitleText": "评价详情",
  1939. "app-plus": {
  1940. // #ifdef APP-PLUS
  1941. "titleNView": {
  1942. "type": "default"
  1943. }
  1944. // #endif
  1945. }
  1946. }
  1947. },
  1948. {
  1949. "path": "goods_comment_con/lottery_comment",
  1950. "style": {
  1951. "navigationBarTitleText": "订单评价",
  1952. "app-plus": {
  1953. // #ifdef APP-PLUS
  1954. "titleNView": {
  1955. "type": "default"
  1956. }
  1957. // #endif
  1958. }
  1959. }
  1960. },
  1961. {
  1962. "path": "goods_logistics/index",
  1963. "style": {
  1964. "navigationBarTitleText": "物流信息",
  1965. "app-plus": {
  1966. // #ifdef APP-PLUS
  1967. "titleNView": {
  1968. "type": "default"
  1969. }
  1970. // #endif
  1971. }
  1972. }
  1973. },
  1974. {
  1975. "path": "delivery_detail/index",
  1976. "style": {
  1977. "navigationBarTitleText": "配送信息",
  1978. "app-plus": {
  1979. // #ifdef APP-PLUS
  1980. "titleNView": {
  1981. "type": "default"
  1982. }
  1983. // #endif
  1984. }
  1985. }
  1986. },
  1987. {
  1988. "path": "goods_details_store/index",
  1989. "style": {
  1990. "navigationBarTitleText": "门店列表",
  1991. "app-plus": {
  1992. // #ifdef APP-PLUS
  1993. "titleNView": {
  1994. "type": "default"
  1995. }
  1996. // #endif
  1997. }
  1998. }
  1999. },
  2000. {
  2001. "path": "goods_return_list/index",
  2002. "style": {
  2003. "navigationBarTitleText": "退货列表",
  2004. "app-plus": {
  2005. // #ifdef APP-PLUS
  2006. "titleNView": {
  2007. "type": "default"
  2008. }
  2009. // #endif
  2010. }
  2011. }
  2012. },
  2013. {
  2014. "path": "goods_return/index",
  2015. "style": {
  2016. "navigationBarTitleText": "申请退货",
  2017. "app-plus": {
  2018. // #ifdef APP-PLUS
  2019. "titleNView": {
  2020. "type": "default"
  2021. }
  2022. // #endif
  2023. }
  2024. }
  2025. },
  2026. {
  2027. "path": "order_details/index",
  2028. "style": {
  2029. "navigationBarTitleText": "订单详情",
  2030. "app-plus": {
  2031. // #ifdef APP-PLUS
  2032. "titleNView": {
  2033. "type": "default"
  2034. }
  2035. // #endif
  2036. }
  2037. }
  2038. },
  2039. {
  2040. "path": "order_list/index",
  2041. "style": {
  2042. "navigationBarTitleText": "我的订单",
  2043. "app-plus": {
  2044. // #ifdef APP-PLUS
  2045. "titleNView": {
  2046. "type": "default"
  2047. }
  2048. // #endif
  2049. }
  2050. }
  2051. },
  2052. {
  2053. "path": "order_pay/index",
  2054. "style": {
  2055. "navigationBarTitleText": "订单支付",
  2056. "app-plus": {
  2057. // #ifdef APP-PLUS
  2058. "titleNView": {
  2059. "type": "default"
  2060. }
  2061. // #endif
  2062. }
  2063. }
  2064. },
  2065. {
  2066. "path": "order_refund_goods/index",
  2067. "style": {
  2068. "navigationBarTitleText": "退回商品",
  2069. "app-plus": {
  2070. // #ifdef APP-PLUS
  2071. "titleNView": {
  2072. "type": "default"
  2073. }
  2074. // #endif
  2075. }
  2076. }
  2077. },
  2078. {
  2079. "path": "admin_order_detail/index",
  2080. "style": {
  2081. "navigationBarTitleText": "订单详情",
  2082. "app-plus": {
  2083. // #ifdef APP-PLUS
  2084. "titleNView": {
  2085. "type": "default"
  2086. }
  2087. // #endif
  2088. }
  2089. }
  2090. },
  2091. {
  2092. "path": "order_confirm/index",
  2093. "style": {
  2094. "navigationBarTitleText": "提交订单",
  2095. "app-plus": {
  2096. // #ifdef APP-PLUS
  2097. "titleNView": {
  2098. "type": "default"
  2099. }
  2100. // #endif
  2101. }
  2102. }
  2103. },
  2104. {
  2105. "path": "lottery/grids/index",
  2106. "style": {
  2107. "navigationBarTitleText": "抽奖活动",
  2108. "app-plus": {
  2109. // #ifdef APP-PLUS
  2110. "titleNView": {
  2111. "type": "default"
  2112. }
  2113. // #endif
  2114. }
  2115. }
  2116. },
  2117. {
  2118. "path": "lottery/grids/record",
  2119. "style": {
  2120. "navigationBarTitleText": "中奖记录",
  2121. "app-plus": {
  2122. // #ifdef APP-PLUS
  2123. "titleNView": {
  2124. "type": "default"
  2125. }
  2126. // #endif
  2127. }
  2128. }
  2129. },
  2130. {
  2131. "path": "lottery/grids/order",
  2132. "style": {
  2133. "navigationBarTitleText": "中奖商品",
  2134. "app-plus": {
  2135. // #ifdef APP-PLUS
  2136. "titleNView": {
  2137. "type": "default"
  2138. }
  2139. // #endif
  2140. }
  2141. }
  2142. },
  2143. {
  2144. "path": "verify_record/index",
  2145. "style": {
  2146. "navigationBarTitleText": "核销记录",
  2147. "app-plus": {
  2148. // #ifdef APP-PLUS
  2149. "titleNView": {
  2150. "type": "default"
  2151. }
  2152. // #endif
  2153. }
  2154. }
  2155. }]
  2156. }
  2157. ],
  2158. "tabBar": {
  2159. "color": "#282828",
  2160. "selectedColor": "#ff3366",
  2161. "borderStyle": "black",
  2162. "backgroundColor": "#ffffff",
  2163. "list": [
  2164. // {
  2165. // "pagePath": "pages/index/index",
  2166. // "iconPath": "static/images/1-001.png",
  2167. // "selectedIconPath": "static/images/1-002.png",
  2168. // "text": "首页"
  2169. // },
  2170. // {
  2171. // "pagePath": "pages/goods_cate/goods_cate",
  2172. // "iconPath": "static/images/2-001.png",
  2173. // "selectedIconPath": "static/images/2-002.png",
  2174. // "text": "分类"
  2175. // },
  2176. // {
  2177. // "pagePath": "pages/store_cate/store_cate",
  2178. // "iconPath": "static/images/5-001.png",
  2179. // "selectedIconPath": "static/images/5-002.png",
  2180. // "text": "门店"
  2181. // },
  2182. // {
  2183. // "pagePath": "pages/order_addcart/order_addcart",
  2184. // "iconPath": "static/images/3-001.png",
  2185. // "selectedIconPath": "static/images/3-002.png",
  2186. // "text": "购物车"
  2187. // },
  2188. // {
  2189. // "pagePath": "pages/user/index",
  2190. // "iconPath": "static/images/4-001.png",
  2191. // "selectedIconPath": "static/images/4-002.png",
  2192. // "text": "我的"
  2193. // }
  2194. ]
  2195. },
  2196. "globalStyle": {
  2197. "navigationBarTextStyle": "black",
  2198. "navigationBarTitleText": "加载中",
  2199. "navigationBarBackgroundColor": "#fff",
  2200. "backgroundColor": "#F8F8F8",
  2201. "titleNView": false
  2202. },
  2203. "condition": { //模式配置,仅开发期间生效
  2204. "current": 0, //当前激活的模式(list 的索引项)
  2205. "list": [{
  2206. "name": "", //模式名称
  2207. "path": "", //启动页面,必选
  2208. "query": "" //启动参数,在页面的onLoad函数里面得到
  2209. }]
  2210. }
  2211. }