pages.json 36 KB

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