pages.json 35 KB

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