pages.json 33 KB

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