pages.json 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031
  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-success",
  299. "style": {
  300. "navigationBarTitleText": "支付结果",
  301. "navigationStyle": "custom"
  302. }
  303. },
  304. {
  305. "path": "order/order-payment",
  306. "style": {
  307. "navigationBarTitleText": "选择支付方式",
  308. "navigationStyle": "custom"
  309. }
  310. },
  311. {
  312. "path": "order/order-pay",
  313. "style": {
  314. "navigationBarTitleText": "收银台",
  315. "navigationStyle": "custom"
  316. }
  317. },
  318. {
  319. "path": "order/orderShareLogin",
  320. "style": {
  321. "navigationBarTitleText": "输入分享码"
  322. }
  323. },
  324. {
  325. "path": "order/order-sharelogin",
  326. "style": {
  327. "navigationBarTitleText": "查看订单"
  328. }
  329. },
  330. {
  331. "path": "order/order-list",
  332. "style": {
  333. "navigationBarTitleText": "我的订单",
  334. "navigationStyle": "custom"
  335. }
  336. },
  337. {
  338. "path": "order/order-details",
  339. "style": {
  340. "navigationBarTitleText": "订单详情",
  341. "navigationStyle": "custom"
  342. }
  343. },
  344. {
  345. "path": "order/order-sharedetails",
  346. "style": {
  347. "navigationBarTitleText": "订单详情"
  348. }
  349. },
  350. {
  351. "path": "order/order-logistics",
  352. "style": {
  353. "navigationBarTitleText": "物流信息"
  354. }
  355. },
  356. {
  357. "path": "operator/list",
  358. "style": {
  359. "navigationBarTitleText": "运营人员管理"
  360. }
  361. },
  362. {
  363. "path": "operator/addoperator",
  364. "style": {
  365. "navigationBarTitleText": "添加运营人员"
  366. }
  367. },
  368. {
  369. "path": "setting/setting",
  370. "style": {
  371. "navigationBarTitleText": "账户设置"
  372. }
  373. },
  374. {
  375. "path": "setting/phone",
  376. "style": {
  377. "navigationBarTitleText": "更换手机号"
  378. }
  379. },
  380. {
  381. "path": "coupon/coupon",
  382. "style": {
  383. "navigationBarTitleText": "优惠券",
  384. "enablePullDownRefresh": true
  385. }
  386. },
  387. {
  388. "path": "coupon/coupon-collection",
  389. "style": {
  390. "navigationBarTitleText": "领券中心",
  391. "enablePullDownRefresh": true
  392. }
  393. },
  394. {
  395. "path": "coupon/coupon-exchange",
  396. "style": {
  397. "navigationBarTitleText": "兑换优惠券"
  398. }
  399. },
  400. {
  401. "path": "coupon/coupon-product",
  402. "style": {
  403. "navigationBarTitleText": "活动商品",
  404. "enablePullDownRefresh": true
  405. }
  406. },
  407. {
  408. "path": "coupon/coupon-activity",
  409. "style": {
  410. "navigationBarTitleText": "采美云上美博会",
  411. "enablePullDownRefresh": true
  412. }
  413. },
  414. {
  415. "path": "collection/collection",
  416. "style": {
  417. "navigationBarTitleText": "收藏商品",
  418. "enablePullDownRefresh": true
  419. }
  420. },
  421. {
  422. "path": "member/member",
  423. "style": {
  424. "navigationBarTitleText": "采美超级会员",
  425. "enablePullDownRefresh": true
  426. }
  427. },
  428. {
  429. "path": "member/member-renew",
  430. "style": {
  431. "navigationBarTitleText": "购买超级会员"
  432. }
  433. },
  434. {
  435. "path": "member/member-record",
  436. "style": {
  437. "navigationBarTitleText": "购买记录",
  438. "enablePullDownRefresh": true
  439. }
  440. },
  441. {
  442. "path": "member/member-pay",
  443. "style": {
  444. "navigationBarTitleText": "支付超级会员"
  445. }
  446. },
  447. {
  448. "path": "member/member-product",
  449. "style": {
  450. "navigationBarTitleText": "优惠商品",
  451. "enablePullDownRefresh": true
  452. }
  453. }
  454. ]
  455. },
  456. {
  457. "root": "pages/seller/",
  458. "pages": [{
  459. "path": "index/index",
  460. "style": {
  461. "navigationBarTitleText": "采美采购商城",
  462. "enablePullDownRefresh": true,
  463. "navigationStyle": "custom"
  464. }
  465. },
  466. {
  467. "path": "login/login",
  468. "style": {
  469. "navigationBarTitleText": "登录",
  470. "navigationStyle": "custom"
  471. }
  472. },
  473. {
  474. "path": "cart/cart",
  475. "style": {
  476. "navigationBarTitleText": "购物车"
  477. }
  478. },
  479. {
  480. "path": "cart/buyagain",
  481. "style": {
  482. "navigationBarTitleText": "再次购买"
  483. }
  484. },
  485. {
  486. "path": "cart/immediately",
  487. "style": {
  488. "navigationBarTitleText": "立即下单"
  489. }
  490. },
  491. {
  492. "path": "cart/second",
  493. "style": {
  494. "navigationBarTitleText": "二手下单"
  495. }
  496. },
  497. {
  498. "path": "cart/coupon",
  499. "style": {
  500. "navigationBarTitleText": "优惠券列表",
  501. "enablePullDownRefresh": true
  502. }
  503. },
  504. {
  505. "path": "cart/coupon-share",
  506. "style": {
  507. "navigationBarTitleText": "购买优惠券"
  508. }
  509. },
  510. {
  511. "path": "order/create-order",
  512. "style": {
  513. "navigationBarTitleText": "确认订单"
  514. }
  515. },
  516. {
  517. "path": "order/create-recharge-order",
  518. "style": {
  519. "navigationBarTitleText": "确认订单"
  520. }
  521. },
  522. {
  523. "path": "order/order-details",
  524. "style": {
  525. "navigationBarTitleText": "订单详情",
  526. "navigationStyle": "custom"
  527. }
  528. },
  529. {
  530. "path": "order/order-list",
  531. "style": {
  532. "navigationBarTitleText": "订单列表",
  533. "navigationStyle": "custom"
  534. }
  535. },
  536. {
  537. "path": "club/list",
  538. "style": {
  539. "navigationBarTitleText": "机构列表"
  540. }
  541. },
  542. {
  543. "path": "club/stayClub-list",
  544. "style": {
  545. "navigationBarTitleText": "待注册机构"
  546. }
  547. },
  548. {
  549. "path": "club/club-list",
  550. "style": {
  551. "navigationBarTitleText": "我的机构"
  552. }
  553. },
  554. {
  555. "path": "club/allClub-list",
  556. "style": {
  557. "navigationBarTitleText": "所有机构"
  558. }
  559. },
  560. {
  561. "path": "club/addoperator",
  562. "style": {
  563. "navigationBarTitleText": "邀请运营人员"
  564. }
  565. },
  566. {
  567. "path": "login/register",
  568. "style": {
  569. "navigationBarTitleText": "拉机构上线",
  570. "navigationStyle": "custom"
  571. }
  572. },
  573. {
  574. "path": "login/register-select",
  575. "style": {
  576. "navigationBarTitleText": "拉机构上线"
  577. }
  578. },
  579. {
  580. "path": "login/register-general",
  581. "style": {
  582. "navigationBarTitleText": "个人机构"
  583. }
  584. },
  585. {
  586. "path": "login/register-member",
  587. "style": {
  588. "navigationBarTitleText": "资质机构"
  589. }
  590. },
  591. {
  592. "path": "login/information",
  593. "style": {
  594. "navigationBarTitleText": "修改资料",
  595. "navigationStyle": "custom"
  596. }
  597. },
  598. {
  599. "path": "login/apply",
  600. "style": {
  601. "navigationBarTitleText": "修改申请信息",
  602. "navigationStyle": "custom"
  603. }
  604. },
  605. {
  606. "path": "order/order-historylist",
  607. "style": {
  608. "navigationBarTitleText": "订单列表"
  609. }
  610. }, {
  611. "path": "search/search-order",
  612. "style": {
  613. "navigationBarTitleText": "订单搜索"
  614. }
  615. },
  616. {
  617. "path": "address/address",
  618. "style": {
  619. "navigationBarTitleText": "选择地址"
  620. }
  621. },
  622. {
  623. "path": "address/addressManage",
  624. "style": {
  625. "navigationBarTitleText": "添加地址"
  626. }
  627. },
  628. {
  629. "path": "remarks/list",
  630. "style": {
  631. "navigationBarTitleText": "注册客户咨询记录"
  632. }
  633. },
  634. {
  635. "path": "remarks/add",
  636. "style": {
  637. "navigationBarTitleText": "添加记录"
  638. }
  639. },
  640. {
  641. "path": "remarks/details",
  642. "style": {
  643. "navigationBarTitleText": "记录详情"
  644. }
  645. },
  646. {
  647. "path": "remarks/customer-list",
  648. "style": {
  649. "navigationBarTitleText": "选择咨询人"
  650. }
  651. },
  652. {
  653. "path": "remarks/record-list",
  654. "style": {
  655. "navigationBarTitleText": "未注册客户咨询记录"
  656. }
  657. },
  658. {
  659. "path": "remarks/add-record",
  660. "style": {
  661. "navigationBarTitleText": "添加记录"
  662. }
  663. },
  664. {
  665. "path": "remarks/record-details",
  666. "style": {
  667. "navigationBarTitleText": "记录详情"
  668. }
  669. }
  670. ]
  671. },
  672. {
  673. "root": "pages/h5/", //活动分包模块
  674. "pages": [{
  675. "path": "activity/activity",
  676. "style": {
  677. "navigationBarTitleText": ""
  678. }
  679. },
  680. {
  681. "path": "activity/activity_mid",
  682. "style": {
  683. "navigationBarTitleText": "年中大促",
  684. "enablePullDownRefresh": true
  685. }
  686. },
  687. {
  688. "path": "activity/couponExp",
  689. "style": {
  690. "navigationBarTitleText": "优惠券介绍",
  691. "enablePullDownRefresh": true
  692. }
  693. },
  694. {
  695. "path": "activity/activity-topic",
  696. "style": {
  697. "navigationBarTitleText": "活动专题",
  698. "enablePullDownRefresh": true
  699. }
  700. },
  701. {
  702. "path": "activity/activity-detail",
  703. "style": {
  704. "navigationBarTitleText": "活动专题",
  705. "enablePullDownRefresh": true
  706. }
  707. },
  708. {
  709. "path": "activity/activity-floorMore",
  710. "style": {
  711. "navigationBarTitleText": "更多",
  712. "enablePullDownRefresh": true
  713. }
  714. },
  715. {
  716. "path": "article/page",
  717. "style": {
  718. "navigationBarTitleText": "采美采购平台",
  719. "enablePullDownRefresh": true
  720. }
  721. },
  722. {
  723. "path": "article/path",
  724. "style": {
  725. "navigationBarTitleText": "采美采购平台",
  726. "enablePullDownRefresh": true
  727. }
  728. },
  729. {
  730. "path": "article/page-image",
  731. "style": {
  732. "navigationBarTitleText": "采美采购平台"
  733. }
  734. },
  735. {
  736. "path": "article/path-live",
  737. "style": {
  738. "navigationBarTitleText": "采美采购平台",
  739. "enablePullDownRefresh": true
  740. }
  741. },
  742. {
  743. "path": "activity/activity-list",
  744. "style": {
  745. "navigationBarTitleText": "商品专题",
  746. "enablePullDownRefresh": true
  747. }
  748. },
  749. {
  750. "path": "other/repair",
  751. "style": {
  752. "navigationBarTitleText": "维修"
  753. }
  754. },
  755. {
  756. "path": "other/brand",
  757. "style": {
  758. "navigationBarTitleText": "品牌招商"
  759. }
  760. },
  761. {
  762. "path": "other/brands",
  763. "style": {
  764. "navigationBarTitleText": "品牌招商"
  765. }
  766. },
  767. {
  768. "path": "other/attestation",
  769. "style": {
  770. "navigationBarTitleText": "采美认证通"
  771. }
  772. }
  773. ]
  774. }, {
  775. "root": "pages/search/", //搜索分包模块
  776. "pages": [{
  777. "path": "search",
  778. "style": {
  779. "navigationBarTitleText": "搜索"
  780. }
  781. }, {
  782. "path": "search-supplier",
  783. "style": {
  784. "navigationBarTitleText": "搜索供应商"
  785. }
  786. }, {
  787. "path": "search-instrument",
  788. "style": {
  789. "navigationBarTitleText": "搜索仪器"
  790. }
  791. }, {
  792. "path": "search-order",
  793. "style": {
  794. "navigationBarTitleText": "订单搜索"
  795. }
  796. }, {
  797. "path": "search-second",
  798. "style": {
  799. "navigationBarTitleText": "二手搜索"
  800. }
  801. }]
  802. }, {
  803. "root": "pages/second/",
  804. "pages": [{
  805. "path": "form/introduce",
  806. "style": {
  807. "navigationBarTitleText": "二手市场介绍",
  808. "enablePullDownRefresh": true
  809. }
  810. },
  811. {
  812. "path": "form/form",
  813. "style": {
  814. "navigationBarTitleText": "发布二手"
  815. }
  816. },
  817. {
  818. "path": "form/form-seller",
  819. "style": {
  820. "navigationBarTitleText": "发布二手"
  821. }
  822. },
  823. {
  824. "path": "product/product-list",
  825. "style": {
  826. "navigationBarTitleText": "二手商品",
  827. "enablePullDownRefresh": true
  828. }
  829. },
  830. {
  831. "path": "product/product-details",
  832. "style": {
  833. "navigationBarTitleText": "商品详情",
  834. "enablePullDownRefresh": true,
  835. "navigationStyle": "custom"
  836. }
  837. }
  838. ]
  839. },
  840. {
  841. "root": "pages/supplier/",
  842. "pages": [{
  843. "path": "index/index",
  844. "style": {
  845. "navigationBarTitleText": "采美采购商城",
  846. "enablePullDownRefresh": true,
  847. "navigationStyle": "custom"
  848. }
  849. }, {
  850. "path": "login/bind-operator",
  851. "style": {
  852. "navigationBarTitleText": "绑定微信"
  853. }
  854. }, {
  855. "path": "user/my-product",
  856. "style": {
  857. "navigationBarTitleText": "我的商品",
  858. "enablePullDownRefresh": true
  859. }
  860. }, {
  861. "path": "user/my-shop",
  862. "style": {
  863. "navigationBarTitleText": "店铺主页",
  864. "enablePullDownRefresh": true
  865. }
  866. }, {
  867. "path": "login/share-login",
  868. "style": {
  869. "navigationBarTitleText": "查看订单"
  870. }
  871. }, {
  872. "path": "login/share-info",
  873. "style": {
  874. "navigationBarTitleText": "订单详情",
  875. "navigationStyle": "custom"
  876. }
  877. }, {
  878. "path": "order/order-details",
  879. "style": {
  880. "navigationBarTitleText": "订单详情",
  881. "enablePullDownRefresh": true
  882. }
  883. }, {
  884. "path": "user/supplier",
  885. "style": {
  886. "navigationBarTitleText": "供应商信息"
  887. }
  888. }, {
  889. "path": "order/order-list",
  890. "style": {
  891. "navigationBarTitleText": "我的订单",
  892. "enablePullDownRefresh": true
  893. }
  894. }, {
  895. "path": "order/order-service-details",
  896. "style": {
  897. "navigationBarTitleText": "订单详情",
  898. "navigationStyle": "custom",
  899. "enablePullDownRefresh": true
  900. }
  901. },
  902. {
  903. "path": "deliver/add-logistics",
  904. "style": {
  905. "navigationBarTitleText": "录入物流信息"
  906. }
  907. },
  908. {
  909. "path": "deliver/qualifications-add",
  910. "style": {
  911. "navigationBarTitleText": "上传商品资质"
  912. }
  913. },
  914. {
  915. "path": "deliver/qualifications-details",
  916. "style": {
  917. "navigationBarTitleText": "商品资质"
  918. }
  919. },
  920. {
  921. "path": "deliver/deliver-goods",
  922. "style": {
  923. "navigationBarTitleText": "发货",
  924. "enablePullDownRefresh": true
  925. }
  926. },
  927. {
  928. "path": "deliver/deliver-record",
  929. "style": {
  930. "navigationBarTitleText": "发货记录",
  931. "enablePullDownRefresh": true,
  932. "navigationStyle": "custom"
  933. }
  934. },
  935. {
  936. "path": "deliver/logistics-list",
  937. "style": {
  938. "navigationBarTitleText": "物流公司"
  939. }
  940. },
  941. {
  942. "path": "user/setting/password",
  943. "style": {
  944. "navigationBarTitleText": "修改密码"
  945. }
  946. },
  947. {
  948. "path": "user/setting/phone",
  949. "style": {
  950. "navigationBarTitleText": "更换手机号"
  951. }
  952. },
  953. {
  954. "path": "user/setting/setting",
  955. "style": {
  956. "navigationBarTitleText": "账户设置"
  957. }
  958. },
  959. {
  960. "path": "user/operator/list",
  961. "style": {
  962. "navigationBarTitleText": "运营人员管理"
  963. }
  964. },
  965. {
  966. "path": "user/operator/addoperator",
  967. "style": {
  968. "navigationBarTitleText": "添加运营人员"
  969. }
  970. },
  971. {
  972. "path": "user/information",
  973. "style": {
  974. "navigationBarTitleText": "资料信息"
  975. }
  976. }
  977. ]
  978. }
  979. ],
  980. "tabBar": {
  981. "height": "80",
  982. "color": "#999999",
  983. "selectedColor": "#E15616",
  984. "borderStyle": "black",
  985. "backgroundColor": "#ffffff",
  986. "list": [{
  987. "pagePath": "pages/tabBar/home/index",
  988. "iconPath": "static/icon-home@3x.png",
  989. "selectedIconPath": "static/icon-home-active@3x.png",
  990. "text": "商城"
  991. }, {
  992. "pagePath": "pages/tabBar/category/index",
  993. "iconPath": "static/icon-sort@3x.png",
  994. "selectedIconPath": "static/icon-sort-active@3x.png",
  995. "text": "分类"
  996. },
  997. {
  998. "pagePath": "pages/tabBar/cart/index",
  999. "iconPath": "static/icon-cart@3x.png",
  1000. "selectedIconPath": "static/icon-cart-active@3x.png",
  1001. "text": "购物车"
  1002. },
  1003. {
  1004. "pagePath": "pages/tabBar/user/user",
  1005. "iconPath": "static/icon-user@3x.png",
  1006. "selectedIconPath": "static/icon-user-active@3x.png",
  1007. "text": "我的"
  1008. }
  1009. ]
  1010. },
  1011. "easycom": {
  1012. "autoscan": true,
  1013. "custom": {
  1014. "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
  1015. }
  1016. },
  1017. "globalStyle": {
  1018. "navigationBarTextStyle": "black",
  1019. "navigationBarTitleText": "采美采购商城",
  1020. "navigationBarBackgroundColor": "#FFFFFF",
  1021. "backgroundColor": "#FFFFFF"
  1022. },
  1023. "condition": { //模式配置,仅开发期间生效
  1024. "current": 0, //当前激活的模式(list 的索引项)
  1025. "list": [{
  1026. "name": "", //模式名称
  1027. "path": "", //启动页面,必选
  1028. "query": "" //启动参数,在页面的onLoad函数里面得到
  1029. }]
  1030. }
  1031. }