pages.json 31 KB

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