pages.json 27 KB

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