pages.json 31 KB

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