pages.json 27 KB

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