pages.json 26 KB

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