pages.json 19 KB

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