pages.json 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^s-(.*)": "@/sheep/components/s-$1/s-$1.vue",
  6. "^su-(.*)": "@/sheep/ui/su-$1/su-$1.vue"
  7. }
  8. },
  9. "pages": [{
  10. "path": "pages/index/index",
  11. "aliasPath": "/",
  12. "style": {
  13. "navigationBarTitleText": "首页",
  14. "enablePullDownRefresh": true
  15. },
  16. "meta": {
  17. "auth": false,
  18. "sync": true,
  19. "title": "首页",
  20. "group": "商城"
  21. }
  22. },
  23. {
  24. "path": "pages/index/user",
  25. "style": {
  26. "navigationBarTitleText": "个人中心",
  27. "enablePullDownRefresh": true
  28. },
  29. "meta": {
  30. "sync": true,
  31. "title": "个人中心",
  32. "group": "商城"
  33. }
  34. },
  35. {
  36. "path": "pages/index/category",
  37. "style": {
  38. "navigationBarTitleText": "商品分类"
  39. },
  40. "meta": {
  41. "sync": true,
  42. "title": "商品分类",
  43. "group": "商城"
  44. }
  45. },
  46. {
  47. "path": "pages/index/cart",
  48. "style": {
  49. "navigationBarTitleText": "购物车"
  50. },
  51. "meta": {
  52. "sync": true,
  53. "title": "购物车",
  54. "group": "商城"
  55. }
  56. },
  57. {
  58. "path": "pages/index/login",
  59. "style": {
  60. "navigationBarTitleText": "登录"
  61. }
  62. },
  63. {
  64. "path": "pages/index/search",
  65. "style": {
  66. "navigationBarTitleText": "搜索"
  67. },
  68. "meta": {
  69. "sync": true,
  70. "title": "搜索",
  71. "group": "商城"
  72. }
  73. },
  74. {
  75. "path": "pages/index/page",
  76. "style": {
  77. "navigationBarTitleText": ""
  78. },
  79. "meta": {
  80. "auth": false,
  81. "sync": true,
  82. "title": "自定义页面",
  83. "group": "商城"
  84. }
  85. }
  86. ],
  87. "subPackages": [{
  88. "root": "pages/goods",
  89. "pages": [{
  90. "path": "index",
  91. "style": {
  92. "navigationBarTitleText": "商品详情"
  93. },
  94. "meta": {
  95. "sync": true,
  96. "title": "普通商品",
  97. "group": "商品"
  98. }
  99. },
  100. {
  101. "path": "groupon",
  102. "style": {
  103. "navigationBarTitleText": "拼团商品"
  104. },
  105. "meta": {
  106. "sync": true,
  107. "title": "拼团商品",
  108. "group": "商品"
  109. }
  110. },
  111. {
  112. "path": "seckill",
  113. "style": {
  114. "navigationBarTitleText": "秒杀商品"
  115. },
  116. "meta": {
  117. "sync": true,
  118. "title": "秒杀商品",
  119. "group": "商品"
  120. }
  121. },
  122. {
  123. "path": "list",
  124. "style": {
  125. "navigationBarTitleText": "商品列表"
  126. },
  127. "meta": {
  128. "sync": true,
  129. "title": "商品列表",
  130. "group": "商品"
  131. }
  132. },
  133. {
  134. "path": "comment/add",
  135. "style": {
  136. "navigationBarTitleText": "评价商品"
  137. },
  138. "meta": {
  139. "auth": true
  140. }
  141. },
  142. {
  143. "path": "comment/list",
  144. "style": {
  145. "navigationBarTitleText": "商品评价"
  146. }
  147. }
  148. ]
  149. },
  150. {
  151. "root": "pages/order",
  152. "pages": [{
  153. "path": "detail",
  154. "style": {
  155. "navigationBarTitleText": "订单详情"
  156. },
  157. "meta": {
  158. "auth": true,
  159. "title": "订单详情"
  160. }
  161. },
  162. {
  163. "path": "confirm",
  164. "style": {
  165. "navigationBarTitleText": "确认订单"
  166. },
  167. "meta": {
  168. "auth": true,
  169. "title": "确认订单"
  170. }
  171. },
  172. {
  173. "path": "list",
  174. "style": {
  175. "navigationBarTitleText": "我的订单",
  176. "enablePullDownRefresh": true
  177. },
  178. "meta": {
  179. "auth": true,
  180. "sync": true,
  181. "title": "用户订单",
  182. "group": "订单中心"
  183. }
  184. },
  185. {
  186. "path": "aftersale/apply",
  187. "style": {
  188. "navigationBarTitleText": "申请售后"
  189. },
  190. "meta": {
  191. "auth": true,
  192. "title": "申请售后"
  193. }
  194. },
  195. {
  196. "path": "aftersale/return-delivery",
  197. "style": {
  198. "navigationBarTitleText": "退货物流"
  199. },
  200. "meta": {
  201. "auth": true,
  202. "title": "退货物流"
  203. }
  204. },
  205. {
  206. "path": "aftersale/list",
  207. "style": {
  208. "navigationBarTitleText": "售后列表"
  209. },
  210. "meta": {
  211. "auth": true,
  212. "sync": true,
  213. "title": "售后订单",
  214. "group": "订单中心"
  215. }
  216. },
  217. {
  218. "path": "aftersale/detail",
  219. "style": {
  220. "navigationBarTitleText": "售后详情"
  221. },
  222. "meta": {
  223. "auth": true,
  224. "title": "售后详情"
  225. }
  226. },
  227. {
  228. "path": "aftersale/log",
  229. "style": {
  230. "navigationBarTitleText": "售后进度"
  231. },
  232. "meta": {
  233. "auth": true,
  234. "title": "售后进度"
  235. }
  236. },
  237. {
  238. "path": "express/log",
  239. "style": {
  240. "navigationBarTitleText": "物流轨迹"
  241. },
  242. "meta": {
  243. "auth": true,
  244. "title": "物流轨迹"
  245. }
  246. },
  247. {
  248. "path" : "otherlist",
  249. "style" :
  250. {
  251. "navigationBarTitleText" : "",
  252. "enablePullDownRefresh" : false
  253. }
  254. }
  255. ]
  256. },
  257. {
  258. "root": "pages/user",
  259. "pages": [{
  260. "path": "info",
  261. "style": {
  262. "navigationBarTitleText": "我的信息"
  263. },
  264. "meta": {
  265. "auth": true,
  266. "sync": true,
  267. "title": "用户信息",
  268. "group": "用户中心"
  269. }
  270. },
  271. {
  272. "path": "setting",
  273. "style": {
  274. "navigationBarTitleText": "用户设置"
  275. },
  276. "meta": {
  277. "auth": true,
  278. "sync": true,
  279. "title": "用户设置",
  280. "group": "用户中心"
  281. }
  282. },
  283. {
  284. "path": "qrcode-share",
  285. "style": {
  286. "navigationBarTitleText": "我的二维码/分享页"
  287. },
  288. "meta": {
  289. "auth": true,
  290. "sync": true,
  291. "title": "我的二维码/分享页",
  292. "group": "用户中心"
  293. }
  294. },
  295. {
  296. "path": "goods-collect",
  297. "style": {
  298. "navigationBarTitleText": "我的收藏"
  299. },
  300. "meta": {
  301. "auth": true,
  302. "sync": true,
  303. "title": "商品收藏",
  304. "group": "用户中心"
  305. }
  306. },
  307. {
  308. "path": "goods-log",
  309. "style": {
  310. "navigationBarTitleText": "我的足迹"
  311. },
  312. "meta": {
  313. "auth": true,
  314. "sync": true,
  315. "title": "浏览记录",
  316. "group": "用户中心"
  317. }
  318. },
  319. {
  320. "path": "address/list",
  321. "style": {
  322. "navigationBarTitleText": "收货地址"
  323. },
  324. "meta": {
  325. "auth": true,
  326. "sync": true,
  327. "title": "地址管理",
  328. "group": "用户中心"
  329. }
  330. },
  331. {
  332. "path": "invoice/edit",
  333. "style": {
  334. "navigationBarTitleText": "发票抬头编辑"
  335. },
  336. "meta": {
  337. "auth": true,
  338. "title": "发票抬头"
  339. }
  340. },
  341. {
  342. "path": "invoice/list",
  343. "style": {
  344. "navigationBarTitleText": "发票抬头管理"
  345. },
  346. "meta": {
  347. "auth": true,
  348. "sync": true,
  349. "title": "发票抬头管理",
  350. "group": "用户中心"
  351. }
  352. },
  353. {
  354. "path": "address/edit",
  355. "style": {
  356. "navigationBarTitleText": "编辑地址"
  357. },
  358. "meta": {
  359. "auth": true,
  360. "title": "编辑地址"
  361. }
  362. },
  363. {
  364. "path": "wallet/money",
  365. "style": {
  366. "navigationBarTitleText": "我的余额"
  367. },
  368. "meta": {
  369. "auth": true,
  370. "sync": true,
  371. "title": "用户余额",
  372. "group": "用户中心"
  373. }
  374. },
  375. {
  376. "path": "wallet/score",
  377. "style": {
  378. "navigationBarTitleText": "我的积分"
  379. },
  380. "meta": {
  381. "auth": true,
  382. "sync": true,
  383. "title": "用户积分",
  384. "group": "用户中心"
  385. }
  386. },
  387. {
  388. "path": "wallet/scoreToMoney",
  389. "style": {
  390. "navigationBarTitleText": "积分兑换"
  391. },
  392. "meta": {
  393. "auth": true,
  394. "sync": true,
  395. "title": "积分兑换",
  396. "group": "用户中心"
  397. }
  398. },
  399. {
  400. "path": "wallet/team",
  401. "style": {
  402. "navigationBarTitleText": "团队"
  403. },
  404. "meta": {
  405. "auth": true,
  406. "sync": true,
  407. "title": "团队",
  408. "group": "用户中心"
  409. }
  410. }
  411. ]
  412. },
  413. {
  414. "root": "pages/commission",
  415. "pages": [{
  416. "path": "index",
  417. "style": {
  418. "navigationBarTitleText": "分销"
  419. },
  420. "meta": {
  421. "auth": true,
  422. "sync": true,
  423. "title": "分销中心",
  424. "group": "分销商城"
  425. }
  426. },
  427. {
  428. "path": "wallet",
  429. "style": {
  430. "navigationBarTitleText": "我的佣金"
  431. },
  432. "meta": {
  433. "auth": true,
  434. "sync": true,
  435. "title": "用户佣金",
  436. "group": "分销中心"
  437. }
  438. },
  439. {
  440. "path": "goods",
  441. "style": {
  442. "navigationBarTitleText": "推广商品"
  443. },
  444. "meta": {
  445. "auth": true,
  446. "sync": true,
  447. "title": "推广商品",
  448. "group": "分销商城"
  449. }
  450. },
  451. {
  452. "path": "order",
  453. "style": {
  454. "navigationBarTitleText": "分销订单"
  455. },
  456. "meta": {
  457. "auth": true,
  458. "sync": true,
  459. "title": "分销订单",
  460. "group": "分销商城"
  461. }
  462. },
  463. {
  464. "path": "team",
  465. "style": {
  466. "navigationBarTitleText": "我的团队"
  467. },
  468. "meta": {
  469. "auth": true,
  470. "sync": true,
  471. "title": "我的团队",
  472. "group": "分销商城"
  473. }
  474. }, {
  475. "path": "promoter",
  476. "style": {
  477. "navigationBarTitleText": "推广人排行榜"
  478. },
  479. "meta": {
  480. "auth": true,
  481. "sync": true,
  482. "title": "推广人排行榜",
  483. "group": "分销商城"
  484. }
  485. }, {
  486. "path": "commission-ranking",
  487. "style": {
  488. "navigationBarTitleText": "佣金排行榜"
  489. },
  490. "meta": {
  491. "auth": true,
  492. "sync": true,
  493. "title": "佣金排行榜",
  494. "group": "分销商城"
  495. }
  496. }, {
  497. "path": "withdraw",
  498. "style": {
  499. "navigationBarTitleText": "申请提现"
  500. },
  501. "meta": {
  502. "auth": true,
  503. "sync": true,
  504. "title": "申请提现",
  505. "group": "分销商城"
  506. }
  507. }
  508. ]
  509. },
  510. {
  511. "root": "pages/app",
  512. "pages": [{
  513. "path": "sign",
  514. "style": {
  515. "navigationBarTitleText": "签到中心"
  516. },
  517. "meta": {
  518. "auth": true,
  519. "sync": true,
  520. "title": "签到中心",
  521. "group": "应用"
  522. }
  523. }]
  524. },
  525. {
  526. "root": "pages/shop",
  527. "pages": [{
  528. "path": "index",
  529. "style": {
  530. "navigationBarTitleText": "店铺首页"
  531. },
  532. "meta": {
  533. "auth": true,
  534. "sync": true,
  535. "title": "店铺首页",
  536. "group": "应用"
  537. }
  538. }]
  539. },
  540. {
  541. "root": "pages/public",
  542. "pages": [{
  543. "path": "setting",
  544. "style": {
  545. "navigationBarTitleText": "系统设置"
  546. },
  547. "meta": {
  548. "sync": true,
  549. "title": "系统设置",
  550. "group": "通用"
  551. }
  552. },
  553. {
  554. "path": "richtext",
  555. "style": {
  556. "navigationBarTitleText": "富文本"
  557. },
  558. "meta": {
  559. "sync": true,
  560. "title": "富文本",
  561. "group": "通用"
  562. }
  563. },
  564. {
  565. "path": "faq",
  566. "style": {
  567. "navigationBarTitleText": "常见问题"
  568. },
  569. "meta": {
  570. "sync": true,
  571. "title": "常见问题",
  572. "group": "通用"
  573. }
  574. },
  575. {
  576. "path": "error",
  577. "style": {
  578. "navigationBarTitleText": "错误页面"
  579. }
  580. },
  581. {
  582. "path": "webview",
  583. "style": {
  584. "navigationBarTitleText": ""
  585. }
  586. }
  587. ]
  588. },
  589. {
  590. "root": "pages/coupon",
  591. "pages": [{
  592. "path": "list",
  593. "style": {
  594. "navigationBarTitleText": "领券中心"
  595. },
  596. "meta": {
  597. "sync": true,
  598. "title": "领券中心",
  599. "group": "优惠券"
  600. }
  601. },
  602. {
  603. "path": "detail",
  604. "style": {
  605. "navigationBarTitleText": "优惠券"
  606. },
  607. "meta": {
  608. "auth": false,
  609. "sync": true,
  610. "title": "优惠券详情",
  611. "group": "优惠券"
  612. }
  613. }
  614. ]
  615. },
  616. {
  617. "root": "pages/chat",
  618. "pages": [{
  619. "path": "index",
  620. "style": {
  621. "navigationBarTitleText": "客服"
  622. },
  623. "meta": {
  624. "auth": true,
  625. "sync": true,
  626. "title": "客服",
  627. "group": "客服"
  628. }
  629. },
  630. {
  631. "path" : "speechtotext",
  632. "style" :
  633. {
  634. "navigationBarTitleText" : "语音转文字",
  635. "enablePullDownRefresh" : false
  636. },
  637. "meta": {
  638. "auth": true,
  639. "sync": true,
  640. "title": "语音转文字",
  641. "group": "语音转文字"
  642. }
  643. }
  644. ]
  645. },
  646. {
  647. "root": "pages/pay",
  648. "pages": [{
  649. "path": "index",
  650. "style": {
  651. "navigationBarTitleText": "收银台"
  652. }
  653. },
  654. {
  655. "path": "result",
  656. "style": {
  657. "navigationBarTitleText": "支付结果"
  658. }
  659. },
  660. {
  661. "path": "recharge",
  662. "style": {
  663. "navigationBarTitleText": "充值余额"
  664. },
  665. "meta": {
  666. "auth": true,
  667. "sync": true,
  668. "title": "充值余额",
  669. "group": "支付"
  670. }
  671. },
  672. {
  673. "path": "recharge-log",
  674. "style": {
  675. "navigationBarTitleText": "充值记录"
  676. },
  677. "meta": {
  678. "auth": true,
  679. "sync": true,
  680. "title": "充值记录",
  681. "group": "支付"
  682. }
  683. }
  684. ]
  685. },
  686. {
  687. "root": "pages/activity",
  688. "pages": [{
  689. "path": "groupon/detail",
  690. "style": {
  691. "navigationBarTitleText": "拼团详情"
  692. }
  693. },
  694. {
  695. "path": "groupon/order",
  696. "style": {
  697. "navigationBarTitleText": "我的拼团",
  698. "enablePullDownRefresh": true
  699. },
  700. "meta": {
  701. "auth": true,
  702. "sync": true,
  703. "title": "拼团订单",
  704. "group": "营销活动"
  705. }
  706. },
  707. {
  708. "path": "index",
  709. "style": {
  710. "navigationBarTitleText": "营销商品"
  711. },
  712. "meta": {
  713. "sync": true,
  714. "title": "营销商品",
  715. "group": "营销活动"
  716. }
  717. },
  718. {
  719. "path": "groupon/list",
  720. "style": {
  721. "navigationBarTitleText": "拼团活动"
  722. },
  723. "meta": {
  724. "sync": true,
  725. "title": "拼团活动",
  726. "group": "营销活动"
  727. }
  728. },
  729. {
  730. "path": "seckill/list",
  731. "style": {
  732. "navigationBarTitleText": "秒杀活动"
  733. },
  734. "meta": {
  735. "sync": true,
  736. "title": "秒杀活动",
  737. "group": "营销活动"
  738. }
  739. },
  740. {
  741. "path": "bargain/list",
  742. "style": {
  743. "navigationBarTitleText": "砍价列表"
  744. },
  745. "meta": {
  746. "sync": true,
  747. "title": "砍价列表",
  748. "group": "营销活动"
  749. }
  750. },
  751. {
  752. "path": "bargain/detail",
  753. "style": {
  754. "navigationBarTitleText": "砍价详情"
  755. },
  756. "meta": {
  757. "sync": true,
  758. "title": "砍价详情",
  759. "group": "营销活动"
  760. }
  761. }
  762. ]
  763. }
  764. ],
  765. "globalStyle": {
  766. "navigationBarTextStyle": "black",
  767. "navigationBarTitleText": "中星",
  768. "navigationBarBackgroundColor": "#FFFFFF",
  769. "backgroundColor": "#FFFFFF",
  770. "navigationStyle": "custom"
  771. },
  772. "tabBar": {
  773. "list": [{
  774. "pagePath": "pages/index/index"
  775. },
  776. {
  777. "pagePath": "pages/index/cart"
  778. },
  779. {
  780. "pagePath": "pages/index/user"
  781. }
  782. ]
  783. }
  784. }