pages.json 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806
  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. // {
  598. // "path": "order_list/index",
  599. // "style": {
  600. // "navigationBarTitleText": "订单列表",
  601. // "navigationStyle": "custom",
  602. // "enablePullDownRefresh": false
  603. // }
  604. // },
  605. {
  606. "path": "trade_return_list/index",
  607. "style": {
  608. "navigationBarTitleText": "售后列表",
  609. "app-plus": {
  610. // #ifdef APP-PLUS
  611. "titleNView": {
  612. "type": "default"
  613. }
  614. // #endif
  615. }
  616. }
  617. }]
  618. },
  619. {
  620. "root": "pages/goods",
  621. "path": "goods",
  622. "pages": [{
  623. "path": "goods_details/index",
  624. "style": {
  625. "navigationBarTitleText": "商品详情",
  626. "navigationStyle": "custom"
  627. }
  628. },
  629. {
  630. "path": "goods_list/index",
  631. "style": {
  632. "navigationBarTitleText": "商品列表",
  633. //"navigationStyle": "custom",
  634. "app-plus": {
  635. // #ifdef APP-PLUS
  636. "titleNView": {
  637. "type": "default"
  638. }
  639. // #endif
  640. }
  641. }
  642. },
  643. {
  644. "path": "coupon_goods_list/index",
  645. "style": {
  646. "navigationBarTitleText": "商品列表",
  647. "app-plus": {
  648. // #ifdef APP-PLUS
  649. "titleNView": {
  650. "type": "default"
  651. }
  652. // #endif
  653. }
  654. }
  655. },
  656. {
  657. "path": "systemIframe/index",
  658. "style": {
  659. "navigationBarTitleText": "系统表单",
  660. "app-plus": {
  661. // #ifdef APP-PLUS
  662. "titleNView": {
  663. "type": "default"
  664. }
  665. // #endif
  666. }
  667. }
  668. },
  669. {
  670. "path": "goods_search/index",
  671. "style": {
  672. "navigationBarTitleText": "搜索商品",
  673. "navigationStyle": "custom",
  674. "app-plus": {
  675. // #ifdef APP-PLUS
  676. "titleNView": {
  677. "type": "default"
  678. }
  679. // #endif
  680. }
  681. }
  682. },
  683. {
  684. "path": "news_list/index",
  685. "style": {
  686. "navigationBarTitleText": "资讯",
  687. "app-plus": {
  688. // #ifdef APP-PLUS
  689. "titleNView": {
  690. "type": "default"
  691. }
  692. // #endif
  693. }
  694. }
  695. },
  696. {
  697. "path": "news_details/index",
  698. "style": {
  699. "navigationBarTitleText": "资讯详情",
  700. "app-plus": {
  701. // #ifdef APP-PLUS
  702. "titleNView": {
  703. "type": "default"
  704. }
  705. // #endif
  706. }
  707. }
  708. },
  709. {
  710. "path": "browsing_history/index",
  711. "style": {
  712. "navigationBarTitleText": "浏览记录",
  713. "backgroundColor": "#FFFFFF",
  714. "app-plus": {
  715. // #ifdef APP-PLUS
  716. "titleNView": {
  717. "type": "default"
  718. }
  719. // #endif
  720. }
  721. }
  722. },
  723. {
  724. "path": "order_list/index",
  725. "style": {
  726. "navigationBarTitleText": "我的订单",
  727. "app-plus": {
  728. // #ifdef APP-PLUS
  729. "titleNView": {
  730. "type": "default"
  731. }
  732. // #endif
  733. }
  734. }
  735. },
  736. {
  737. "path": "order_logistics/index",
  738. "style": {
  739. "navigationBarTitleText": "发货记录",
  740. "app-plus": {
  741. // #ifdef APP-PLUS
  742. "titleNView": {
  743. "type": "default"
  744. }
  745. // #endif
  746. }
  747. }
  748. },
  749. {
  750. "path": "order_confirm/index",
  751. "style": {
  752. "navigationBarTitleText": "提交订单",
  753. "navigationStyle": "custom",
  754. "app-plus": {
  755. // #ifdef APP-PLUS
  756. "titleNView": {
  757. "type": "default"
  758. }
  759. // #endif
  760. }
  761. }
  762. },
  763. {
  764. "path": "order_payment/index",
  765. "style": {
  766. "navigationBarTitleText": "支付订单",
  767. // #ifdef MP || APP-PLUS
  768. "navigationBarTextStyle": "black",
  769. "navigationBarBackgroundColor": "#fff",
  770. // #endif
  771. "app-plus": {
  772. // #ifdef APP-PLUS
  773. "titleNView": {
  774. "type": "default"
  775. }
  776. // #endif
  777. }
  778. }
  779. },
  780. {
  781. "path": "refund_details/index",
  782. "style": {
  783. "navigationBarTitleText": "售后详情",
  784. "navigationBarBackgroundColor": "#fff",
  785. "app-plus": {
  786. // #ifdef APP-PLUS
  787. "titleNView": {
  788. "type": "default"
  789. }
  790. // #endif
  791. }
  792. }
  793. },
  794. {
  795. "path": "second_refunds_details/index",
  796. "style": {
  797. "navigationBarTitleText": "售后详情",
  798. "app-plus": {
  799. // #ifdef APP-PLUS
  800. "titleNView": {
  801. "type": "default"
  802. }
  803. // #endif
  804. }
  805. }
  806. },
  807. {
  808. "path": "order_pay_status/index",
  809. "style": {
  810. "navigationBarTitleText": "支付结果",
  811. "app-plus": {
  812. // #ifdef APP-PLUS
  813. "titleNView": {
  814. "type": "default"
  815. }
  816. // #endif
  817. }
  818. }
  819. },
  820. {
  821. "path": "order_details/index",
  822. "style": {
  823. "navigationBarTitleText": "订单详情",
  824. "app-plus": {
  825. // #ifdef APP-PLUS
  826. "titleNView": {
  827. "type": "default"
  828. }
  829. // #endif
  830. }
  831. }
  832. },
  833. {
  834. "path": "virtual_order_details/index",
  835. "style": {
  836. "navigationBarTitleText": "订单详情",
  837. "app-plus": {
  838. // #ifdef APP-PLUS
  839. "titleNView": {
  840. "type": "default"
  841. }
  842. // #endif
  843. }
  844. }
  845. },
  846. {
  847. "path": "user_return_list/index",
  848. "style": {
  849. "navigationBarTitleText": "售后列表",
  850. "app-plus": {
  851. // #ifdef APP-PLUS
  852. "titleNView": {
  853. "type": "default"
  854. }
  855. // #endif
  856. }
  857. }
  858. },
  859. {
  860. "path": "goods_return/index",
  861. "style": {
  862. "navigationBarTitleText": "售后退款",
  863. "app-plus": {
  864. // #ifdef APP-PLUS
  865. "titleNView": {
  866. "type": "default"
  867. }
  868. // #endif
  869. }
  870. }
  871. },
  872. {
  873. "path": "after_sales_type/index",
  874. "style": {
  875. "navigationBarTitleText": "售后类型",
  876. "app-plus": {
  877. // #ifdef APP-PLUS
  878. "titleNView": {
  879. "type": "default"
  880. }
  881. // #endif
  882. }
  883. }
  884. },
  885. {
  886. "path": "returns_and_refunds/index",
  887. "style": {
  888. "navigationBarTitleText": "退货退款",
  889. "app-plus": {
  890. // #ifdef APP-PLUS
  891. "titleNView": {
  892. "type": "default"
  893. }
  894. // #endif
  895. }
  896. }
  897. },
  898. {
  899. "path": "goods_comment_con/index",
  900. "style": {
  901. "navigationBarTitleText": "商品评价",
  902. "app-plus": {
  903. // #ifdef APP-PLUS
  904. "titleNView": {
  905. "type": "default"
  906. }
  907. // #endif
  908. }
  909. }
  910. },
  911. {
  912. "path": "evaluation_list/index",
  913. "style": {
  914. "navigationBarTitleText": "评价列表",
  915. "app-plus": {
  916. // #ifdef APP-PLUS
  917. "titleNView": {
  918. "type": "default"
  919. }
  920. // #endif
  921. }
  922. }
  923. },
  924. {
  925. "path": "goods_comment_list/index",
  926. "style": {
  927. "navigationBarTitleText": "商品评分",
  928. "app-plus": {
  929. // #ifdef APP-PLUS
  930. "titleNView": {
  931. "type": "default"
  932. }
  933. // #endif
  934. }
  935. }
  936. },
  937. {
  938. "path": "goods_logistics/index",
  939. "style": {
  940. "navigationBarTitleText": "物流信息",
  941. "app-plus": {
  942. // #ifdef APP-PLUS
  943. "titleNView": {
  944. "type": "default"
  945. }
  946. // #endif
  947. }
  948. }
  949. },
  950. {
  951. "path": "send_record/index",
  952. "style": {
  953. "navigationBarTitleText": "发货记录",
  954. "app-plus": {
  955. // #ifdef APP-PLUS
  956. "titleNView": {
  957. "type": "default"
  958. }
  959. // #endif
  960. }
  961. }
  962. },
  963. {
  964. "path": "agreement_rules/index",
  965. "style": {
  966. "navigationBarTitleText": "隐私协议",
  967. "app-plus": {
  968. // #ifdef APP-PLUS
  969. "titleNView": {
  970. "type": "default"
  971. }
  972. // #endif
  973. }
  974. }
  975. },
  976. {
  977. "path": "user_goods_collection/index",
  978. "style": {
  979. "navigationBarTitleText": "收藏商品",
  980. "app-plus": {
  981. // #ifdef APP-PLUS
  982. "titleNView": {
  983. "type": "default"
  984. }
  985. // #endif
  986. }
  987. }
  988. },
  989. {
  990. "path": "user_merchant_collection/index",
  991. "style": {
  992. "navigationBarTitleText": "收藏店铺",
  993. "app-plus": {
  994. // #ifdef APP-PLUS
  995. "titleNView": {
  996. "type": "default"
  997. }
  998. // #endif
  999. }
  1000. }
  1001. },
  1002. {
  1003. "path": "alipay_return/alipay_return",
  1004. "style": {
  1005. "navigationBarTitleText": "",
  1006. "enablePullDownRefresh": false
  1007. }
  1008. },
  1009. {
  1010. "path": "alipay_invoke/index",
  1011. "style": {
  1012. "navigationBarTitleText": "",
  1013. "enablePullDownRefresh": false
  1014. }
  1015. },
  1016. {
  1017. "path": "agreement_info/index",
  1018. "style": {
  1019. "navigationBarTitleText": "",
  1020. "app-plus": {
  1021. // #ifdef APP-PLUS
  1022. "titleNView": {
  1023. "type": "default"
  1024. }
  1025. // #endif
  1026. }
  1027. }
  1028. },
  1029. {
  1030. "path": "user_grade/index",
  1031. "style": {
  1032. "navigationBarTitleText": "我的等级",
  1033. "navigationBarBackgroundColor": "#181818",
  1034. "app-plus": {
  1035. // #ifdef APP-PLUS
  1036. "titleNView": {
  1037. "type": "default"
  1038. }
  1039. // #endif
  1040. }
  1041. // #ifdef MP || APP-PLUS
  1042. ,
  1043. "navigationBarTextStyle": "black"
  1044. // #endif
  1045. }
  1046. },
  1047. {
  1048. "path": "exp_record/index",
  1049. "style": {
  1050. "navigationBarTitleText": "经验值明细",
  1051. "app-plus": {
  1052. // #ifdef APP-PLUS
  1053. "titleNView": {
  1054. "type": "default"
  1055. }
  1056. // #endif
  1057. }
  1058. }
  1059. },
  1060. {
  1061. "path": "level_rule/index",
  1062. "style": {
  1063. "navigationBarTitleText": "等级规则说明",
  1064. "navigationBarBackgroundColor": "#282828",
  1065. "app-plus": {
  1066. // #ifdef APP-PLUS
  1067. "titleNView": {
  1068. "type": "default"
  1069. }
  1070. // #endif
  1071. }
  1072. // #ifdef MP || APP-PLUS
  1073. ,
  1074. "navigationBarTextStyle": "black"
  1075. // #endif
  1076. }
  1077. }
  1078. ]
  1079. },
  1080. {
  1081. "root": "pages/address",
  1082. "name": "address",
  1083. "pages": [{
  1084. "path": "user_address_list/index",
  1085. "style": {
  1086. "navigationBarTitleText": "地址管理",
  1087. "app-plus": {
  1088. // #ifdef APP-PLUS
  1089. "titleNView": {
  1090. "type": "default"
  1091. }
  1092. // #endif
  1093. }
  1094. }
  1095. },
  1096. {
  1097. "path": "user_address/index",
  1098. "style": {
  1099. "navigationBarTitleText": "添加地址",
  1100. "app-plus": {
  1101. // #ifdef APP-PLUS
  1102. "titleNView": {
  1103. "type": "default"
  1104. }
  1105. // #endif
  1106. }
  1107. }
  1108. },
  1109. {
  1110. "path": "stage_address/index",
  1111. "style": {
  1112. "navigationBarTitleText": "驿站地址",
  1113. "app-plus": {
  1114. // #ifdef APP-PLUS
  1115. "titleNView": {
  1116. "type": "default"
  1117. }
  1118. // #endif
  1119. }
  1120. }
  1121. }
  1122. ]
  1123. // "plugins": {
  1124. // "live-player-plugin": {
  1125. // "version": "1.3.2",
  1126. // "provider": "wx2b03c6e691cd7370"
  1127. // }
  1128. // }
  1129. },
  1130. {
  1131. "root": "pages/activity",
  1132. "name": "activity",
  1133. "pages": [{
  1134. "path": "goods_seckill/index",
  1135. "style": {
  1136. "navigationBarTitleText": "秒杀列表",
  1137. "navigationStyle": "custom"
  1138. // #ifdef MP || APP-PLUS
  1139. ,
  1140. "navigationBarTextStyle": "black"
  1141. // #endif
  1142. }
  1143. },
  1144. {
  1145. "path": "mer-good-seckill/index",
  1146. "style": {
  1147. "navigationBarTitleText": "秒杀列表",
  1148. "navigationStyle": "custom"
  1149. // #ifdef MP || APP-PLUS
  1150. ,
  1151. "navigationBarTextStyle": "black"
  1152. // #endif
  1153. }
  1154. },
  1155. {
  1156. "path": "goods_group/index",
  1157. "style": {
  1158. "navigationBarTitleText": "拼团活动",
  1159. "navigationStyle": "custom"
  1160. // #ifdef MP || APP-PLUS
  1161. ,
  1162. "navigationBarTextStyle": "black"
  1163. // #endif
  1164. }
  1165. },
  1166. {
  1167. "path": "liveBroadcast/index",
  1168. "style": {
  1169. "navigationBarTitleText": "列表",
  1170. "navigationBarBackgroundColor": "#F2F2F2"
  1171. }
  1172. },
  1173. {
  1174. "path": "status/index",
  1175. "style": {
  1176. "navigationBarTitleText": "拼团活动",
  1177. "app-plus": {
  1178. // #ifdef APP-PLUS
  1179. "titleNView": {
  1180. "type": "default"
  1181. }
  1182. // #endif
  1183. }
  1184. }
  1185. },
  1186. {
  1187. "path": "couponList/index",
  1188. "style": {
  1189. "navigationBarTitleText": "领券中心",
  1190. // #ifdef MP || APP-PLUS
  1191. "navigationBarTextStyle": "black",
  1192. "navigationBarBackgroundColor": "#F2F2F2",
  1193. // #endif
  1194. "app-plus": {
  1195. // #ifdef APP-PLUS
  1196. "titleNView": {
  1197. "type": "default"
  1198. }
  1199. // #endif
  1200. }
  1201. }
  1202. },
  1203. {
  1204. "path": "small_page/index",
  1205. "style": {
  1206. "navigationBarTitleText": "",
  1207. "enablePullDownRefresh": false,
  1208. "app-plus": {
  1209. // #ifdef APP-PLUS
  1210. "titleNView": {
  1211. "type": "default"
  1212. }
  1213. // #endif
  1214. }
  1215. }
  1216. },
  1217. {
  1218. "path": "vip_paid/index",
  1219. "style": {
  1220. "navigationBarTitleText": "SVIP会员",
  1221. "navigationStyle": "custom",
  1222. "app-plus": {
  1223. // #ifdef APP-PLUS
  1224. "titleNView": {
  1225. "type": "default"
  1226. }
  1227. // #endif
  1228. }
  1229. }
  1230. },
  1231. {
  1232. "path": "vip_paid_benefits/index",
  1233. "style": {
  1234. "navigationBarTitleText": "会员权益",
  1235. "navigationStyle": "custom",
  1236. "app-plus": {
  1237. // #ifdef APP-PLUS
  1238. "titleNView": {
  1239. "type": "default"
  1240. }
  1241. // #endif
  1242. }
  1243. }
  1244. },
  1245. {
  1246. "path": "vip_order_record/index",
  1247. "style": {
  1248. "navigationBarTitleText": "会员购买记录",
  1249. "app-plus": {
  1250. // #ifdef APP-PLUS
  1251. "titleNView": {
  1252. "type": "default"
  1253. }
  1254. // #endif
  1255. }
  1256. }
  1257. },
  1258. {
  1259. "path": "points_mall/index",
  1260. "style": {
  1261. "navigationBarTitleText": "积分商城",
  1262. "navigationStyle": "custom"
  1263. }
  1264. },
  1265. {
  1266. "path": "goods_points/index",
  1267. "style": {
  1268. "navigationBarTitleText": "热门推荐",
  1269. "navigationStyle": "custom"
  1270. // #ifdef MP || APP-PLUS
  1271. ,
  1272. "navigationBarTextStyle": "black"
  1273. // #endif
  1274. }
  1275. }
  1276. ]
  1277. },
  1278. {
  1279. "root": "pages/discover",
  1280. "name": "discover",
  1281. "pages": [{
  1282. "path": "discover_search_list/index",
  1283. "style": {
  1284. "navigationBarTitleText": "搜索页面",
  1285. "app-plus": {
  1286. // #ifdef APP-PLUS
  1287. "titleNView": {
  1288. "type": "default"
  1289. }
  1290. // #endif
  1291. }
  1292. }
  1293. },
  1294. {
  1295. "path": "discover_recommend/index",
  1296. "style": {
  1297. "navigationBarTitleText": "为你推荐",
  1298. // "navigationStyle": "custom",
  1299. "app-plus": {
  1300. // #ifdef APP-PLUS
  1301. "titleNView": {
  1302. "type": "default"
  1303. }
  1304. // #endif
  1305. }
  1306. }
  1307. },
  1308. {
  1309. "path": "discover_release/index",
  1310. "style": {
  1311. "navigationBarTitleText": "内容发布",
  1312. "app-plus": {
  1313. // #ifdef APP-PLUS
  1314. "titleNView": {
  1315. "type": "default",
  1316. "backgroundColor": "#fff"
  1317. }
  1318. // #endif
  1319. }
  1320. }
  1321. },
  1322. // #ifndef APP-PLUS
  1323. {
  1324. "path": "discover_video/routineVideo/index",
  1325. "style": {
  1326. "navigationBarTitleText": "逛逛短视频",
  1327. "navigationStyle": "custom",
  1328. "app-plus": {
  1329. "titleNView": false,
  1330. "bounce": "none"
  1331. }
  1332. }
  1333. },
  1334. // #endif
  1335. // #ifdef APP-PLUS
  1336. {
  1337. "path": "discover_video/appVideo/index",
  1338. "style": {
  1339. "navigationBarTitleText": "逛逛短视频",
  1340. "navigationStyle": "custom",
  1341. "navigationBarTextStyle": "black",
  1342. "app-plus": {
  1343. "titleNView": false,
  1344. "bounce": "none"
  1345. }
  1346. }
  1347. },
  1348. // #endif
  1349. {
  1350. "path": "discover_user/index",
  1351. "style": {
  1352. "navigationBarTitleText": "个人主页",
  1353. "navigationStyle": "custom"
  1354. }
  1355. },
  1356. {
  1357. "path": "discover_follow/index",
  1358. "style": {
  1359. "navigationBarTitleText": "我的关注",
  1360. "app-plus": {
  1361. // #ifdef APP-PLUS
  1362. "titleNView": {
  1363. "type": "default"
  1364. }
  1365. // #endif
  1366. }
  1367. }
  1368. },
  1369. {
  1370. "path": "discover_note_topic/index",
  1371. "style": {
  1372. "navigationBarTitleText": "话题",
  1373. "app-plus": {
  1374. // #ifdef APP-PLUS
  1375. "titleNView": {
  1376. "type": "default"
  1377. }
  1378. // #endif
  1379. }
  1380. }
  1381. },
  1382. {
  1383. "path": "discover_details/index",
  1384. "style": {
  1385. "navigationBarTitleText": "内容详情",
  1386. "app-plus": {
  1387. // #ifdef APP-PLUS
  1388. "titleNView": {
  1389. "type": "default"
  1390. }
  1391. // #endif
  1392. }
  1393. }
  1394. }
  1395. ]
  1396. },
  1397. {
  1398. "root": "pages/admin/",
  1399. "name": "admin",
  1400. "pages": [{
  1401. "path": "work/index",
  1402. "style": {
  1403. "navigationBarTitleText": "工作台",
  1404. "navigationStyle": "custom"
  1405. }
  1406. },
  1407. {
  1408. "path": "skipRefund/index",
  1409. "style": {
  1410. "navigationBarTitleText": "售后订单",
  1411. "navigationStyle": "custom"
  1412. }
  1413. },
  1414. {
  1415. "path": "order/index",
  1416. "style": {
  1417. "navigationBarTitleText": "订单管理",
  1418. "navigationStyle": "custom"
  1419. }
  1420. },
  1421. {
  1422. "path": "logistics/index",
  1423. "style": {
  1424. "navigationBarTitleText": "物流信息",
  1425. "app-plus": {
  1426. // #ifdef APP-PLUS
  1427. "titleNView": {
  1428. "type": "default"
  1429. }
  1430. // #endif
  1431. }
  1432. }
  1433. },
  1434. {
  1435. "path": "logistics/detail",
  1436. "style": {
  1437. "navigationBarTitleText": "发货记录",
  1438. "navigationStyle": "custom",
  1439. "app-plus": {
  1440. // #ifdef APP-PLUS
  1441. "titleNView": {
  1442. "type": "default"
  1443. }
  1444. // #endif
  1445. }
  1446. }
  1447. },
  1448. {
  1449. "path": "logistics/record",
  1450. "style": {
  1451. "navigationBarTitleText": "发货记录",
  1452. "navigationStyle": "custom",
  1453. "app-plus": {
  1454. // #ifdef APP-PLUS
  1455. "titleNView": {
  1456. "type": "default"
  1457. }
  1458. // #endif
  1459. }
  1460. }
  1461. },
  1462. {
  1463. "path": "refund/index",
  1464. "style": {
  1465. "navigationBarTitleText": "立即退款",
  1466. "app-plus": {
  1467. // #ifdef APP-PLUS
  1468. "titleNView": {
  1469. "type": "default"
  1470. }
  1471. // #endif
  1472. }
  1473. }
  1474. },
  1475. {
  1476. "path": "order/send",
  1477. "style": {
  1478. "navigationBarTitleText": "发货",
  1479. "app-plus": {
  1480. // #ifdef APP-PLUS
  1481. "titleNView": {
  1482. "type": "default"
  1483. }
  1484. // #endif
  1485. }
  1486. }
  1487. },
  1488. {
  1489. "path": "order/detail",
  1490. "style": {
  1491. "navigationStyle": "custom"
  1492. }
  1493. },
  1494. {
  1495. "path": "after_sale/index",
  1496. "style": {
  1497. "navigationBarTitleText": "售后订单",
  1498. "navigationStyle": "custom"
  1499. }
  1500. },
  1501. {
  1502. "path": "statistics/index",
  1503. "style": {
  1504. "navigationStyle": "custom",
  1505. "navigationBarTitleText": "销售额统计",
  1506. "app-plus": {
  1507. // #ifdef APP-PLUS
  1508. "titleNView": {
  1509. "type": "default"
  1510. }
  1511. // #endif
  1512. }
  1513. }
  1514. },
  1515. {
  1516. "path": "cancel/index",
  1517. "style": {
  1518. "navigationBarTitleText": "订单核销",
  1519. "app-plus": {
  1520. // #ifdef APP-PLUS
  1521. "titleNView": {
  1522. "type": "default"
  1523. }
  1524. // #endif
  1525. }
  1526. }
  1527. },
  1528. {
  1529. "path": "cancel/list",
  1530. "style": {
  1531. "navigationBarTitleText": "核销订单",
  1532. "app-plus": {
  1533. // #ifdef APP-PLUS
  1534. "titleNView": {
  1535. "type": "default"
  1536. }
  1537. // #endif
  1538. }
  1539. }
  1540. },
  1541. {
  1542. "path": "cancel/result",
  1543. "style": {
  1544. "navigationBarTitleText": "核销结果",
  1545. "app-plus": {
  1546. // #ifdef APP-PLUS
  1547. "titleNView": {
  1548. "type": "default"
  1549. }
  1550. // #endif
  1551. }
  1552. }
  1553. },
  1554. {
  1555. "path": "refundOrderDetail/index",
  1556. "style": {
  1557. "navigationStyle": "custom"
  1558. }
  1559. },
  1560. {
  1561. "path": "goods/index",
  1562. "style": {
  1563. "navigationStyle": "custom",
  1564. "navigationBarTitleText": "商品管理"
  1565. }
  1566. },
  1567. {
  1568. "path": "goods/specs",
  1569. "style": {
  1570. "navigationBarTitleText": "修改价格/库存",
  1571. "navigationBarBackgroundColor": "#F5F5F5",
  1572. "app-plus": {
  1573. // #ifdef APP-PLUS
  1574. "titleNView": {
  1575. "type": "default"
  1576. }
  1577. // #endif
  1578. }
  1579. }
  1580. },
  1581. {
  1582. "path": "goods/inventory",
  1583. "style": {
  1584. "navigationBarTitleText": "增加库存",
  1585. "navigationBarBackgroundColor": "#F5F5F5",
  1586. "app-plus": {
  1587. // #ifdef APP-PLUS
  1588. "titleNView": {
  1589. "type": "default"
  1590. }
  1591. // #endif
  1592. }
  1593. }
  1594. }
  1595. ]
  1596. },
  1597. {
  1598. "root": "pages/auth",
  1599. "name": "pages/auth/index",
  1600. "pages": [{
  1601. "path": "index",
  1602. "style": {
  1603. "navigationBarTitleText": "CRMEB"
  1604. }
  1605. }]
  1606. },
  1607. // {
  1608. // "root": "pages/rider_index",
  1609. // "name": "rider_index",
  1610. // "pages": [{
  1611. // "path": "index",
  1612. // "style": {
  1613. // "navigationStyle": "custom",
  1614. // "navigationBarTitleText": "骑手"
  1615. // }
  1616. // }]
  1617. // },
  1618. {
  1619. "root": "pages/rider_index/",
  1620. "name": "rider",
  1621. "pages": [{
  1622. "path": "work/index",
  1623. "style": {
  1624. "navigationBarTitleText": "工作台",
  1625. "navigationStyle": "custom"
  1626. }
  1627. },
  1628. {
  1629. "path": "order/index",
  1630. "style": {
  1631. "navigationBarTitleText": "外卖接单",
  1632. "navigationStyle": "custom"
  1633. }
  1634. },
  1635. {
  1636. "path": "order/detail",
  1637. "style": {
  1638. "navigationBarTitleText": "外卖订单详情",
  1639. "navigationStyle": "custom"
  1640. }
  1641. },
  1642. {
  1643. "path": "express/index",
  1644. "style": {
  1645. "navigationBarTitleText": "快递接单",
  1646. "navigationStyle": "custom"
  1647. }
  1648. },
  1649. {
  1650. "path": "express/detail",
  1651. "style": {
  1652. "navigationBarTitleText": "快递订单详情",
  1653. "navigationStyle": "custom"
  1654. }
  1655. },
  1656. {
  1657. "path": "cashwithdrawal/index",
  1658. "style": {
  1659. "navigationBarTitleText": "提现",
  1660. "navigationStyle": "custom"
  1661. }
  1662. },
  1663. {
  1664. "path": "rider_transferOut/index",
  1665. "style": {
  1666. "navigationBarTitleText": "提现",
  1667. "navigationStyle": "custom"
  1668. }
  1669. },
  1670. {
  1671. "path": "rider_spread_out/index",
  1672. "style": {
  1673. "navigationBarTitleText": "转入",
  1674. "navigationStyle": "custom"
  1675. }
  1676. },
  1677. {
  1678. "path": "index",
  1679. "style": {
  1680. "navigationBarTitleText": "跑腿记录",
  1681. "navigationStyle": "custom"
  1682. }
  1683. }
  1684. ]
  1685. },
  1686. {
  1687. "root": "pages/takeout",
  1688. "name": "takeout",
  1689. "pages": [{
  1690. "path": "index",
  1691. "style": {
  1692. "navigationStyle": "custom",
  1693. "navigationBarTitleText": "美食"
  1694. }
  1695. }]
  1696. },
  1697. {
  1698. "root": "pages/merchant_search",
  1699. "name": "merchant_search",
  1700. "pages": [{
  1701. "path": "index",
  1702. "style": {
  1703. "navigationStyle": "custom",
  1704. "navigationBarTitleText": "搜索外卖商家"
  1705. }
  1706. }]
  1707. },
  1708. {
  1709. "root": "pages/goods_cate",
  1710. "name": "goods_cate",
  1711. "pages": [{
  1712. "path": "index",
  1713. "style": {
  1714. "navigationBarTitleText": "商品分类",
  1715. "navigationStyle": "custom"
  1716. }
  1717. }]
  1718. },
  1719. {
  1720. "root": "pages/discover_index",
  1721. "name": "discover_index",
  1722. "pages": [{
  1723. "path": "index",
  1724. "style": {
  1725. "navigationBarTitleText": "逛逛",
  1726. "navigationStyle": "custom",
  1727. "navigationBarTextStyle": "black"
  1728. }
  1729. }]
  1730. },
  1731. {
  1732. "root": "pages/order_addcart",
  1733. "name": "order_addcart",
  1734. "pages": [{
  1735. "path": "order_addcart",
  1736. "style": {
  1737. "navigationStyle": "custom",
  1738. "navigationBarTitleText": "购物车"
  1739. // "app-plus": {
  1740. // // #ifdef APP-PLUS
  1741. // "titleNView": {
  1742. // "type": "default"
  1743. // }
  1744. // // #endif
  1745. // }
  1746. }
  1747. }]
  1748. }
  1749. ],
  1750. "globalStyle": {
  1751. "navigationBarTextStyle": "black",
  1752. "navigationBarTitleText": "crmeb",
  1753. "navigationBarBackgroundColor": "#fff",
  1754. "backgroundColor": "#F8F8F8",
  1755. "titleNView": false,
  1756. "rpxCalcMaxDeviceWidth": 960,
  1757. "rpxCalcBaseDeviceWidth": 375,
  1758. "rpxCalcIncludeWidth": 750,
  1759. "app-plus": {
  1760. "scrollIndicator": "none" //隐藏所有页面滚动条
  1761. }
  1762. },
  1763. "tabBar": {
  1764. "custom": false,
  1765. "color": "#8E8E8E",
  1766. "selectedColor": "#FF6702",
  1767. "borderStyle": "white",
  1768. "backgroundColor": "#ffffff",
  1769. "list": [{
  1770. "pagePath": "pages/index/index",
  1771. "iconPath": "/static/tabBar/home-false.png",
  1772. "selectedIconPath": "/static/tabBar/home-true.png",
  1773. "text": "首页"
  1774. },
  1775. {
  1776. "pagePath": "pages/order/index",
  1777. "iconPath": "/static/tabBar/order-false.png",
  1778. "selectedIconPath": "static/tabBar/order-true.png",
  1779. "text": "订单"
  1780. },
  1781. {
  1782. "pagePath": "pages/user/index",
  1783. "iconPath": "static/tabBar/my-false.png",
  1784. "selectedIconPath": "static/tabBar/my-true.png",
  1785. "text": "我的"
  1786. }
  1787. ]
  1788. },
  1789. "condition": { //模式配置,仅开发期间生效
  1790. "current": 0, //当前激活的模式(list 的索引项)
  1791. "list": [{
  1792. "name": "", //模式名称
  1793. "path": "", //启动页面,必选
  1794. "query": "" //启动参数,在页面的onLoad函数里面得到
  1795. }]
  1796. }
  1797. }