pages.json 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "navigationStyle": "custom",
  8. "app-plus": {
  9. "scrollIndicator": false //禁用原生导航栏
  10. }
  11. }
  12. },
  13. {
  14. "path": "pages/order_addcart/order_addcart",
  15. "style": {
  16. "navigationBarTitleText": "购物车"
  17. }
  18. },
  19. {
  20. "path": "pages/user/index",
  21. "style": {
  22. "navigationBarTitleText": "个人中心",
  23. "navigationBarBackgroundColor": "#EB3C3C"
  24. // #ifdef MP
  25. ,
  26. "navigationBarTextStyle": "#fff"
  27. // #endif
  28. }
  29. },
  30. {
  31. "path": "pages/goods_details/index",
  32. "style": {
  33. "navigationStyle": "custom"
  34. // #ifdef MP
  35. ,
  36. "navigationBarTextStyle": "#fff"
  37. // #endif
  38. }
  39. },
  40. {
  41. "path": "pages/goods_cate/goods_cate",
  42. "style": {
  43. "navigationBarTitleText": "商品分类"
  44. }
  45. },
  46. {
  47. "path": "pages/news_list/index",
  48. "style": {
  49. "navigationBarTitleText": "资讯"
  50. }
  51. },
  52. {
  53. "path": "pages/news_details/index",
  54. "style": {
  55. "navigationBarTitleText": "资讯详情"
  56. }
  57. },
  58. {
  59. "path": "pages/auth/index",
  60. "style": {
  61. "navigationBarTitleText": "CRMEB"
  62. }
  63. },
  64. {
  65. "path": "pages/order_pay_status/index",
  66. "style": {
  67. "navigationBarTitleText": "支付成功"
  68. }
  69. },
  70. {
  71. "path": "pages/error/index",
  72. "style": {
  73. "navigationBarTitleText": "网站已关闭"
  74. }
  75. },
  76. {
  77. "path": "pages/order_details/index",
  78. "style": {
  79. "navigationBarTitleText": "订单详情",
  80. "navigationBarBackgroundColor": "#e93323"
  81. // #ifdef MP
  82. ,
  83. "navigationBarTextStyle": "#fff"
  84. // #endif
  85. }
  86. },
  87. {
  88. "path": "pages/order_details/stay",
  89. "style": {
  90. "navigationBarTitleText": "订单详情",
  91. "navigationBarBackgroundColor": "#e93323"
  92. // #ifdef MP
  93. ,
  94. "navigationBarTextStyle": "#fff"
  95. // #endif
  96. }
  97. },
  98. {
  99. "path": "pages/order_pay_back/index",
  100. "style": {
  101. "navigationBarTitleText": "支付提示"
  102. }
  103. }
  104. ],
  105. "subPackages": [{
  106. "root": "pages/users",
  107. "name": "users",
  108. "pages": [{
  109. "path": "retrievePassword/index",
  110. "style": {
  111. "navigationBarTitleText": "忘记密码"
  112. }
  113. },
  114. {
  115. "path": "user_info/index",
  116. "style": {
  117. "navigationBarTitleText": "个人资料"
  118. }
  119. },
  120. {
  121. "path": "user_get_coupon/index",
  122. "style": {
  123. "navigationBarTitleText": "领取优惠券"
  124. }
  125. },
  126. {
  127. "path": "user_goods_collection/index",
  128. "style": {
  129. "navigationBarTitleText": "收藏商品"
  130. }
  131. },
  132. {
  133. "path": "user_sgin/index",
  134. "style": {
  135. "navigationBarTitleText": "签到"
  136. }
  137. },
  138. {
  139. "path": "user_sgin_list/index",
  140. "style": {
  141. "navigationBarTitleText": "签到记录"
  142. }
  143. },
  144. // {
  145. // "path": "user_money/index",
  146. // "style": {
  147. // "navigationBarTitleText": "我的账户"
  148. // }
  149. // },
  150. {
  151. "path": "user_bill/index",
  152. "style": {
  153. "navigationBarTitleText": "账单明细"
  154. }
  155. },
  156. {
  157. "path": "user_integral/index",
  158. "style": {
  159. "navigationBarTitleText": "积分详情"
  160. }
  161. },
  162. {
  163. "path": "user_coupon/index",
  164. "style": {
  165. "navigationBarTitleText": "我的优惠券"
  166. }
  167. },
  168. {
  169. "path": "user_spread_user/index",
  170. "style": {
  171. "navigationBarTitleText": "我的推广",
  172. "navigationBarBackgroundColor": "#e93323"
  173. // #ifdef MP
  174. ,
  175. "navigationBarTextStyle": "#fff"
  176. // #endif
  177. }
  178. },
  179. {
  180. "path": "user_spread_code/index",
  181. "style": {
  182. "navigationBarTitleText": "分销海报"
  183. }
  184. },
  185. {
  186. "path": "user_spread_money/index",
  187. "style": {
  188. "navigationBarTitleText": "佣金记录",
  189. "navigationBarBackgroundColor": "#e93323"
  190. // #ifdef MP
  191. ,
  192. "navigationBarTextStyle": "#fff"
  193. // #endif
  194. }
  195. },
  196. {
  197. "path": "user_cash/index",
  198. "style": {
  199. "navigationBarTitleText": "提现",
  200. "navigationBarBackgroundColor": "#e93323"
  201. // #ifdef MP
  202. ,
  203. "navigationBarTextStyle": "#fff"
  204. // #endif
  205. }
  206. },
  207. {
  208. "path": "user_address_list/index",
  209. "style": {
  210. "navigationBarTitleText": "地址管理"
  211. }
  212. },
  213. {
  214. "path": "user_address/index",
  215. "style": {
  216. "navigationBarTitleText": "添加地址"
  217. }
  218. },
  219. {
  220. "path": "user_phone/index",
  221. "style": {
  222. "navigationBarTitleText": "绑定手机",
  223. "navigationBarBackgroundColor": "#e93323"
  224. // #ifdef MP
  225. ,
  226. "navigationBarTextStyle": "#fff"
  227. // #endif
  228. }
  229. },
  230. {
  231. "path": "user_payment/index",
  232. "style": {
  233. "navigationBarTitleText": "余额充值"
  234. }
  235. },
  236. {
  237. "path": "user_pwd_edit/index",
  238. "style": {
  239. "navigationBarTitleText": "修改密码",
  240. "navigationBarBackgroundColor": "#e93323"
  241. // #ifdef MP
  242. ,
  243. "navigationBarTextStyle": "#fff"
  244. // #endif
  245. }
  246. },
  247. {
  248. "path": "order_confirm/index",
  249. "style": {
  250. "navigationBarTitleText": "提交订单"
  251. }
  252. },
  253. {
  254. "path": "goods_details_store/index",
  255. "style": {
  256. "navigationBarTitleText": "门店列表"
  257. }
  258. },
  259. {
  260. "path": "promoter-list/index",
  261. "style": {
  262. "navigationBarTitleText": "推广人列表",
  263. "navigationBarBackgroundColor": "#e93323"
  264. // #ifdef MP
  265. ,
  266. "navigationBarTextStyle": "#fff"
  267. // #endif
  268. }
  269. },
  270. {
  271. "path": "promoter-order/index",
  272. "style": {
  273. "navigationBarTitleText": "推广人订单",
  274. "navigationBarBackgroundColor": "#e93323"
  275. // #ifdef MP
  276. ,
  277. "navigationBarTextStyle": "#fff"
  278. // #endif
  279. }
  280. },
  281. {
  282. "path": "promoter_rank/index",
  283. "style": {
  284. "navigationBarTitleText": "推广人排行",
  285. "navigationBarBackgroundColor": "#e93323"
  286. // #ifdef MP
  287. ,
  288. "navigationBarTextStyle": "#fff"
  289. // #endif
  290. }
  291. },
  292. {
  293. "path": "commission_rank/index",
  294. "style": {
  295. "navigationBarTitleText": "佣金排行",
  296. "navigationBarBackgroundColor": "#e93323"
  297. // #ifdef MP
  298. ,
  299. "navigationBarTextStyle": "#fff"
  300. // #endif
  301. }
  302. },
  303. {
  304. "path": "order_list/index",
  305. "style": {
  306. "navigationBarTitleText": "我的订单"
  307. }
  308. },
  309. {
  310. "path": "presell_order_list/index",
  311. "style": {
  312. "navigationBarTitleText": "预售订单"
  313. }
  314. },
  315. {
  316. "path": "goods_logistics/index",
  317. "style": {
  318. "navigationBarTitleText": "物流信息"
  319. }
  320. },
  321. {
  322. "path": "user_return_list/index",
  323. "style": {
  324. "navigationBarTitleText": "退货列表"
  325. }
  326. },
  327. {
  328. "path": "goods_return/index",
  329. "style": {
  330. "navigationBarTitleText": "申请退货"
  331. }
  332. },
  333. {
  334. "path": "login/index",
  335. "style": {
  336. "navigationBarTitleText": "登录"
  337. }
  338. },
  339. {
  340. "path": "goods_comment_list/index",
  341. "style": {
  342. "navigationBarTitleText": "商品评分"
  343. }
  344. },
  345. {
  346. "path": "goods_comment_con/index",
  347. "style": {
  348. "navigationBarTitleText": "商品评价"
  349. }
  350. },
  351. {
  352. "path": "feedback/index",
  353. "style": {
  354. "navigationBarTitleText": "问题反馈",
  355. "backgroundColor": "#FFFFFF"
  356. }
  357. },
  358. {
  359. "path": "feedback/list",
  360. "style": {
  361. "navigationBarTitleText": "反馈记录",
  362. "backgroundColor": "#FFFFFF"
  363. }
  364. },
  365. {
  366. "path": "feedback/detail",
  367. "style": {
  368. "navigationBarTitleText": "反馈内容",
  369. "backgroundColor": "#FFFFFF"
  370. }
  371. },
  372. {
  373. "path": "refund/index",
  374. "style": {
  375. "navigationBarTitleText": "批量退款",
  376. "backgroundColor": "#FFFFFF"
  377. }
  378. },
  379. {
  380. "path": "refund/confirm",
  381. "style": {
  382. "navigationBarTitleText": "申请退款",
  383. "backgroundColor": "#FFFFFF"
  384. }
  385. },
  386. {
  387. "path": "refund/detail",
  388. "style": {
  389. "navigationBarTitleText": "退款详情",
  390. "backgroundColor": "#FFFFFF"
  391. }
  392. },
  393. {
  394. "path": "refund/select",
  395. "style": {
  396. "navigationBarTitleText": "选择服务类型",
  397. "backgroundColor": "#FFFFFF"
  398. }
  399. },
  400. {
  401. "path": "refund/goods/index",
  402. "style": {
  403. "navigationBarTitleText": "退货退款",
  404. "backgroundColor": "#FFFFFF"
  405. }
  406. },
  407. {
  408. "path": "refund/list",
  409. "style": {
  410. "navigationBarTitleText": "退货列表",
  411. "backgroundColor": "#FFFFFF"
  412. }
  413. },
  414. {
  415. "path": "refund/logistics",
  416. "style": {
  417. "navigationBarTitleText": "物流信息",
  418. "backgroundColor": "#FFFFFF"
  419. }
  420. },
  421. {
  422. "path": "user_store_attention/index",
  423. "style": {
  424. "navigationBarTitleText": "关注店铺",
  425. "backgroundColor": "#FFFFFF"
  426. }
  427. },
  428. {
  429. "path": "browsingHistory/index",
  430. "style": {
  431. "navigationBarTitleText": "浏览记录",
  432. "backgroundColor": "#FFFFFF"
  433. }
  434. },
  435. {
  436. "path": "distributor/index",
  437. "style": {
  438. "navigationBarTitleText": "成为分销",
  439. "backgroundColor": "#FFFFFF"
  440. }
  441. },
  442. {
  443. "path": "user_invoice_list/index",
  444. "style": {
  445. "navigationBarTitleText": "发票管理"
  446. }
  447. },
  448. {
  449. "path": "user_invoice_form/index",
  450. "style": {
  451. "navigationBarTitleText": "添加新发票"
  452. }
  453. },
  454. {
  455. "path": "user_invoicing/index",
  456. "style": {
  457. "navigationBarTitleText": "开具发票"
  458. }
  459. },
  460. {
  461. "path": "user_invoice_order/index",
  462. "style": {
  463. "navigationBarTitleText": "订单详情",
  464. "navigationBarBackgroundColor": "#e93323"
  465. // #ifdef MP
  466. ,
  467. "navigationBarTextStyle": "#fff"
  468. // #endif
  469. }
  470. }
  471. ]
  472. },
  473. {
  474. "root": "pages/store",
  475. "name": "store",
  476. "pages": [{
  477. "path": "home/index",
  478. "style": {
  479. "navigationStyle": "custom",
  480. "navigationBarTitleText": "店铺首页"
  481. // #ifdef MP
  482. ,
  483. "navigationBarTextStyle": "#FFFFFF"
  484. // #endif
  485. }
  486. },
  487. {
  488. "path": "detail/index",
  489. "style": {
  490. "navigationBarTitleText": "店铺详情"
  491. }
  492. },
  493. {
  494. "path": "list/index",
  495. "style": {
  496. "navigationBarTitleText": "商品列表"
  497. }
  498. },
  499. {
  500. "path": "settled/index",
  501. "style": {
  502. "navigationBarTitleText": "商家入驻"
  503. }
  504. }, {
  505. "path": "applicationRecord/index",
  506. "style": {
  507. "navigationBarTitleText": "申请记录"
  508. }
  509. }, {
  510. "path": "merchantDetails/index",
  511. "style": {
  512. "navigationBarTitleText": "审核通过"
  513. }
  514. }, {
  515. "path": "shopStreet/index",
  516. "style": {
  517. "navigationBarTitleText": "店铺街"
  518. }
  519. }
  520. ]
  521. },
  522. {
  523. "root": "pages/admin",
  524. "name": "adminOrder",
  525. "pages": [{
  526. "path": "order/index",
  527. "style": {
  528. "navigationBarTitleText": "订单首页"
  529. }
  530. },
  531. {
  532. "path": "orderList/index",
  533. "style": {
  534. "navigationBarTitleText": "订单列表"
  535. }
  536. },
  537. {
  538. "path": "orderDetail/index",
  539. "style": {
  540. "navigationBarTitleText": "订单详情"
  541. }
  542. },
  543. {
  544. "path": "delivery/index",
  545. "style": {
  546. "navigationBarTitleText": "订单发货"
  547. }
  548. },
  549. {
  550. "path": "statistics/index",
  551. "style": {
  552. "navigationBarTitleText": "订单数据统计"
  553. }
  554. },
  555. {
  556. "path": "order_cancellation/index",
  557. "style": {
  558. "navigationBarTitleText": "订单核销"
  559. }
  560. }
  561. ]
  562. },
  563. {
  564. "root": "pages/columnGoods",
  565. "name": "columnGoods",
  566. "pages": [{
  567. "path": "HotNewGoods/index",
  568. "style": {
  569. "navigationBarTitleText": "精品推荐"
  570. }
  571. },
  572. {
  573. "path": "goods_list/index",
  574. "style": {
  575. "navigationBarTitleText": "商品列表"
  576. }
  577. },
  578. {
  579. "path": "goods_search/index",
  580. "style": {
  581. "navigationBarTitleText": "搜索商品"
  582. }
  583. },
  584. {
  585. "path": "goods_search_con/index",
  586. "style": {
  587. "navigationBarTitleText": "搜索商品"
  588. }
  589. }
  590. ]
  591. // ,"plugins": {
  592. // "live-player-plugin": {
  593. // "version": "1.3.0",
  594. // "provider": "wx2b03c6e691cd7370"
  595. // }
  596. // }
  597. },
  598. {
  599. "root": "pages/chat",
  600. "name": "chat",
  601. "pages": [{
  602. "path": "customer_list/index",
  603. "style": {
  604. "navigationBarTitleText": "消息中心"
  605. }
  606. },
  607. {
  608. "path": "customer_list/chat",
  609. "style": {
  610. "navigationBarTitleText": "客服聊天"
  611. }
  612. }
  613. ]
  614. }
  615. // {
  616. // "root": "pages/activity",
  617. // "name": "activity",
  618. // "pages": [{
  619. // "path": "goods_seckill/index",
  620. // "style": {
  621. // "navigationBarTitleText": "限时秒杀"
  622. // // #ifdef MP
  623. // ,
  624. // "navigationBarTextStyle": "#fff",
  625. // "navigationBarBackgroundColor": "#e93323"
  626. // // #endif
  627. // }
  628. // },
  629. // {
  630. // "path": "goods_seckill_details/index",
  631. // "style": {
  632. // "navigationBarTitleText": "秒杀详情"
  633. // // #ifdef MP
  634. // ,
  635. // "navigationStyle": "custom"
  636. // // #endif
  637. // }
  638. // },
  639. // // {
  640. // // "path": "liveBroadcast/index",
  641. // // "style": {
  642. // // "navigationBarTitleText": "直播列表",
  643. // // "navigationBarBackgroundColor": "#F2F2F2"
  644. // // }
  645. // // },
  646. // {
  647. // "path": "presell/index",
  648. // "style": {
  649. // "navigationBarTitleText": "预售"
  650. // // #ifdef MP
  651. // ,
  652. // "navigationBarTextStyle": "#fff",
  653. // "navigationBarBackgroundColor": "#FF7F21"
  654. // // #endif
  655. // }
  656. // },
  657. // {
  658. // "path": "presell_details/index",
  659. // "style": {
  660. // "navigationStyle": "custom"
  661. // // #ifdef MP
  662. // ,
  663. // "navigationBarTextStyle": "#fff"
  664. // // #endif
  665. // }
  666. // },
  667. // {
  668. // "path": "combination/index",
  669. // "style": {
  670. // "navigationBarTitleText": "拼团"
  671. // // #ifdef MP
  672. // ,
  673. // "navigationBarTextStyle": "#fff",
  674. // "navigationStyle":"custom"
  675. // // "navigationBarBackgroundColor": "#fff"
  676. // // #endif
  677. // }
  678. // },
  679. // {
  680. // "path": "combination_details/index",
  681. // "style": {
  682. // "navigationBarTitleText": "拼团详情",
  683. // "navigationStyle": "custom"
  684. // // #ifdef MP
  685. // ,
  686. // "navigationBarTextStyle": "#fff"
  687. // // #endif
  688. // }
  689. // },
  690. // {
  691. // "path": "combination_status/index",
  692. // "style": {
  693. // "navigationBarTitleText": "拼团状态"
  694. // }
  695. // },
  696. // {
  697. // "path": "assist/index",
  698. // "style": {
  699. // "navigationBarTitleText": "助力列表"
  700. // // #ifdef MP
  701. // ,
  702. // "navigationBarTextStyle": "#fff",
  703. // "navigationBarBackgroundColor": "#e93323"
  704. // // #endif
  705. // }
  706. // },
  707. // {
  708. // "path": "assist_detail/index",
  709. // "style": {
  710. // "navigationBarTitleText": "发起助力"
  711. // // #ifdef MP
  712. // ,
  713. // "navigationBarTextStyle": "#fff",
  714. // "navigationBarBackgroundColor": "#e93323"
  715. // // #endif
  716. // }
  717. // },
  718. // {
  719. // "path": "assist_record/index",
  720. // "style": {
  721. // "navigationBarTitleText": "助力记录"
  722. // // #ifdef MP
  723. // ,
  724. // "navigationBarTextStyle": "#fff",
  725. // "navigationBarBackgroundColor": "#e93323"
  726. // // #endif
  727. // }
  728. // }
  729. // ]
  730. // }
  731. ],
  732. "globalStyle": {
  733. "navigationBarTextStyle": "black",
  734. "navigationBarTitleText": "加载中...",
  735. "navigationBarBackgroundColor": "#fff",
  736. "backgroundColor": "#F8F8F8",
  737. "titleNView": false
  738. },
  739. "tabBar": {
  740. "color": "#282828",
  741. "selectedColor": "#E93323",
  742. "borderStyle": "white",
  743. "backgroundColor": "#ffffff",
  744. "list": [{
  745. "pagePath": "pages/index/index",
  746. "iconPath": "./static/images/1-001.png",
  747. "selectedIconPath": "./static/images/1-002.png",
  748. "text": "首页"
  749. },
  750. {
  751. "pagePath": "pages/goods_cate/goods_cate",
  752. "iconPath": "./static/images/2-001.png",
  753. "selectedIconPath": "./static/images/2-002.png",
  754. "text": "分类"
  755. },
  756. {
  757. "pagePath": "pages/order_addcart/order_addcart",
  758. "iconPath": "./static/images/3-001.png",
  759. "selectedIconPath": "./static/images/3-002.png",
  760. "text": "购物车"
  761. },
  762. {
  763. "pagePath": "pages/user/index",
  764. "iconPath": "./static/images/4-001.png",
  765. "selectedIconPath": "./static/images/4-002.png",
  766. "text": "我的"
  767. }
  768. ]
  769. },
  770. "condition": { //模式配置,仅开发期间生效
  771. "current": 0, //当前激活的模式(list 的索引项)
  772. "list": [{
  773. "name": "", //模式名称
  774. "path": "", //启动页面,必选
  775. "query": "" //启动参数,在页面的onLoad函数里面得到
  776. }]
  777. },
  778. "sitemapLocation": "sitemap.json"
  779. }