pages.json 27 KB

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