pages.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  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. {
  91. "path": "index",
  92. "style": {
  93. "navigationBarTitleText": "商品详情"
  94. },
  95. "meta": {
  96. "sync": true,
  97. "title": "普通商品",
  98. "group": "商品"
  99. }
  100. },
  101. {
  102. "path": "groupon",
  103. "style": {
  104. "navigationBarTitleText": "拼团商品"
  105. },
  106. "meta": {
  107. "sync": true,
  108. "title": "拼团商品",
  109. "group": "商品"
  110. }
  111. },
  112. {
  113. "path": "seckill",
  114. "style": {
  115. "navigationBarTitleText": "秒杀商品"
  116. },
  117. "meta": {
  118. "sync": true,
  119. "title": "秒杀商品",
  120. "group": "商品"
  121. }
  122. },
  123. {
  124. "path": "list",
  125. "style": {
  126. "navigationBarTitleText": "商品列表"
  127. },
  128. "meta": {
  129. "sync": true,
  130. "title": "商品列表",
  131. "group": "商品"
  132. }
  133. },
  134. {
  135. "path": "comment/add",
  136. "style": {
  137. "navigationBarTitleText": "评价商品"
  138. },
  139. "meta": {
  140. "auth": true
  141. }
  142. },
  143. {
  144. "path": "comment/list",
  145. "style": {
  146. "navigationBarTitleText": "商品评价"
  147. }
  148. }
  149. ]
  150. },
  151. {
  152. "root": "pages/order",
  153. "pages": [
  154. {
  155. "path": "detail",
  156. "style": {
  157. "navigationBarTitleText": "订单详情"
  158. },
  159. "meta": {
  160. "auth": true,
  161. "title": "订单详情"
  162. }
  163. },
  164. {
  165. "path": "confirm",
  166. "style": {
  167. "navigationBarTitleText": "确认订单"
  168. },
  169. "meta": {
  170. "auth": true,
  171. "title": "确认订单"
  172. }
  173. },
  174. {
  175. "path": "list",
  176. "style": {
  177. "navigationBarTitleText": "我的订单",
  178. "enablePullDownRefresh": true
  179. },
  180. "meta": {
  181. "auth": true,
  182. "sync": true,
  183. "title": "用户订单",
  184. "group": "订单中心"
  185. }
  186. },
  187. {
  188. "path": "aftersale/apply",
  189. "style": {
  190. "navigationBarTitleText": "申请售后"
  191. },
  192. "meta": {
  193. "auth": true,
  194. "title": "申请售后"
  195. }
  196. },
  197. {
  198. "path": "aftersale/return-delivery",
  199. "style": {
  200. "navigationBarTitleText": "退货物流"
  201. },
  202. "meta": {
  203. "auth": true,
  204. "title": "退货物流"
  205. }
  206. },
  207. {
  208. "path": "aftersale/list",
  209. "style": {
  210. "navigationBarTitleText": "售后列表"
  211. },
  212. "meta": {
  213. "auth": true,
  214. "sync": true,
  215. "title": "售后订单",
  216. "group": "订单中心"
  217. }
  218. },
  219. {
  220. "path": "aftersale/detail",
  221. "style": {
  222. "navigationBarTitleText": "售后详情"
  223. },
  224. "meta": {
  225. "auth": true,
  226. "title": "售后详情"
  227. }
  228. },
  229. {
  230. "path": "aftersale/log",
  231. "style": {
  232. "navigationBarTitleText": "售后进度"
  233. },
  234. "meta": {
  235. "auth": true,
  236. "title": "售后进度"
  237. }
  238. },
  239. {
  240. "path": "express/log",
  241. "style": {
  242. "navigationBarTitleText": "物流轨迹"
  243. },
  244. "meta": {
  245. "auth": true,
  246. "title": "物流轨迹"
  247. }
  248. }
  249. ]
  250. },
  251. {
  252. "root": "pages/user",
  253. "pages": [
  254. {
  255. "path": "info",
  256. "style": {
  257. "navigationBarTitleText": "我的信息"
  258. },
  259. "meta": {
  260. "auth": true,
  261. "sync": true,
  262. "title": "用户信息",
  263. "group": "用户中心"
  264. }
  265. },
  266. {
  267. "path": "goods-collect",
  268. "style": {
  269. "navigationBarTitleText": "我的收藏"
  270. },
  271. "meta": {
  272. "auth": true,
  273. "sync": true,
  274. "title": "商品收藏",
  275. "group": "用户中心"
  276. }
  277. },
  278. {
  279. "path": "goods-log",
  280. "style": {
  281. "navigationBarTitleText": "我的足迹"
  282. },
  283. "meta": {
  284. "auth": true,
  285. "sync": true,
  286. "title": "浏览记录",
  287. "group": "用户中心"
  288. }
  289. },
  290. {
  291. "path": "address/list",
  292. "style": {
  293. "navigationBarTitleText": "收货地址"
  294. },
  295. "meta": {
  296. "auth": true,
  297. "sync": true,
  298. "title": "地址管理",
  299. "group": "用户中心"
  300. }
  301. },
  302. {
  303. "path": "address/edit",
  304. "style": {
  305. "navigationBarTitleText": "编辑地址"
  306. },
  307. "meta": {
  308. "auth": true,
  309. "title": "编辑地址"
  310. }
  311. },
  312. {
  313. "path": "wallet/money",
  314. "style": {
  315. "navigationBarTitleText": "我的余额"
  316. },
  317. "meta": {
  318. "auth": true,
  319. "sync": true,
  320. "title": "用户余额",
  321. "group": "用户中心"
  322. }
  323. },
  324. {
  325. "path": "wallet/score",
  326. "style": {
  327. "navigationBarTitleText": "我的积分"
  328. },
  329. "meta": {
  330. "auth": true,
  331. "sync": true,
  332. "title": "用户积分",
  333. "group": "用户中心"
  334. }
  335. }
  336. ]
  337. },
  338. {
  339. "root": "pages/commission",
  340. "pages": [
  341. {
  342. "path": "index",
  343. "style": {
  344. "navigationBarTitleText": "分销"
  345. },
  346. "meta": {
  347. "auth": true,
  348. "sync": true,
  349. "title": "分销中心",
  350. "group": "分销商城"
  351. }
  352. },
  353. {
  354. "path": "wallet",
  355. "style": {
  356. "navigationBarTitleText": "我的佣金"
  357. },
  358. "meta": {
  359. "auth": true,
  360. "sync": true,
  361. "title": "用户佣金",
  362. "group": "分销中心"
  363. }
  364. },
  365. {
  366. "path": "goods",
  367. "style": {
  368. "navigationBarTitleText": "推广商品"
  369. },
  370. "meta": {
  371. "auth": true,
  372. "sync": true,
  373. "title": "推广商品",
  374. "group": "分销商城"
  375. }
  376. },
  377. {
  378. "path": "order",
  379. "style": {
  380. "navigationBarTitleText": "分销订单"
  381. },
  382. "meta": {
  383. "auth": true,
  384. "sync": true,
  385. "title": "分销订单",
  386. "group": "分销商城"
  387. }
  388. },
  389. {
  390. "path": "team",
  391. "style": {
  392. "navigationBarTitleText": "我的团队"
  393. },
  394. "meta": {
  395. "auth": true,
  396. "sync": true,
  397. "title": "我的团队",
  398. "group": "分销商城"
  399. }
  400. }, {
  401. "path": "promoter",
  402. "style": {
  403. "navigationBarTitleText": "推广人排行榜"
  404. },
  405. "meta": {
  406. "auth": true,
  407. "sync": true,
  408. "title": "推广人排行榜",
  409. "group": "分销商城"
  410. }
  411. }, {
  412. "path": "commission-ranking",
  413. "style": {
  414. "navigationBarTitleText": "佣金排行榜"
  415. },
  416. "meta": {
  417. "auth": true,
  418. "sync": true,
  419. "title": "佣金排行榜",
  420. "group": "分销商城"
  421. }
  422. }, {
  423. "path": "withdraw",
  424. "style": {
  425. "navigationBarTitleText": "申请提现"
  426. },
  427. "meta": {
  428. "auth": true,
  429. "sync": true,
  430. "title": "申请提现",
  431. "group": "分销商城"
  432. }
  433. }
  434. ]
  435. },
  436. {
  437. "root": "pages/app",
  438. "pages": [
  439. {
  440. "path": "sign",
  441. "style": {
  442. "navigationBarTitleText": "签到中心"
  443. },
  444. "meta": {
  445. "auth": true,
  446. "sync": true,
  447. "title": "签到中心",
  448. "group": "应用"
  449. }
  450. }]
  451. },
  452. {
  453. "root": "pages/public",
  454. "pages": [
  455. {
  456. "path": "setting",
  457. "style": {
  458. "navigationBarTitleText": "系统设置"
  459. },
  460. "meta": {
  461. "sync": true,
  462. "title": "系统设置",
  463. "group": "通用"
  464. }
  465. },
  466. {
  467. "path": "richtext",
  468. "style": {
  469. "navigationBarTitleText": "富文本"
  470. },
  471. "meta": {
  472. "sync": true,
  473. "title": "富文本",
  474. "group": "通用"
  475. }
  476. },
  477. {
  478. "path": "faq",
  479. "style": {
  480. "navigationBarTitleText": "常见问题"
  481. },
  482. "meta": {
  483. "sync": true,
  484. "title": "常见问题",
  485. "group": "通用"
  486. }
  487. },
  488. {
  489. "path": "error",
  490. "style": {
  491. "navigationBarTitleText": "错误页面"
  492. }
  493. },
  494. {
  495. "path": "webview",
  496. "style": {
  497. "navigationBarTitleText": ""
  498. }
  499. }
  500. ]
  501. },
  502. {
  503. "root": "pages/coupon",
  504. "pages": [
  505. {
  506. "path": "list",
  507. "style": {
  508. "navigationBarTitleText": "领券中心"
  509. },
  510. "meta": {
  511. "sync": true,
  512. "title": "领券中心",
  513. "group": "优惠券"
  514. }
  515. },
  516. {
  517. "path": "detail",
  518. "style": {
  519. "navigationBarTitleText": "优惠券"
  520. },
  521. "meta": {
  522. "auth": false,
  523. "sync": true,
  524. "title": "优惠券详情",
  525. "group": "优惠券"
  526. }
  527. }
  528. ]
  529. },
  530. {
  531. "root": "pages/chat",
  532. "pages": [{
  533. "path": "index",
  534. "style": {
  535. "navigationBarTitleText": "客服"
  536. },
  537. "meta": {
  538. "auth": true,
  539. "sync": true,
  540. "title": "客服",
  541. "group": "客服"
  542. }
  543. }]
  544. },
  545. {
  546. "root": "pages/pay",
  547. "pages": [
  548. {
  549. "path": "index",
  550. "style": {
  551. "navigationBarTitleText": "收银台"
  552. }
  553. },
  554. {
  555. "path": "result",
  556. "style": {
  557. "navigationBarTitleText": "支付结果"
  558. }
  559. },
  560. {
  561. "path": "recharge",
  562. "style": {
  563. "navigationBarTitleText": "充值余额"
  564. },
  565. "meta": {
  566. "auth": true,
  567. "sync": true,
  568. "title": "充值余额",
  569. "group": "支付"
  570. }
  571. },
  572. {
  573. "path": "recharge-log",
  574. "style": {
  575. "navigationBarTitleText": "充值记录"
  576. },
  577. "meta": {
  578. "auth": true,
  579. "sync": true,
  580. "title": "充值记录",
  581. "group": "支付"
  582. }
  583. }
  584. ]
  585. },
  586. {
  587. "root": "pages/activity",
  588. "pages": [
  589. {
  590. "path": "groupon/detail",
  591. "style": {
  592. "navigationBarTitleText": "拼团详情"
  593. }
  594. },
  595. {
  596. "path": "groupon/order",
  597. "style": {
  598. "navigationBarTitleText": "我的拼团",
  599. "enablePullDownRefresh": true
  600. },
  601. "meta": {
  602. "auth": true,
  603. "sync": true,
  604. "title": "拼团订单",
  605. "group": "营销活动"
  606. }
  607. },
  608. {
  609. "path": "index",
  610. "style": {
  611. "navigationBarTitleText": "营销商品"
  612. },
  613. "meta": {
  614. "sync": true,
  615. "title": "营销商品",
  616. "group": "营销活动"
  617. }
  618. },
  619. {
  620. "path": "groupon/list",
  621. "style": {
  622. "navigationBarTitleText": "拼团活动"
  623. },
  624. "meta": {
  625. "sync": true,
  626. "title": "拼团活动",
  627. "group": "营销活动"
  628. }
  629. },
  630. {
  631. "path": "seckill/list",
  632. "style": {
  633. "navigationBarTitleText": "秒杀活动"
  634. },
  635. "meta": {
  636. "sync": true,
  637. "title": "秒杀活动",
  638. "group": "营销活动"
  639. }
  640. }
  641. ]
  642. }
  643. ],
  644. "globalStyle": {
  645. "navigationBarTextStyle": "black",
  646. "navigationBarTitleText": "芋道商城",
  647. "navigationBarBackgroundColor": "#FFFFFF",
  648. "backgroundColor": "#FFFFFF",
  649. "navigationStyle": "custom"
  650. },
  651. "tabBar": {
  652. "list": [{
  653. "pagePath": "pages/index/index"
  654. },
  655. {
  656. "pagePath": "pages/index/cart"
  657. },
  658. {
  659. "pagePath": "pages/index/user"
  660. }
  661. ]
  662. }
  663. }