pages.json 27 KB

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