pages.json 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827
  1. {
  2. "lazyCodeLoading": "requiredComponents",
  3. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path": "pages/order_addcart/order_addcart",
  6. "style": {
  7. "app-plus": {
  8. "titleNView": false //禁用原生导航栏
  9. },
  10. "navigationStyle": "custom",
  11. "disableScroll": true
  12. }
  13. },
  14. {
  15. "path": "pages/guide/index",
  16. "style": {
  17. "app-plus": {
  18. "titleNView": false //禁用原生导航栏
  19. },
  20. "navigationStyle": "custom",
  21. "disableScroll": true
  22. }
  23. },
  24. {
  25. "path": "pages/index/index",
  26. "style": {
  27. "navigationBarTitleText": "首页",
  28. "navigationStyle": "custom",
  29. "navigationBarTextStyle": "black"
  30. // #ifdef APP-PLUS
  31. ,
  32. "enablePullDownRefresh": true
  33. // #endif
  34. }
  35. },
  36. {
  37. "path": "pages/order/index",
  38. "style": {
  39. "navigationStyle": "custom",
  40. "navigationBarTitleText": "订单"
  41. }
  42. },
  43. {
  44. "path": "pages/user/index",
  45. "style": {
  46. "navigationBarTitleText": "个人中心",
  47. "navigationStyle": "custom",
  48. // #ifdef MP || APP-PLUS
  49. "navigationBarTextStyle": "black",
  50. "navigationBarBackgroundColor": "#fff",
  51. // #endif
  52. "app-plus": {
  53. // #ifdef APP-PLUS
  54. "titleNView": {
  55. "type": "default"
  56. }
  57. // #endif
  58. }
  59. }
  60. }
  61. ],
  62. "subPackages": [
  63. {
  64. "root": "pages/what_to_eat_today",
  65. "name": "what_to_eat_today",
  66. "pages": [{
  67. "path": "index/index",
  68. "style": {
  69. "navigationStyle": "custom",
  70. "navigationBarTitleText": "今日吃啥"
  71. }
  72. }]
  73. },
  74. {
  75. "root": "pages/users",
  76. "name": "users",
  77. "pages": [{
  78. "path": "web_page/index",
  79. "style": {
  80. //"navigationBarTitleText": "客服",
  81. "app-plus": {
  82. // #ifdef APP-PLUS
  83. "titleNView": {
  84. "type": "default"
  85. }
  86. // #endif
  87. }
  88. }
  89. },
  90. {
  91. "path": "user_info/index",
  92. "style": {
  93. "navigationBarTitleText": "个人资料",
  94. "app-plus": {
  95. // #ifdef APP-PLUS
  96. "titleNView": {
  97. "type": "default"
  98. }
  99. // #endif
  100. }
  101. }
  102. },
  103. {
  104. "path": "user_setting/index",
  105. "style": {
  106. "navigationBarTitleText": "个人信息",
  107. "app-plus": {
  108. // #ifdef APP-PLUS
  109. "titleNView": {
  110. "type": "default"
  111. }
  112. // #endif
  113. }
  114. }
  115. },
  116. {
  117. "path": "user_money/index",
  118. "style": {
  119. "navigationBarTitleText": "我的账户",
  120. "app-plus": {
  121. // #ifdef APP-PLUS
  122. "titleNView": {
  123. "type": "default"
  124. }
  125. // #endif
  126. }
  127. }
  128. },
  129. {
  130. "path": "user_bill/index",
  131. "style": {
  132. "navigationBarTitleText": "账单明细",
  133. "app-plus": {
  134. // #ifdef APP-PLUS
  135. "titleNView": {
  136. "type": "default"
  137. }
  138. // #endif
  139. }
  140. }
  141. },
  142. {
  143. "path": "user_spread_user/index",
  144. "style": {
  145. "navigationBarTitleText": "我的推广",
  146. // #ifdef MP || APP-PLUS
  147. "navigationBarTextStyle": "black",
  148. "navigationBarBackgroundColor": "#fff",
  149. // #endif
  150. "app-plus": {
  151. // #ifdef APP-PLUS
  152. "titleNView": {
  153. "type": "default"
  154. }
  155. // #endif
  156. }
  157. }
  158. },
  159. {
  160. "path": "user_spread_code/index",
  161. "style": {
  162. "navigationBarTitleText": "分销海报",
  163. "app-plus": {
  164. // #ifdef APP-PLUS
  165. "titleNView": {
  166. "type": "default"
  167. }
  168. // #endif
  169. }
  170. }
  171. },
  172. {
  173. "path": "user_spread_money/index",
  174. "style": {
  175. "navigationBarTitleText": "佣金记录",
  176. "app-plus": {
  177. // #ifdef APP-PLUS
  178. "titleNView": {
  179. "type": "default"
  180. }
  181. // #endif
  182. }
  183. }
  184. },
  185. {
  186. "path": "user_transferOut/index",
  187. "style": {
  188. "navigationBarTitleText": "transferOut",
  189. "app-plus": {
  190. // #ifdef APP-PLUS
  191. "titleNView": {
  192. "type": "default"
  193. }
  194. // #endif
  195. }
  196. }
  197. },
  198. {
  199. "path": "user_phone/index",
  200. "style": {
  201. "navigationBarTitleText": "修改手机号",
  202. "navigationBarBackgroundColor": "#e93323"
  203. // #ifdef MP || APP-PLUS
  204. ,
  205. "navigationBarTextStyle": "black"
  206. // #endif
  207. ,
  208. "app-plus": {
  209. // #ifdef APP-PLUS
  210. "titleNView": {
  211. "type": "default"
  212. }
  213. // #endif
  214. }
  215. }
  216. },
  217. {
  218. "path": "user_payment/index",
  219. "style": {
  220. "navigationBarTitleText": "余额充值",
  221. "app-plus": {
  222. // #ifdef APP-PLUS
  223. "titleNView": {
  224. "type": "default"
  225. }
  226. // #endif
  227. }
  228. }
  229. },
  230. {
  231. "path": "user_spread_brokerage_out/index",
  232. "style": {
  233. "navigationBarTitleText": "佣金转入",
  234. "app-plus": {
  235. // #ifdef APP-PLUS
  236. "titleNView": {
  237. "type": "default"
  238. }
  239. // #endif
  240. }
  241. }
  242. },
  243. {
  244. "path": "user_pwd_edit/index",
  245. "style": {
  246. "navigationBarTitleText": "修改密码"
  247. // #ifdef MP || APP-PLUS
  248. ,
  249. "navigationBarTextStyle": "black"
  250. // #endif
  251. ,
  252. "app-plus": {
  253. // #ifdef APP-PLUS
  254. "titleNView": {
  255. "type": "default"
  256. }
  257. // #endif
  258. }
  259. }
  260. },
  261. {
  262. "path": "promoter-list/index",
  263. "style": {
  264. "navigationBarTitleText": "推广人列表",
  265. "app-plus": {
  266. // #ifdef APP-PLUS
  267. "titleNView": {
  268. "type": "default"
  269. }
  270. // #endif
  271. }
  272. }
  273. },
  274. {
  275. "path": "promoter-order/index",
  276. "style": {
  277. "navigationBarTitleText": "推广人订单",
  278. "app-plus": {
  279. // #ifdef APP-PLUS
  280. "titleNView": {
  281. "type": "default"
  282. }
  283. // #endif
  284. }
  285. }
  286. },
  287. {
  288. "path": "promoter_rank/index",
  289. "style": {
  290. "navigationBarTitleText": "推广人排行",
  291. "app-plus": {
  292. // #ifdef APP-PLUS
  293. "titleNView": {
  294. "type": "default"
  295. }
  296. // #endif
  297. }
  298. }
  299. },
  300. {
  301. "path": "commission_rank/index",
  302. "style": {
  303. "navigationBarTitleText": "佣金排行",
  304. "app-plus": {
  305. // #ifdef APP-PLUS
  306. "titleNView": {
  307. "type": "default"
  308. }
  309. // #endif
  310. }
  311. }
  312. },
  313. {
  314. "path": "login/index",
  315. "style": {
  316. "navigationBarTitleText": "登录",
  317. "app-plus": {
  318. // #ifdef APP-PLUS
  319. "titleNView": {
  320. "type": "default"
  321. }
  322. // #endif
  323. }
  324. }
  325. },
  326. {
  327. "path": "wechat_login/index",
  328. "style": {
  329. "navigationBarTitleText": "账户登录",
  330. "navigationStyle": "custom",
  331. "app-plus": {
  332. // #ifdef APP-PLUS
  333. "titleNView": {
  334. "type": "default"
  335. }
  336. // #endif
  337. }
  338. }
  339. },
  340. {
  341. "path": "app_login/index",
  342. "style": {
  343. "navigationBarTitleText": "绑定手机号",
  344. "navigationStyle": "custom",
  345. "app-plus": {
  346. // #ifdef APP-PLUS
  347. "titleNView": {
  348. "type": "default"
  349. }
  350. // #endif
  351. }
  352. }
  353. },
  354. {
  355. "path": "app_update/app_update",
  356. "style": {
  357. "navigationBarTitleText": "检查更新",
  358. "app-plus": {
  359. // #ifdef APP-PLUS
  360. "titleNView": {
  361. "type": "default"
  362. }
  363. // #endif
  364. }
  365. }
  366. },
  367. {
  368. "path": "settled/index",
  369. "style": {
  370. "navigationBarTitleText": "商户入驻",
  371. "enablePullDownRefresh": false,
  372. "app-plus": {
  373. // #ifdef APP-PLUS
  374. "titleNView": {
  375. "type": "default"
  376. }
  377. // #endif
  378. }
  379. }
  380. },
  381. {
  382. "path": "user_sgin_info/index",
  383. "style": {
  384. "navigationBarTitleText": "签到说明",
  385. "app-plus": {
  386. // #ifdef APP-PLUS
  387. "titleNView": {
  388. "type": "default"
  389. }
  390. // #endif
  391. }
  392. }
  393. },
  394. {
  395. "path": "user_coupon/index",
  396. "style": {
  397. "navigationBarTitleText": "我的优惠券",
  398. "app-plus": {
  399. // #ifdef APP-PLUS
  400. "titleNView": {
  401. "type": "default"
  402. }
  403. // #endif
  404. }
  405. }
  406. },
  407. {
  408. "path": "user_rider/index",
  409. "style": {
  410. "navigationBarTitleText": "成为骑手",
  411. "navigationStyle": "custom",
  412. "enablePullDownRefresh": false
  413. }
  414. }
  415. ]
  416. },
  417. {
  418. "root": "pages/merchant",
  419. "name": "merchant",
  420. "pages": [{
  421. "path": "home/index",
  422. "style": {
  423. "navigationBarTitleText": "商户首页",
  424. "navigationStyle": "custom",
  425. "enablePullDownRefresh": false
  426. }
  427. },
  428. {
  429. "path": "classify_coupon/index",
  430. "style": {
  431. "navigationBarTitleText": "商品分类",
  432. "navigationStyle": "custom",
  433. "enablePullDownRefresh": false,
  434. "app-plus": {
  435. // #ifdef APP-PLUS
  436. "titleNView": {
  437. "type": "default"
  438. }
  439. // #endif
  440. }
  441. }
  442. },
  443. {
  444. "path": "application_record/index",
  445. "style": {
  446. "navigationBarTitleText": "申请记录",
  447. "enablePullDownRefresh": false,
  448. "app-plus": {
  449. // #ifdef APP-PLUS
  450. "titleNView": {
  451. "type": "default"
  452. }
  453. // #endif
  454. }
  455. }
  456. },
  457. {
  458. "path": "detail/index",
  459. "style": {
  460. "navigationBarTitleText": "商户详情",
  461. "app-plus": {
  462. // #ifdef APP-PLUS
  463. "titleNView": {
  464. "type": "default"
  465. }
  466. // #endif
  467. }
  468. }
  469. },
  470. {
  471. "path": "user_integral/index",
  472. "style": {
  473. "navigationBarTitleText": "积分详情",
  474. "app-plus": {
  475. // #ifdef APP-PLUS
  476. "titleNView": {
  477. "type": "default"
  478. }
  479. // #endif
  480. }
  481. }
  482. },
  483. {
  484. "path": "user_sgin/index",
  485. "style": {
  486. "navigationBarTitleText": "签到",
  487. "app-plus": {
  488. // #ifdef APP-PLUS
  489. "titleNView": {
  490. "type": "default"
  491. }
  492. // #endif
  493. }
  494. }
  495. },
  496. {
  497. "path": "user_sgin_list/index",
  498. "style": {
  499. "navigationBarTitleText": "签到记录",
  500. "app-plus": {
  501. // #ifdef APP-PLUS
  502. "titleNView": {
  503. "type": "default"
  504. }
  505. // #endif
  506. }
  507. }
  508. },
  509. {
  510. "path": "merchant_street/index",
  511. "style": {
  512. "navigationBarTitleText": "店铺街",
  513. //"enablePullDownRefresh": false,
  514. "app-plus": {
  515. // #ifdef APP-PLUS
  516. "titleNView": {
  517. "type": "default"
  518. }
  519. // #endif
  520. }
  521. }
  522. }
  523. ]
  524. },
  525. {
  526. "root": "pages/substitute_fast_mail",
  527. "name": "substitute_fast_mail",
  528. "pages": [{
  529. "path": "home/index",
  530. "style": {
  531. "navigationBarTitleText": "代取快递",
  532. "navigationStyle": "custom",
  533. "enablePullDownRefresh": false
  534. }
  535. }, {
  536. "path": "take_fast_mail/index",
  537. "style": {
  538. "navigationBarTitleText": "添加快递",
  539. "navigationStyle": "custom",
  540. "enablePullDownRefresh": false
  541. }
  542. }, {
  543. "path": "my_fast_mail/index",
  544. "style": {
  545. "navigationBarTitleText": "我的快递",
  546. "navigationStyle": "custom",
  547. "enablePullDownRefresh": false
  548. }
  549. }]
  550. },
  551. {
  552. "root": "pages/confession_wall",
  553. "name": "confession_wall",
  554. "pages": [{
  555. "path": "home/index",
  556. "style": {
  557. "navigationBarTitleText": "表白墙",
  558. "navigationStyle": "custom",
  559. "enablePullDownRefresh": false
  560. }
  561. }, {
  562. "path": "wall_details_info/index",
  563. "style": {
  564. "navigationBarTitleText": "详情信息",
  565. "navigationStyle": "custom",
  566. "enablePullDownRefresh": false
  567. }
  568. }]
  569. },
  570. {
  571. "root": "pages/game_dazi",
  572. "name": "game_dazi",
  573. "pages": [{
  574. "path": "index",
  575. "style": {
  576. "navigationBarTitleText": "游戏搭子",
  577. "navigationStyle": "custom",
  578. "enablePullDownRefresh": false
  579. }
  580. }, {
  581. "path": "code_content/index",
  582. "style": {
  583. "navigationBarTitleText": "详情",
  584. "navigationStyle": "custom",
  585. "enablePullDownRefresh": false
  586. }
  587. }]
  588. },
  589. {
  590. "root": "pages/trade_fair",
  591. "name": "trade_fair",
  592. "pages": [{
  593. "path": "home/index",
  594. "style": {
  595. "navigationBarTitleText": "二手交易",
  596. "navigationStyle": "custom",
  597. "enablePullDownRefresh": false
  598. }
  599. }, {
  600. "path": "trade_fair_user/index",
  601. "style": {
  602. "navigationBarTitleText": "个人主页",
  603. "navigationStyle": "custom",
  604. "enablePullDownRefresh": false
  605. }
  606. },
  607. {
  608. "path": "mytask/index",
  609. "style": {
  610. "navigationBarTitleText": "我的任务",
  611. "app-plus": {
  612. // #ifdef APP-PLUS
  613. "titleNView": {
  614. "type": "default"
  615. }
  616. // #endif
  617. }
  618. }
  619. },
  620. {
  621. "path": "trade_return_list/index",
  622. "style": {
  623. "navigationBarTitleText": "售后列表",
  624. "app-plus": {
  625. // #ifdef APP-PLUS
  626. "titleNView": {
  627. "type": "default"
  628. }
  629. // #endif
  630. }
  631. }
  632. }]
  633. },
  634. {
  635. "root": "pages/goods",
  636. "path": "goods",
  637. "pages": [{
  638. "path": "goods_details/index",
  639. "style": {
  640. "navigationBarTitleText": "商品详情",
  641. "navigationStyle": "custom"
  642. }
  643. },
  644. {
  645. "path": "goods_list/index",
  646. "style": {
  647. "navigationBarTitleText": "商品列表",
  648. //"navigationStyle": "custom",
  649. "app-plus": {
  650. // #ifdef APP-PLUS
  651. "titleNView": {
  652. "type": "default"
  653. }
  654. // #endif
  655. }
  656. }
  657. },
  658. {
  659. "path": "coupon_goods_list/index",
  660. "style": {
  661. "navigationBarTitleText": "商品列表",
  662. "app-plus": {
  663. // #ifdef APP-PLUS
  664. "titleNView": {
  665. "type": "default"
  666. }
  667. // #endif
  668. }
  669. }
  670. },
  671. {
  672. "path": "systemIframe/index",
  673. "style": {
  674. "navigationBarTitleText": "系统表单",
  675. "app-plus": {
  676. // #ifdef APP-PLUS
  677. "titleNView": {
  678. "type": "default"
  679. }
  680. // #endif
  681. }
  682. }
  683. },
  684. {
  685. "path": "goods_search/index",
  686. "style": {
  687. "navigationBarTitleText": "搜索商品",
  688. "navigationStyle": "custom",
  689. "app-plus": {
  690. // #ifdef APP-PLUS
  691. "titleNView": {
  692. "type": "default"
  693. }
  694. // #endif
  695. }
  696. }
  697. },
  698. {
  699. "path": "news_list/index",
  700. "style": {
  701. "navigationBarTitleText": "资讯",
  702. "app-plus": {
  703. // #ifdef APP-PLUS
  704. "titleNView": {
  705. "type": "default"
  706. }
  707. // #endif
  708. }
  709. }
  710. },
  711. {
  712. "path": "news_details/index",
  713. "style": {
  714. "navigationBarTitleText": "资讯详情",
  715. "app-plus": {
  716. // #ifdef APP-PLUS
  717. "titleNView": {
  718. "type": "default"
  719. }
  720. // #endif
  721. }
  722. }
  723. },
  724. {
  725. "path": "browsing_history/index",
  726. "style": {
  727. "navigationBarTitleText": "浏览记录",
  728. "backgroundColor": "#FFFFFF",
  729. "app-plus": {
  730. // #ifdef APP-PLUS
  731. "titleNView": {
  732. "type": "default"
  733. }
  734. // #endif
  735. }
  736. }
  737. },
  738. {
  739. "path": "order_list/index",
  740. "style": {
  741. "navigationBarTitleText": "我的订单",
  742. "app-plus": {
  743. // #ifdef APP-PLUS
  744. "titleNView": {
  745. "type": "default"
  746. }
  747. // #endif
  748. }
  749. }
  750. },
  751. {
  752. "path": "order_logistics/index",
  753. "style": {
  754. "navigationBarTitleText": "发货记录",
  755. "app-plus": {
  756. // #ifdef APP-PLUS
  757. "titleNView": {
  758. "type": "default"
  759. }
  760. // #endif
  761. }
  762. }
  763. },
  764. {
  765. "path": "order_confirm/index",
  766. "style": {
  767. "navigationBarTitleText": "提交订单",
  768. "navigationStyle": "custom",
  769. "app-plus": {
  770. // #ifdef APP-PLUS
  771. "titleNView": {
  772. "type": "default"
  773. }
  774. // #endif
  775. }
  776. }
  777. },
  778. {
  779. "path": "order_payment/index",
  780. "style": {
  781. "navigationBarTitleText": "支付订单",
  782. // #ifdef MP || APP-PLUS
  783. "navigationBarTextStyle": "black",
  784. "navigationBarBackgroundColor": "#fff",
  785. // #endif
  786. "app-plus": {
  787. // #ifdef APP-PLUS
  788. "titleNView": {
  789. "type": "default"
  790. }
  791. // #endif
  792. }
  793. }
  794. },
  795. {
  796. "path": "refund_details/index",
  797. "style": {
  798. "navigationBarTitleText": "售后详情",
  799. "navigationBarBackgroundColor": "#fff",
  800. "app-plus": {
  801. // #ifdef APP-PLUS
  802. "titleNView": {
  803. "type": "default"
  804. }
  805. // #endif
  806. }
  807. }
  808. },
  809. {
  810. "path": "second_refunds_details/index",
  811. "style": {
  812. "navigationBarTitleText": "售后详情",
  813. "app-plus": {
  814. // #ifdef APP-PLUS
  815. "titleNView": {
  816. "type": "default"
  817. }
  818. // #endif
  819. }
  820. }
  821. },
  822. {
  823. "path": "order_pay_status/index",
  824. "style": {
  825. "navigationBarTitleText": "支付结果",
  826. "app-plus": {
  827. // #ifdef APP-PLUS
  828. "titleNView": {
  829. "type": "default"
  830. }
  831. // #endif
  832. }
  833. }
  834. },
  835. {
  836. "path": "order_details/index",
  837. "style": {
  838. "navigationBarTitleText": "订单详情",
  839. "app-plus": {
  840. // #ifdef APP-PLUS
  841. "titleNView": {
  842. "type": "default"
  843. }
  844. // #endif
  845. }
  846. }
  847. },
  848. {
  849. "path": "virtual_order_details/index",
  850. "style": {
  851. "navigationBarTitleText": "订单详情",
  852. "app-plus": {
  853. // #ifdef APP-PLUS
  854. "titleNView": {
  855. "type": "default"
  856. }
  857. // #endif
  858. }
  859. }
  860. },
  861. {
  862. "path": "user_return_list/index",
  863. "style": {
  864. "navigationBarTitleText": "售后列表",
  865. "app-plus": {
  866. // #ifdef APP-PLUS
  867. "titleNView": {
  868. "type": "default"
  869. }
  870. // #endif
  871. }
  872. }
  873. },
  874. {
  875. "path": "goods_return/index",
  876. "style": {
  877. "navigationBarTitleText": "售后退款",
  878. "app-plus": {
  879. // #ifdef APP-PLUS
  880. "titleNView": {
  881. "type": "default"
  882. }
  883. // #endif
  884. }
  885. }
  886. },
  887. {
  888. "path": "after_sales_type/index",
  889. "style": {
  890. "navigationBarTitleText": "售后类型",
  891. "app-plus": {
  892. // #ifdef APP-PLUS
  893. "titleNView": {
  894. "type": "default"
  895. }
  896. // #endif
  897. }
  898. }
  899. },
  900. {
  901. "path": "returns_and_refunds/index",
  902. "style": {
  903. "navigationBarTitleText": "退货退款",
  904. "app-plus": {
  905. // #ifdef APP-PLUS
  906. "titleNView": {
  907. "type": "default"
  908. }
  909. // #endif
  910. }
  911. }
  912. },
  913. {
  914. "path": "goods_comment_con/index",
  915. "style": {
  916. "navigationBarTitleText": "商品评价",
  917. "app-plus": {
  918. // #ifdef APP-PLUS
  919. "titleNView": {
  920. "type": "default"
  921. }
  922. // #endif
  923. }
  924. }
  925. },
  926. {
  927. "path": "evaluation_list/index",
  928. "style": {
  929. "navigationBarTitleText": "评价列表",
  930. "app-plus": {
  931. // #ifdef APP-PLUS
  932. "titleNView": {
  933. "type": "default"
  934. }
  935. // #endif
  936. }
  937. }
  938. },
  939. {
  940. "path": "goods_comment_list/index",
  941. "style": {
  942. "navigationBarTitleText": "商品评分",
  943. "app-plus": {
  944. // #ifdef APP-PLUS
  945. "titleNView": {
  946. "type": "default"
  947. }
  948. // #endif
  949. }
  950. }
  951. },
  952. {
  953. "path": "goods_logistics/index",
  954. "style": {
  955. "navigationBarTitleText": "物流信息",
  956. "app-plus": {
  957. // #ifdef APP-PLUS
  958. "titleNView": {
  959. "type": "default"
  960. }
  961. // #endif
  962. }
  963. }
  964. },
  965. {
  966. "path": "send_record/index",
  967. "style": {
  968. "navigationBarTitleText": "发货记录",
  969. "app-plus": {
  970. // #ifdef APP-PLUS
  971. "titleNView": {
  972. "type": "default"
  973. }
  974. // #endif
  975. }
  976. }
  977. },
  978. {
  979. "path": "agreement_rules/index",
  980. "style": {
  981. "navigationBarTitleText": "隐私协议",
  982. "app-plus": {
  983. // #ifdef APP-PLUS
  984. "titleNView": {
  985. "type": "default"
  986. }
  987. // #endif
  988. }
  989. }
  990. },
  991. {
  992. "path": "user_goods_collection/index",
  993. "style": {
  994. "navigationBarTitleText": "收藏商品",
  995. "app-plus": {
  996. // #ifdef APP-PLUS
  997. "titleNView": {
  998. "type": "default"
  999. }
  1000. // #endif
  1001. }
  1002. }
  1003. },
  1004. {
  1005. "path": "user_merchant_collection/index",
  1006. "style": {
  1007. "navigationBarTitleText": "收藏店铺",
  1008. "app-plus": {
  1009. // #ifdef APP-PLUS
  1010. "titleNView": {
  1011. "type": "default"
  1012. }
  1013. // #endif
  1014. }
  1015. }
  1016. },
  1017. {
  1018. "path": "alipay_return/alipay_return",
  1019. "style": {
  1020. "navigationBarTitleText": "",
  1021. "enablePullDownRefresh": false
  1022. }
  1023. },
  1024. {
  1025. "path": "alipay_invoke/index",
  1026. "style": {
  1027. "navigationBarTitleText": "",
  1028. "enablePullDownRefresh": false
  1029. }
  1030. },
  1031. {
  1032. "path": "agreement_info/index",
  1033. "style": {
  1034. "navigationBarTitleText": "",
  1035. "app-plus": {
  1036. // #ifdef APP-PLUS
  1037. "titleNView": {
  1038. "type": "default"
  1039. }
  1040. // #endif
  1041. }
  1042. }
  1043. },
  1044. {
  1045. "path": "user_grade/index",
  1046. "style": {
  1047. "navigationBarTitleText": "我的等级",
  1048. "navigationBarBackgroundColor": "#181818",
  1049. "app-plus": {
  1050. // #ifdef APP-PLUS
  1051. "titleNView": {
  1052. "type": "default"
  1053. }
  1054. // #endif
  1055. }
  1056. // #ifdef MP || APP-PLUS
  1057. ,
  1058. "navigationBarTextStyle": "black"
  1059. // #endif
  1060. }
  1061. },
  1062. {
  1063. "path": "exp_record/index",
  1064. "style": {
  1065. "navigationBarTitleText": "经验值明细",
  1066. "app-plus": {
  1067. // #ifdef APP-PLUS
  1068. "titleNView": {
  1069. "type": "default"
  1070. }
  1071. // #endif
  1072. }
  1073. }
  1074. },
  1075. {
  1076. "path": "level_rule/index",
  1077. "style": {
  1078. "navigationBarTitleText": "等级规则说明",
  1079. "navigationBarBackgroundColor": "#282828",
  1080. "app-plus": {
  1081. // #ifdef APP-PLUS
  1082. "titleNView": {
  1083. "type": "default"
  1084. }
  1085. // #endif
  1086. }
  1087. // #ifdef MP || APP-PLUS
  1088. ,
  1089. "navigationBarTextStyle": "black"
  1090. // #endif
  1091. }
  1092. }
  1093. ]
  1094. },
  1095. {
  1096. "root": "pages/address",
  1097. "name": "address",
  1098. "pages": [{
  1099. "path": "user_address_list/index",
  1100. "style": {
  1101. "navigationBarTitleText": "地址管理",
  1102. "app-plus": {
  1103. // #ifdef APP-PLUS
  1104. "titleNView": {
  1105. "type": "default"
  1106. }
  1107. // #endif
  1108. }
  1109. }
  1110. },
  1111. {
  1112. "path": "user_address/index",
  1113. "style": {
  1114. "navigationBarTitleText": "添加地址",
  1115. "app-plus": {
  1116. // #ifdef APP-PLUS
  1117. "titleNView": {
  1118. "type": "default"
  1119. }
  1120. // #endif
  1121. }
  1122. }
  1123. },
  1124. {
  1125. "path": "stage_address/index",
  1126. "style": {
  1127. "navigationBarTitleText": "驿站地址",
  1128. "app-plus": {
  1129. // #ifdef APP-PLUS
  1130. "titleNView": {
  1131. "type": "default"
  1132. }
  1133. // #endif
  1134. }
  1135. }
  1136. }
  1137. ]
  1138. // "plugins": {
  1139. // "live-player-plugin": {
  1140. // "version": "1.3.2",
  1141. // "provider": "wx2b03c6e691cd7370"
  1142. // }
  1143. // }
  1144. },
  1145. {
  1146. "root": "pages/activity",
  1147. "name": "activity",
  1148. "pages": [{
  1149. "path": "goods_seckill/index",
  1150. "style": {
  1151. "navigationBarTitleText": "秒杀列表",
  1152. "navigationStyle": "custom"
  1153. // #ifdef MP || APP-PLUS
  1154. ,
  1155. "navigationBarTextStyle": "black"
  1156. // #endif
  1157. }
  1158. },
  1159. {
  1160. "path": "mer-good-seckill/index",
  1161. "style": {
  1162. "navigationBarTitleText": "秒杀列表",
  1163. "navigationStyle": "custom"
  1164. // #ifdef MP || APP-PLUS
  1165. ,
  1166. "navigationBarTextStyle": "black"
  1167. // #endif
  1168. }
  1169. },
  1170. {
  1171. "path": "goods_group/index",
  1172. "style": {
  1173. "navigationBarTitleText": "拼团活动",
  1174. "navigationStyle": "custom"
  1175. // #ifdef MP || APP-PLUS
  1176. ,
  1177. "navigationBarTextStyle": "black"
  1178. // #endif
  1179. }
  1180. },
  1181. {
  1182. "path": "liveBroadcast/index",
  1183. "style": {
  1184. "navigationBarTitleText": "列表",
  1185. "navigationBarBackgroundColor": "#F2F2F2"
  1186. }
  1187. },
  1188. {
  1189. "path": "status/index",
  1190. "style": {
  1191. "navigationBarTitleText": "拼团活动",
  1192. "app-plus": {
  1193. // #ifdef APP-PLUS
  1194. "titleNView": {
  1195. "type": "default"
  1196. }
  1197. // #endif
  1198. }
  1199. }
  1200. },
  1201. {
  1202. "path": "couponList/index",
  1203. "style": {
  1204. "navigationBarTitleText": "领券中心",
  1205. // #ifdef MP || APP-PLUS
  1206. "navigationBarTextStyle": "black",
  1207. "navigationBarBackgroundColor": "#F2F2F2",
  1208. // #endif
  1209. "app-plus": {
  1210. // #ifdef APP-PLUS
  1211. "titleNView": {
  1212. "type": "default"
  1213. }
  1214. // #endif
  1215. }
  1216. }
  1217. },
  1218. {
  1219. "path": "small_page/index",
  1220. "style": {
  1221. "navigationBarTitleText": "",
  1222. "enablePullDownRefresh": false,
  1223. "app-plus": {
  1224. // #ifdef APP-PLUS
  1225. "titleNView": {
  1226. "type": "default"
  1227. }
  1228. // #endif
  1229. }
  1230. }
  1231. },
  1232. {
  1233. "path": "vip_paid/index",
  1234. "style": {
  1235. "navigationBarTitleText": "SVIP会员",
  1236. "navigationStyle": "custom",
  1237. "app-plus": {
  1238. // #ifdef APP-PLUS
  1239. "titleNView": {
  1240. "type": "default"
  1241. }
  1242. // #endif
  1243. }
  1244. }
  1245. },
  1246. {
  1247. "path": "vip_paid_benefits/index",
  1248. "style": {
  1249. "navigationBarTitleText": "会员权益",
  1250. "navigationStyle": "custom",
  1251. "app-plus": {
  1252. // #ifdef APP-PLUS
  1253. "titleNView": {
  1254. "type": "default"
  1255. }
  1256. // #endif
  1257. }
  1258. }
  1259. },
  1260. {
  1261. "path": "vip_order_record/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": "points_mall/index",
  1275. "style": {
  1276. "navigationBarTitleText": "积分商城",
  1277. "navigationStyle": "custom"
  1278. }
  1279. },
  1280. {
  1281. "path": "goods_points/index",
  1282. "style": {
  1283. "navigationBarTitleText": "热门推荐",
  1284. "navigationStyle": "custom"
  1285. // #ifdef MP || APP-PLUS
  1286. ,
  1287. "navigationBarTextStyle": "black"
  1288. // #endif
  1289. }
  1290. }
  1291. ]
  1292. },
  1293. {
  1294. "root": "pages/discover",
  1295. "name": "discover",
  1296. "pages": [{
  1297. "path": "discover_search_list/index",
  1298. "style": {
  1299. "navigationBarTitleText": "搜索页面",
  1300. "app-plus": {
  1301. // #ifdef APP-PLUS
  1302. "titleNView": {
  1303. "type": "default"
  1304. }
  1305. // #endif
  1306. }
  1307. }
  1308. },
  1309. {
  1310. "path": "discover_recommend/index",
  1311. "style": {
  1312. "navigationBarTitleText": "为你推荐",
  1313. // "navigationStyle": "custom",
  1314. "app-plus": {
  1315. // #ifdef APP-PLUS
  1316. "titleNView": {
  1317. "type": "default"
  1318. }
  1319. // #endif
  1320. }
  1321. }
  1322. },
  1323. {
  1324. "path": "discover_release/index",
  1325. "style": {
  1326. "navigationBarTitleText": "内容发布",
  1327. "app-plus": {
  1328. // #ifdef APP-PLUS
  1329. "titleNView": {
  1330. "type": "default",
  1331. "backgroundColor": "#fff"
  1332. }
  1333. // #endif
  1334. }
  1335. }
  1336. },
  1337. // #ifndef APP-PLUS
  1338. {
  1339. "path": "discover_video/routineVideo/index",
  1340. "style": {
  1341. "navigationBarTitleText": "逛逛短视频",
  1342. "navigationStyle": "custom",
  1343. "app-plus": {
  1344. "titleNView": false,
  1345. "bounce": "none"
  1346. }
  1347. }
  1348. },
  1349. // #endif
  1350. // #ifdef APP-PLUS
  1351. {
  1352. "path": "discover_video/appVideo/index",
  1353. "style": {
  1354. "navigationBarTitleText": "逛逛短视频",
  1355. "navigationStyle": "custom",
  1356. "navigationBarTextStyle": "black",
  1357. "app-plus": {
  1358. "titleNView": false,
  1359. "bounce": "none"
  1360. }
  1361. }
  1362. },
  1363. // #endif
  1364. {
  1365. "path": "discover_user/index",
  1366. "style": {
  1367. "navigationBarTitleText": "个人主页",
  1368. "navigationStyle": "custom"
  1369. }
  1370. },
  1371. {
  1372. "path": "discover_follow/index",
  1373. "style": {
  1374. "navigationBarTitleText": "我的关注",
  1375. "app-plus": {
  1376. // #ifdef APP-PLUS
  1377. "titleNView": {
  1378. "type": "default"
  1379. }
  1380. // #endif
  1381. }
  1382. }
  1383. },
  1384. {
  1385. "path": "discover_note_topic/index",
  1386. "style": {
  1387. "navigationBarTitleText": "话题",
  1388. "app-plus": {
  1389. // #ifdef APP-PLUS
  1390. "titleNView": {
  1391. "type": "default"
  1392. }
  1393. // #endif
  1394. }
  1395. }
  1396. },
  1397. {
  1398. "path": "discover_details/index",
  1399. "style": {
  1400. "navigationBarTitleText": "内容详情",
  1401. "app-plus": {
  1402. // #ifdef APP-PLUS
  1403. "titleNView": {
  1404. "type": "default"
  1405. }
  1406. // #endif
  1407. }
  1408. }
  1409. }
  1410. ]
  1411. },
  1412. {
  1413. "root": "pages/admin/",
  1414. "name": "admin",
  1415. "pages": [{
  1416. "path": "work/index",
  1417. "style": {
  1418. "navigationBarTitleText": "工作台",
  1419. "navigationStyle": "custom"
  1420. }
  1421. },
  1422. {
  1423. "path": "skipRefund/index",
  1424. "style": {
  1425. "navigationBarTitleText": "售后订单",
  1426. "navigationStyle": "custom"
  1427. }
  1428. },
  1429. {
  1430. "path": "order/index",
  1431. "style": {
  1432. "navigationBarTitleText": "订单管理",
  1433. "navigationStyle": "custom"
  1434. }
  1435. },
  1436. {
  1437. "path": "logistics/index",
  1438. "style": {
  1439. "navigationBarTitleText": "物流信息",
  1440. "app-plus": {
  1441. // #ifdef APP-PLUS
  1442. "titleNView": {
  1443. "type": "default"
  1444. }
  1445. // #endif
  1446. }
  1447. }
  1448. },
  1449. {
  1450. "path": "logistics/detail",
  1451. "style": {
  1452. "navigationBarTitleText": "发货记录",
  1453. "navigationStyle": "custom",
  1454. "app-plus": {
  1455. // #ifdef APP-PLUS
  1456. "titleNView": {
  1457. "type": "default"
  1458. }
  1459. // #endif
  1460. }
  1461. }
  1462. },
  1463. {
  1464. "path": "logistics/record",
  1465. "style": {
  1466. "navigationBarTitleText": "发货记录",
  1467. "navigationStyle": "custom",
  1468. "app-plus": {
  1469. // #ifdef APP-PLUS
  1470. "titleNView": {
  1471. "type": "default"
  1472. }
  1473. // #endif
  1474. }
  1475. }
  1476. },
  1477. {
  1478. "path": "refund/index",
  1479. "style": {
  1480. "navigationBarTitleText": "立即退款",
  1481. "app-plus": {
  1482. // #ifdef APP-PLUS
  1483. "titleNView": {
  1484. "type": "default"
  1485. }
  1486. // #endif
  1487. }
  1488. }
  1489. },
  1490. {
  1491. "path": "order/send",
  1492. "style": {
  1493. "navigationBarTitleText": "发货",
  1494. "app-plus": {
  1495. // #ifdef APP-PLUS
  1496. "titleNView": {
  1497. "type": "default"
  1498. }
  1499. // #endif
  1500. }
  1501. }
  1502. },
  1503. {
  1504. "path": "order/detail",
  1505. "style": {
  1506. "navigationStyle": "custom"
  1507. }
  1508. },
  1509. {
  1510. "path": "after_sale/index",
  1511. "style": {
  1512. "navigationBarTitleText": "售后订单",
  1513. "navigationStyle": "custom"
  1514. }
  1515. },
  1516. {
  1517. "path": "statistics/index",
  1518. "style": {
  1519. "navigationStyle": "custom",
  1520. "navigationBarTitleText": "销售额统计",
  1521. "app-plus": {
  1522. // #ifdef APP-PLUS
  1523. "titleNView": {
  1524. "type": "default"
  1525. }
  1526. // #endif
  1527. }
  1528. }
  1529. },
  1530. {
  1531. "path": "cancel/index",
  1532. "style": {
  1533. "navigationBarTitleText": "订单核销",
  1534. "app-plus": {
  1535. // #ifdef APP-PLUS
  1536. "titleNView": {
  1537. "type": "default"
  1538. }
  1539. // #endif
  1540. }
  1541. }
  1542. },
  1543. {
  1544. "path": "cancel/list",
  1545. "style": {
  1546. "navigationBarTitleText": "核销订单",
  1547. "app-plus": {
  1548. // #ifdef APP-PLUS
  1549. "titleNView": {
  1550. "type": "default"
  1551. }
  1552. // #endif
  1553. }
  1554. }
  1555. },
  1556. {
  1557. "path": "cancel/result",
  1558. "style": {
  1559. "navigationBarTitleText": "核销结果",
  1560. "app-plus": {
  1561. // #ifdef APP-PLUS
  1562. "titleNView": {
  1563. "type": "default"
  1564. }
  1565. // #endif
  1566. }
  1567. }
  1568. },
  1569. {
  1570. "path": "refundOrderDetail/index",
  1571. "style": {
  1572. "navigationStyle": "custom"
  1573. }
  1574. },
  1575. {
  1576. "path": "goods/index",
  1577. "style": {
  1578. "navigationStyle": "custom",
  1579. "navigationBarTitleText": "商品管理"
  1580. }
  1581. },
  1582. {
  1583. "path": "goods/specs",
  1584. "style": {
  1585. "navigationBarTitleText": "修改价格/库存",
  1586. "navigationBarBackgroundColor": "#F5F5F5",
  1587. "app-plus": {
  1588. // #ifdef APP-PLUS
  1589. "titleNView": {
  1590. "type": "default"
  1591. }
  1592. // #endif
  1593. }
  1594. }
  1595. },
  1596. {
  1597. "path": "goods/inventory",
  1598. "style": {
  1599. "navigationBarTitleText": "增加库存",
  1600. "navigationBarBackgroundColor": "#F5F5F5",
  1601. "app-plus": {
  1602. // #ifdef APP-PLUS
  1603. "titleNView": {
  1604. "type": "default"
  1605. }
  1606. // #endif
  1607. }
  1608. }
  1609. }
  1610. ]
  1611. },
  1612. {
  1613. "root": "pages/auth",
  1614. "name": "pages/auth/index",
  1615. "pages": [{
  1616. "path": "index",
  1617. "style": {
  1618. "navigationBarTitleText": "CRMEB"
  1619. }
  1620. }]
  1621. },
  1622. // {
  1623. // "root": "pages/rider_index",
  1624. // "name": "rider_index",
  1625. // "pages": [{
  1626. // "path": "index",
  1627. // "style": {
  1628. // "navigationStyle": "custom",
  1629. // "navigationBarTitleText": "骑手"
  1630. // }
  1631. // }]
  1632. // },
  1633. {
  1634. "root": "pages/rider_index/",
  1635. "name": "rider",
  1636. "pages": [{
  1637. "path": "work/index",
  1638. "style": {
  1639. "navigationBarTitleText": "工作台",
  1640. "navigationStyle": "custom"
  1641. }
  1642. },
  1643. {
  1644. "path": "order/index",
  1645. "style": {
  1646. "navigationBarTitleText": "外卖接单",
  1647. "navigationStyle": "custom"
  1648. }
  1649. },
  1650. {
  1651. "path": "order/detail",
  1652. "style": {
  1653. "navigationBarTitleText": "外卖订单详情",
  1654. "navigationStyle": "custom"
  1655. }
  1656. },
  1657. {
  1658. "path": "express/index",
  1659. "style": {
  1660. "navigationBarTitleText": "快递接单",
  1661. "navigationStyle": "custom"
  1662. }
  1663. },
  1664. {
  1665. "path": "express/detail",
  1666. "style": {
  1667. "navigationBarTitleText": "快递订单详情",
  1668. "navigationStyle": "custom"
  1669. }
  1670. },
  1671. {
  1672. "path": "cashwithdrawal/index",
  1673. "style": {
  1674. "navigationBarTitleText": "提现",
  1675. "navigationStyle": "custom"
  1676. }
  1677. },
  1678. {
  1679. "path": "rider_transferOut/index",
  1680. "style": {
  1681. "navigationBarTitleText": "提现",
  1682. "navigationStyle": "custom"
  1683. }
  1684. },
  1685. {
  1686. "path": "rider_spread_out/index",
  1687. "style": {
  1688. "navigationBarTitleText": "转入",
  1689. "navigationStyle": "custom"
  1690. }
  1691. },
  1692. {
  1693. "path": "index",
  1694. "style": {
  1695. "navigationBarTitleText": "跑腿记录",
  1696. "navigationStyle": "custom"
  1697. }
  1698. }
  1699. ]
  1700. },
  1701. {
  1702. "root": "pages/takeout",
  1703. "name": "takeout",
  1704. "pages": [{
  1705. "path": "index",
  1706. "style": {
  1707. "navigationStyle": "custom",
  1708. "navigationBarTitleText": "美食"
  1709. }
  1710. }]
  1711. },
  1712. {
  1713. "root": "pages/merchant_search",
  1714. "name": "merchant_search",
  1715. "pages": [{
  1716. "path": "index",
  1717. "style": {
  1718. "navigationStyle": "custom",
  1719. "navigationBarTitleText": "搜索外卖商家"
  1720. }
  1721. }]
  1722. },
  1723. {
  1724. "root": "pages/goods_cate",
  1725. "name": "goods_cate",
  1726. "pages": [{
  1727. "path": "index",
  1728. "style": {
  1729. "navigationBarTitleText": "商品分类",
  1730. "navigationStyle": "custom"
  1731. }
  1732. }]
  1733. },
  1734. {
  1735. "root": "pages/discover_index",
  1736. "name": "discover_index",
  1737. "pages": [{
  1738. "path": "index",
  1739. "style": {
  1740. "navigationBarTitleText": "逛逛",
  1741. "navigationStyle": "custom",
  1742. "navigationBarTextStyle": "black"
  1743. }
  1744. }]
  1745. }
  1746. // {
  1747. // "root": "pages/order_addcart",
  1748. // "name": "order_addcart",
  1749. // "pages": [{
  1750. // "path": "order_addcart",
  1751. // "style": {
  1752. // "navigationStyle": "custom",
  1753. // "navigationBarTitleText": "购物车"
  1754. // // "app-plus": {
  1755. // // // #ifdef APP-PLUS
  1756. // // "titleNView": {
  1757. // // "type": "default"
  1758. // // }
  1759. // // // #endif
  1760. // // }
  1761. // }
  1762. // }]
  1763. // }
  1764. ],
  1765. "globalStyle": {
  1766. "navigationBarTextStyle": "black",
  1767. "navigationBarTitleText": "crmeb",
  1768. "navigationBarBackgroundColor": "#fff",
  1769. "backgroundColor": "#F8F8F8",
  1770. "titleNView": false,
  1771. "rpxCalcMaxDeviceWidth": 960,
  1772. "rpxCalcBaseDeviceWidth": 375,
  1773. "rpxCalcIncludeWidth": 750,
  1774. "app-plus": {
  1775. "scrollIndicator": "none" //隐藏所有页面滚动条
  1776. }
  1777. },
  1778. "tabBar": {
  1779. "custom": false,
  1780. "color": "#8E8E8E",
  1781. "selectedColor": "#FF6702",
  1782. "borderStyle": "white",
  1783. "backgroundColor": "#ffffff",
  1784. "list": [{
  1785. "pagePath": "pages/index/index",
  1786. "iconPath": "/static/tabBar/shouwei.png",
  1787. "selectedIconPath": "/static/tabBar/shouxuan.png",
  1788. "text": "首页"
  1789. },
  1790. {
  1791. "pagePath": "pages/order/index",
  1792. "iconPath": "/static/tabBar/fenwei.png",
  1793. "selectedIconPath": "static/tabBar/fenxuan.png",
  1794. "text": "订单"
  1795. },
  1796. {
  1797. "pagePath": "pages/order_addcart/order_addcart",
  1798. "iconPath": "/static/tabBar/gouwei.png",
  1799. "selectedIconPath": "/static/tabBar/gouxuan.png",
  1800. "text": "购物车"
  1801. },
  1802. {
  1803. "pagePath": "pages/user/index",
  1804. "iconPath": "static/tabBar/wowei.png",
  1805. "selectedIconPath": "static/tabBar/woxuan.png",
  1806. "text": "我的"
  1807. }
  1808. ]
  1809. },
  1810. "condition": { //模式配置,仅开发期间生效
  1811. "current": 0, //当前激活的模式(list 的索引项)
  1812. "list": [{
  1813. "name": "", //模式名称
  1814. "path": "", //启动页面,必选
  1815. "query": "" //启动参数,在页面的onLoad函数里面得到
  1816. }]
  1817. }
  1818. }