pages.json 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/tabBar/home/index",
  5. "style": {
  6. "navigationBarTitleText": "采美采购商城",
  7. "enablePullDownRefresh": true,
  8. "backgroundColor": "#F28F31",
  9. "backgroundTextStyle": "light",
  10. "navigationStyle": "custom"
  11. }
  12. }, {
  13. "path": "pages/authorization/authorization",
  14. "style": {
  15. "navigationBarTitleText": "微信授权",
  16. "navigationStyle": "custom"
  17. }
  18. }, {
  19. "path": "pages/tabBar/category/index",
  20. "style": {
  21. "navigationBarTitleText": "分类",
  22. "navigationStyle": "custom"
  23. }
  24. }, {
  25. "path": "pages/tabBar/cart/index",
  26. "style": {
  27. "navigationBarTitleText": "购物车",
  28. "enablePullDownRefresh": true
  29. }
  30. }, {
  31. "path": "pages/tabBar/user/user",
  32. "style": {
  33. "navigationBarTitleText": "我的",
  34. "enablePullDownRefresh": true,
  35. "navigationStyle": "custom"
  36. }
  37. }
  38. ],
  39. "subPackages": [{
  40. "root": "pages/service/", //信息服务模块
  41. "pages": [{
  42. "path": "aftersale",
  43. "style": {
  44. "navigationBarTitleText": "售后无忧"
  45. }
  46. },
  47. {
  48. "path": "service",
  49. "style": {
  50. "navigationBarTitleText": "采美365网"
  51. }
  52. },
  53. {
  54. "path": "shoppingnotice",
  55. "style": {
  56. "navigationBarTitleText": "购物须知"
  57. }
  58. },
  59. {
  60. "path": "sellconten",
  61. "style": {
  62. "navigationBarTitleText": "条款内容"
  63. }
  64. }
  65. ]
  66. },
  67. {
  68. "root": "pages/goods/", //商品模块
  69. "pages": [
  70. /*美体节临时页面*/
  71. {
  72. "path": "good-floor-temp",
  73. "style": {
  74. "navigationBarTitleText": "美体节",
  75. "enablePullDownRefresh": true,
  76. "navigationStyle": "custom"
  77. }
  78. },
  79. {
  80. "path": "goods-instrument",
  81. "style": {
  82. "navigationBarTitleText": "项目仪器",
  83. "enablePullDownRefresh": true
  84. }
  85. },
  86. {
  87. "path": "goods-classify",
  88. "style": {
  89. "navigationBarTitleText": "商品列表",
  90. "enablePullDownRefresh": true,
  91. "navigationStyle": "custom"
  92. }
  93. },
  94. {
  95. "path": "good-floorMore",
  96. "style": {
  97. "navigationBarTitleText": "更多楼层",
  98. "enablePullDownRefresh": true
  99. }
  100. },
  101. {
  102. "path": "good-floor",
  103. "style": {
  104. "navigationBarTitleText": "",
  105. "enablePullDownRefresh": true,
  106. "navigationStyle": "custom"
  107. }
  108. },
  109. {
  110. "path": "goods-active",
  111. "style": {
  112. "navigationBarTitleText": "凑单商品",
  113. "enablePullDownRefresh": true
  114. }
  115. },
  116. {
  117. "path": "product",
  118. "style": {
  119. "navigationBarTitleText": "商品详情",
  120. "navigationStyle": "custom"
  121. }
  122. },
  123. {
  124. "path": "instrument-details",
  125. "style": {
  126. "navigationBarTitleText": "项目仪器详情",
  127. "navigationStyle": "custom"
  128. }
  129. },
  130. {
  131. "path": "cart",
  132. "style": {
  133. "navigationBarTitleText": "购物车",
  134. "enablePullDownRefresh": true,
  135. "navigationStyle": "custom"
  136. }
  137. },
  138. {
  139. "path": "cart-index",
  140. "style": {
  141. "navigationBarTitleText": "购物车",
  142. "enablePullDownRefresh": true,
  143. "navigationStyle": "custom"
  144. }
  145. }
  146. ]
  147. },
  148. {
  149. "root": "pages/login/", //注册登录模块
  150. "pages": [{
  151. "path": "register",
  152. "style": {
  153. "navigationBarTitleText": "机构注册",
  154. "navigationStyle": "custom"
  155. }
  156. },
  157. {
  158. "path": "register-supplier",
  159. "style": {
  160. "navigationBarTitleText": "供应商注册",
  161. "navigationStyle": "custom"
  162. }
  163. },
  164. {
  165. "path": "register-select",
  166. "style": {
  167. "navigationBarTitleText": "选择身份"
  168. }
  169. },
  170. {
  171. "path": "apply",
  172. "style": {
  173. "navigationBarTitleText": "升级会员机构",
  174. "navigationStyle": "custom"
  175. }
  176. },
  177. {
  178. "path": "apply-supplier",
  179. "style": {
  180. "navigationBarTitleText": "修改申请资料",
  181. "navigationStyle": "custom"
  182. }
  183. },
  184. {
  185. "path": "logincode",
  186. "style": {
  187. "navigationBarTitleText": "邀请码登录"
  188. }
  189. },
  190. {
  191. "path": "login",
  192. "style": {
  193. "navigationBarTitleText": "登录"
  194. }
  195. },
  196. {
  197. "path": "binding",
  198. "style": {
  199. "navigationBarTitleText": "注册信息"
  200. }
  201. },
  202. {
  203. "path": "bindwechat",
  204. "style": {
  205. "navigationBarTitleText": "绑定微信"
  206. }
  207. },
  208. {
  209. "path": "bindOperator",
  210. "style": {
  211. "navigationBarTitleText": "绑定运营人员"
  212. }
  213. },
  214. {
  215. "path": "information",
  216. "style": {
  217. "navigationBarTitleText": "修改资料",
  218. "navigationStyle": "custom"
  219. }
  220. },
  221. {
  222. "path": "password",
  223. "style": {
  224. "navigationBarTitleText": "修改密码"
  225. }
  226. }
  227. ]
  228. },
  229. {
  230. "root": "pages/user/", //机构个人中心模块
  231. "pages": [{
  232. "path": "account/account",
  233. "style": {
  234. "navigationBarTitleText": "账户余额明细",
  235. "enablePullDownRefresh": true,
  236. "navigationStyle": "custom"
  237. }
  238. },
  239. {
  240. "path": "account/account-bean",
  241. "style": {
  242. "navigationBarTitleText": "采美豆明细",
  243. "enablePullDownRefresh": true,
  244. "navigationStyle": "custom"
  245. }
  246. },
  247. {
  248. "path": "address/addressManage",
  249. "style": {
  250. "navigationBarTitleText": "添加新地址"
  251. }
  252. },
  253. {
  254. "path": "address/address",
  255. "style": {
  256. "navigationBarTitleText": "地址列表"
  257. }
  258. },
  259. {
  260. "path": "about/about",
  261. "style": {
  262. "navigationBarTitleText": "关于我们"
  263. }
  264. },
  265. {
  266. "path": "regularPurchase/regularPurchase",
  267. "style": {
  268. "navigationBarTitleText": "再次购买"
  269. }
  270. },
  271. {
  272. "path": "order/create-order",
  273. "style": {
  274. "navigationBarTitleText": "确认订单"
  275. }
  276. },
  277. {
  278. "path": "order/success",
  279. "style": {
  280. "navigationBarTitleText": "支付结果",
  281. "navigationStyle": "custom"
  282. }
  283. },
  284. {
  285. "path": "order/order-payment",
  286. "style": {
  287. "navigationBarTitleText": "选择支付方式",
  288. "navigationStyle": "custom"
  289. }
  290. },
  291. {
  292. "path": "order/order-pay",
  293. "style": {
  294. "navigationBarTitleText": "收银台",
  295. "navigationStyle": "custom"
  296. }
  297. },
  298. {
  299. "path": "order/orderShareLogin",
  300. "style": {
  301. "navigationBarTitleText": "输入分享码"
  302. }
  303. },
  304. {
  305. "path": "order/order-sharelogin",
  306. "style": {
  307. "navigationBarTitleText": "查看订单"
  308. }
  309. },
  310. {
  311. "path": "order/order-list",
  312. "style": {
  313. "navigationBarTitleText": "我的订单",
  314. "navigationStyle": "custom"
  315. }
  316. },
  317. {
  318. "path": "order/order-details",
  319. "style": {
  320. "navigationBarTitleText": "订单详情",
  321. "navigationStyle": "custom"
  322. }
  323. },
  324. {
  325. "path": "order/order-sharedetails",
  326. "style": {
  327. "navigationBarTitleText": "订单详情"
  328. }
  329. },
  330. {
  331. "path": "order/order-logistics",
  332. "style": {
  333. "navigationBarTitleText": "物流信息"
  334. }
  335. },
  336. {
  337. "path": "operator/list",
  338. "style": {
  339. "navigationBarTitleText": "运营人员管理"
  340. }
  341. },
  342. {
  343. "path": "operator/addoperator",
  344. "style": {
  345. "navigationBarTitleText": "添加运营人员"
  346. }
  347. },
  348. {
  349. "path": "setting/setting",
  350. "style": {
  351. "navigationBarTitleText": "账户设置"
  352. }
  353. },
  354. {
  355. "path": "setting/phone",
  356. "style": {
  357. "navigationBarTitleText": "更换手机号"
  358. }
  359. },
  360. {
  361. "path": "coupon/coupon",
  362. "style": {
  363. "navigationBarTitleText": "优惠券",
  364. "enablePullDownRefresh": true
  365. }
  366. },
  367. {
  368. "path": "coupon/coupon-collection",
  369. "style": {
  370. "navigationBarTitleText": "领券中心",
  371. "enablePullDownRefresh": true
  372. }
  373. },
  374. {
  375. "path": "coupon/coupon-exchange",
  376. "style": {
  377. "navigationBarTitleText": "兑换优惠券"
  378. }
  379. },
  380. {
  381. "path": "coupon/coupon-product",
  382. "style": {
  383. "navigationBarTitleText": "活动商品",
  384. "enablePullDownRefresh": true
  385. }
  386. }
  387. ]
  388. },
  389. {
  390. "root": "pages/seller/",
  391. "pages": [{
  392. "path": "index/index",
  393. "style": {
  394. "navigationBarTitleText": "采美采购商城",
  395. "enablePullDownRefresh": true,
  396. "navigationStyle": "custom"
  397. }
  398. },
  399. {
  400. "path": "login/login",
  401. "style": {
  402. "navigationBarTitleText": "登录",
  403. "navigationStyle": "custom"
  404. }
  405. },
  406. {
  407. "path": "cart/cart",
  408. "style": {
  409. "navigationBarTitleText": "购物车"
  410. }
  411. },
  412. {
  413. "path": "cart/buyagain",
  414. "style": {
  415. "navigationBarTitleText": "再次购买"
  416. }
  417. },
  418. {
  419. "path": "cart/immediately",
  420. "style": {
  421. "navigationBarTitleText": "立即下单"
  422. }
  423. }, {
  424. "path": "cart/second",
  425. "style": {
  426. "navigationBarTitleText": "二手下单"
  427. }
  428. },
  429. {
  430. "path": "order/create-order",
  431. "style": {
  432. "navigationBarTitleText": "确认订单"
  433. }
  434. },
  435. {
  436. "path": "order/create-recharge-order",
  437. "style": {
  438. "navigationBarTitleText": "确认订单"
  439. }
  440. },
  441. {
  442. "path": "order/order-details",
  443. "style": {
  444. "navigationBarTitleText": "订单详情",
  445. "navigationStyle": "custom"
  446. }
  447. },
  448. {
  449. "path": "order/order-list",
  450. "style": {
  451. "navigationBarTitleText": "订单列表",
  452. "navigationStyle": "custom"
  453. }
  454. },
  455. {
  456. "path": "order/order-sharedetails",
  457. "style": {
  458. "navigationBarTitleText": "订单详情",
  459. "navigationStyle": "custom"
  460. }
  461. },
  462. {
  463. "path": "club/list",
  464. "style": {
  465. "navigationBarTitleText": "机构列表"
  466. }
  467. },
  468. {
  469. "path": "club/stayClub-list",
  470. "style": {
  471. "navigationBarTitleText": "待注册机构"
  472. }
  473. },
  474. {
  475. "path": "club/club-list",
  476. "style": {
  477. "navigationBarTitleText": "我的机构"
  478. }
  479. },
  480. {
  481. "path": "club/allClub-list",
  482. "style": {
  483. "navigationBarTitleText": "所有机构"
  484. }
  485. },
  486. {
  487. "path": "club/addoperator",
  488. "style": {
  489. "navigationBarTitleText": "邀请运营人员"
  490. }
  491. },
  492. {
  493. "path": "login/register",
  494. "style": {
  495. "navigationBarTitleText": "拉机构上线",
  496. "navigationStyle": "custom"
  497. }
  498. },
  499. {
  500. "path": "login/register-select",
  501. "style": {
  502. "navigationBarTitleText": "拉机构上线"
  503. }
  504. },
  505. {
  506. "path": "login/register-general",
  507. "style": {
  508. "navigationBarTitleText": "普通机构"
  509. }
  510. },
  511. {
  512. "path": "login/register-member",
  513. "style": {
  514. "navigationBarTitleText": "会员机构"
  515. }
  516. },
  517. {
  518. "path": "login/information",
  519. "style": {
  520. "navigationBarTitleText": "修改资料",
  521. "navigationStyle": "custom"
  522. }
  523. },
  524. {
  525. "path": "login/apply",
  526. "style": {
  527. "navigationBarTitleText": "修改申请信息",
  528. "navigationStyle": "custom"
  529. }
  530. },
  531. {
  532. "path": "order/order-historylist",
  533. "style": {
  534. "navigationBarTitleText": "订单列表"
  535. }
  536. }, {
  537. "path": "search/search-order",
  538. "style": {
  539. "navigationBarTitleText": "订单搜索"
  540. }
  541. },
  542. {
  543. "path": "address/address",
  544. "style": {
  545. "navigationBarTitleText": "选择地址"
  546. }
  547. },
  548. {
  549. "path": "address/addressManage",
  550. "style": {
  551. "navigationBarTitleText": "添加地址"
  552. }
  553. }
  554. ]
  555. },
  556. {
  557. "root": "pages/h5/", //活动分包模块
  558. "pages": [{
  559. "path": "activity/activity",
  560. "style": {
  561. "navigationBarTitleText": ""
  562. }
  563. },
  564. {
  565. "path": "activity/activity_mid",
  566. "style": {
  567. "navigationBarTitleText": "年中大促",
  568. "enablePullDownRefresh": true
  569. }
  570. },
  571. {
  572. "path": "activity/couponExp",
  573. "style": {
  574. "navigationBarTitleText": "优惠券介绍",
  575. "enablePullDownRefresh": true
  576. }
  577. },
  578. {
  579. "path": "activity/activity-topic",
  580. "style": {
  581. "navigationBarTitleText": "活动专题",
  582. "enablePullDownRefresh": true
  583. }
  584. },
  585. {
  586. "path": "activity/activity-detail",
  587. "style": {
  588. "navigationBarTitleText": "活动专题",
  589. "enablePullDownRefresh": true
  590. }
  591. },
  592. {
  593. "path": "activity/activity-floorMore",
  594. "style": {
  595. "navigationBarTitleText": "更多",
  596. "enablePullDownRefresh": true
  597. }
  598. },
  599. {
  600. "path": "article/page",
  601. "style": {
  602. "navigationBarTitleText": "采美采购平台",
  603. "enablePullDownRefresh": true
  604. }
  605. },
  606. {
  607. "path": "article/path",
  608. "style": {
  609. "navigationBarTitleText": "采美采购平台",
  610. "enablePullDownRefresh": true
  611. }
  612. },
  613. {
  614. "path": "article/page-image",
  615. "style": {
  616. "navigationBarTitleText": "采美采购平台"
  617. }
  618. },
  619. {
  620. "path": "article/path-live",
  621. "style": {
  622. "navigationBarTitleText": "采美采购平台",
  623. "enablePullDownRefresh": true
  624. }
  625. },
  626. {
  627. "path": "activity/activity-list",
  628. "style": {
  629. "navigationBarTitleText": "商品专题",
  630. "enablePullDownRefresh": true
  631. }
  632. },
  633. {
  634. "path": "other/repair",
  635. "style": {
  636. "navigationBarTitleText": "维修"
  637. }
  638. },
  639. {
  640. "path": "other/brand",
  641. "style": {
  642. "navigationBarTitleText": "品牌招商"
  643. }
  644. },
  645. {
  646. "path": "other/brands",
  647. "style": {
  648. "navigationBarTitleText": "品牌招商"
  649. }
  650. }
  651. ]
  652. }, {
  653. "root": "pages/search/", //搜索分包模块
  654. "pages": [{
  655. "path": "search",
  656. "style": {
  657. "navigationBarTitleText": "搜索"
  658. }
  659. }, {
  660. "path": "search-supplier",
  661. "style": {
  662. "navigationBarTitleText": "搜索供应商"
  663. }
  664. }, {
  665. "path": "search-instrument",
  666. "style": {
  667. "navigationBarTitleText": "搜索仪器"
  668. }
  669. }, {
  670. "path": "search-order",
  671. "style": {
  672. "navigationBarTitleText": "订单搜索"
  673. }
  674. }, {
  675. "path": "search-second",
  676. "style": {
  677. "navigationBarTitleText": "二手搜索"
  678. }
  679. }]
  680. }, {
  681. "root": "pages/second/",
  682. "pages": [{
  683. "path": "form/introduce",
  684. "style": {
  685. "navigationBarTitleText": "二手市场介绍",
  686. "enablePullDownRefresh": true
  687. }
  688. },
  689. {
  690. "path": "form/form",
  691. "style": {
  692. "navigationBarTitleText": "发布二手"
  693. }
  694. },
  695. {
  696. "path": "form/form-seller",
  697. "style": {
  698. "navigationBarTitleText": "发布二手"
  699. }
  700. },
  701. {
  702. "path": "product/product-list",
  703. "style": {
  704. "navigationBarTitleText": "二手商品",
  705. "enablePullDownRefresh": true
  706. }
  707. },
  708. {
  709. "path": "product/product-details",
  710. "style": {
  711. "navigationBarTitleText": "商品详情",
  712. "enablePullDownRefresh": true,
  713. "navigationStyle": "custom"
  714. }
  715. }
  716. ]
  717. },
  718. {
  719. "root": "pages/supplier/",
  720. "pages": [{
  721. "path": "index/index",
  722. "style": {
  723. "navigationBarTitleText": "采美采购商城",
  724. "enablePullDownRefresh": true,
  725. "navigationStyle": "custom"
  726. }
  727. }, {
  728. "path": "login/bind-operator",
  729. "style": {
  730. "navigationBarTitleText": "绑定微信"
  731. }
  732. }, {
  733. "path": "user/my-product",
  734. "style": {
  735. "navigationBarTitleText": "我的商品",
  736. "enablePullDownRefresh": true
  737. }
  738. }, {
  739. "path": "user/my-shop",
  740. "style": {
  741. "navigationBarTitleText": "店铺主页",
  742. "enablePullDownRefresh": true
  743. }
  744. }, {
  745. "path": "login/share-login",
  746. "style": {
  747. "navigationBarTitleText": "查看订单"
  748. }
  749. }, {
  750. "path": "login/share-info",
  751. "style": {
  752. "navigationBarTitleText": "订单详情",
  753. "navigationStyle": "custom"
  754. }
  755. }, {
  756. "path": "order/order-details",
  757. "style": {
  758. "navigationBarTitleText": "订单详情",
  759. "enablePullDownRefresh": true
  760. }
  761. }, {
  762. "path": "user/supplier",
  763. "style": {
  764. "navigationBarTitleText": "供应商信息"
  765. }
  766. }, {
  767. "path": "order/order-list",
  768. "style": {
  769. "navigationBarTitleText": "我的订单",
  770. "enablePullDownRefresh": true
  771. }
  772. }, {
  773. "path": "order/order-service-details",
  774. "style": {
  775. "navigationBarTitleText": "订单详情",
  776. "navigationStyle": "custom",
  777. "enablePullDownRefresh": true
  778. }
  779. },
  780. {
  781. "path": "deliver/add-logistics",
  782. "style": {
  783. "navigationBarTitleText": "录入物流信息"
  784. }
  785. },
  786. {
  787. "path": "deliver/qualifications-add",
  788. "style": {
  789. "navigationBarTitleText": "上传商品资质"
  790. }
  791. },
  792. {
  793. "path": "deliver/qualifications-details",
  794. "style": {
  795. "navigationBarTitleText": "商品资质"
  796. }
  797. },
  798. {
  799. "path": "deliver/deliver-goods",
  800. "style": {
  801. "navigationBarTitleText": "发货",
  802. "enablePullDownRefresh": true
  803. }
  804. },
  805. {
  806. "path": "deliver/deliver-record",
  807. "style": {
  808. "navigationBarTitleText": "发货记录",
  809. "enablePullDownRefresh": true,
  810. "navigationStyle": "custom"
  811. }
  812. },
  813. {
  814. "path": "deliver/logistics-list",
  815. "style": {
  816. "navigationBarTitleText": "物流公司"
  817. }
  818. },
  819. {
  820. "path": "user/setting/password",
  821. "style": {
  822. "navigationBarTitleText": "修改密码"
  823. }
  824. },
  825. {
  826. "path": "user/setting/phone",
  827. "style": {
  828. "navigationBarTitleText": "更换手机号"
  829. }
  830. },
  831. {
  832. "path": "user/setting/setting",
  833. "style": {
  834. "navigationBarTitleText": "账户设置"
  835. }
  836. },
  837. {
  838. "path": "user/operator/list",
  839. "style": {
  840. "navigationBarTitleText": "运营人员管理"
  841. }
  842. },
  843. {
  844. "path": "user/operator/addoperator",
  845. "style": {
  846. "navigationBarTitleText": "添加运营人员"
  847. }
  848. },
  849. {
  850. "path": "user/information",
  851. "style": {
  852. "navigationBarTitleText": "资料信息"
  853. }
  854. }
  855. ]
  856. }
  857. ],
  858. "tabBar": {
  859. "height": "80",
  860. "color": "#999999",
  861. "selectedColor": "#E15616",
  862. "borderStyle": "black",
  863. "backgroundColor": "#ffffff",
  864. "list": [{
  865. "pagePath": "pages/tabBar/home/index",
  866. "iconPath": "static/icon-home@3x.png",
  867. "selectedIconPath": "static/icon-home-active@3x.png",
  868. "text": "商城"
  869. }, {
  870. "pagePath": "pages/tabBar/category/index",
  871. "iconPath": "static/icon-sort@3x.png",
  872. "selectedIconPath": "static/icon-sort-active@3x.png",
  873. "text": "分类"
  874. },
  875. {
  876. "pagePath": "pages/tabBar/cart/index",
  877. "iconPath": "static/icon-cart@3x.png",
  878. "selectedIconPath": "static/icon-cart-active@3x.png",
  879. "text": "购物车"
  880. },
  881. {
  882. "pagePath": "pages/tabBar/user/user",
  883. "iconPath": "static/icon-user@3x.png",
  884. "selectedIconPath": "static/icon-user-active@3x.png",
  885. "text": "我的"
  886. }
  887. ]
  888. },
  889. "easycom": {
  890. "autoscan": true,
  891. "custom": {
  892. "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
  893. }
  894. },
  895. "globalStyle": {
  896. "navigationBarTextStyle": "black",
  897. "navigationBarTitleText": "采美采购商城",
  898. "navigationBarBackgroundColor": "#FFFFFF",
  899. "backgroundColor": "#FFFFFF"
  900. },
  901. "condition": { //模式配置,仅开发期间生效
  902. "current": 0, //当前激活的模式(list 的索引项)
  903. "list": [{
  904. "name": "", //模式名称
  905. "path": "", //启动页面,必选
  906. "query": "" //启动参数,在页面的onLoad函数里面得到
  907. }]
  908. }
  909. }