pages.json 33 KB

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