pages.json 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354
  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. },
  627. {
  628. "root": "pages/seller/",
  629. "pages": [
  630. {
  631. "path": "index/index",
  632. "style": {
  633. "navigationBarTitleText": "采美采购商城",
  634. "enablePullDownRefresh": true,
  635. "navigationStyle": "custom"
  636. }
  637. },
  638. {
  639. "path": "login/login",
  640. "style": {
  641. "navigationBarTitleText": "登录",
  642. "navigationStyle": "custom"
  643. }
  644. },
  645. {
  646. "path": "cart/cart",
  647. "style": {
  648. "navigationBarTitleText": "购物车"
  649. }
  650. },
  651. {
  652. "path": "cart/buyagain",
  653. "style": {
  654. "navigationBarTitleText": "再次购买"
  655. }
  656. },
  657. {
  658. "path": "cart/immediately",
  659. "style": {
  660. "navigationBarTitleText": "立即下单"
  661. }
  662. },
  663. {
  664. "path": "cart/second",
  665. "style": {
  666. "navigationBarTitleText": "二手下单"
  667. }
  668. },
  669. {
  670. "path": "cart/coupon",
  671. "style": {
  672. "navigationBarTitleText": "优惠券列表",
  673. "enablePullDownRefresh": true
  674. }
  675. },
  676. {
  677. "path": "cart/coupon-share",
  678. "style": {
  679. "navigationBarTitleText": "购买优惠券"
  680. }
  681. },
  682. {
  683. "path": "order/create-order",
  684. "style": {
  685. "navigationBarTitleText": "确认订单"
  686. }
  687. },
  688. {
  689. "path": "order/create-recharge-order",
  690. "style": {
  691. "navigationBarTitleText": "确认订单"
  692. }
  693. },
  694. {
  695. "path": "order/order-details",
  696. "style": {
  697. "navigationBarTitleText": "订单详情",
  698. "navigationStyle": "custom"
  699. }
  700. },
  701. {
  702. "path": "order/order-club-details",
  703. "style": {
  704. "navigationBarTitleText": "订单详情",
  705. "navigationStyle": "custom"
  706. }
  707. },
  708. {
  709. "path": "order/order-list",
  710. "style": {
  711. "navigationBarTitleText": "订单列表",
  712. "navigationStyle": "custom"
  713. }
  714. },
  715. {
  716. "path": "club/list",
  717. "style": {
  718. "navigationBarTitleText": "机构列表",
  719. "navigationStyle": "custom"
  720. }
  721. },
  722. {
  723. "path": "club/stayClub-list",
  724. "style": {
  725. "navigationBarTitleText": "待注册机构"
  726. }
  727. },
  728. {
  729. "path": "club/club-list",
  730. "style": {
  731. "navigationBarTitleText": "我的机构"
  732. }
  733. },
  734. {
  735. "path": "club/club-portrait",
  736. "style": {
  737. "navigationBarTitleText": "机构画像"
  738. }
  739. },
  740. {
  741. "path": "club/club-visit",
  742. "style": {
  743. "navigationBarTitleText": "访问记录",
  744. "navigationStyle": "custom"
  745. }
  746. },
  747. {
  748. "path": "club/club-visit-detail",
  749. "style": {
  750. "navigationBarTitleText": "访问详情"
  751. }
  752. },
  753. {
  754. "path": "club/allClub-list",
  755. "style": {
  756. "navigationBarTitleText": "所有机构"
  757. }
  758. },
  759. {
  760. "path": "club/addoperator",
  761. "style": {
  762. "navigationBarTitleText": "邀请运营人员"
  763. }
  764. },
  765. {
  766. "path": "club/club-info",
  767. "style": {
  768. "navigationBarTitleText": "商城访问记录"
  769. }
  770. },
  771. {
  772. "path": "club/club-detail",
  773. "style": {
  774. "navigationBarTitleText": "资料详情"
  775. }
  776. },
  777. {
  778. "path": "login/register",
  779. "style": {
  780. "navigationBarTitleText": "拉机构上线",
  781. "navigationStyle": "custom"
  782. }
  783. },
  784. {
  785. "path": "login/register-select",
  786. "style": {
  787. "navigationBarTitleText": "拉机构上线"
  788. }
  789. },
  790. {
  791. "path": "login/register-general",
  792. "style": {
  793. "navigationBarTitleText": "个人机构"
  794. }
  795. },
  796. {
  797. "path": "login/register-member",
  798. "style": {
  799. "navigationBarTitleText": "资质机构"
  800. }
  801. },
  802. {
  803. "path": "login/information",
  804. "style": {
  805. "navigationBarTitleText": "修改资料",
  806. "navigationStyle": "custom"
  807. }
  808. },
  809. {
  810. "path": "login/apply",
  811. "style": {
  812. "navigationBarTitleText": "修改申请信息",
  813. "navigationStyle": "custom"
  814. }
  815. },
  816. {
  817. "path": "order/order-historylist",
  818. "style": {
  819. "navigationBarTitleText": "订单列表"
  820. }
  821. }, {
  822. "path": "order/search-order",
  823. "style": {
  824. "navigationBarTitleText": "订单搜索"
  825. }
  826. },
  827. {
  828. "path": "address/address",
  829. "style": {
  830. "navigationBarTitleText": "选择地址"
  831. }
  832. },
  833. {
  834. "path": "address/addressManage",
  835. "style": {
  836. "navigationBarTitleText": "添加地址"
  837. }
  838. },
  839. {
  840. "path": "remarks/list",
  841. "style": {
  842. "navigationBarTitleText": "注册客户咨询记录"
  843. }
  844. },
  845. {
  846. "path": "remarks/add",
  847. "style": {
  848. "navigationBarTitleText": "添加记录"
  849. }
  850. },
  851. {
  852. "path": "remarks/details",
  853. "style": {
  854. "navigationBarTitleText": "记录详情"
  855. }
  856. },
  857. {
  858. "path": "remarks/customer-list",
  859. "style": {
  860. "navigationBarTitleText": "选择咨询人"
  861. }
  862. },
  863. {
  864. "path": "remarks/record-list",
  865. "style": {
  866. "navigationBarTitleText": "未注册客户咨询记录"
  867. }
  868. },
  869. {
  870. "path": "remarks/add-record",
  871. "style": {
  872. "navigationBarTitleText": "添加记录"
  873. }
  874. },
  875. {
  876. "path": "remarks/record-details",
  877. "style": {
  878. "navigationBarTitleText": "记录详情"
  879. }
  880. },
  881. {
  882. "path": "remarks/report-add",
  883. "style": {
  884. "navigationBarTitleText": "新建报备"
  885. }
  886. },
  887. {
  888. "path": "remarks/report-details",
  889. "style": {
  890. "navigationBarTitleText": "报备详情"
  891. }
  892. },
  893. {
  894. "path": "remarks/report-list",
  895. "style": {
  896. "navigationBarTitleText": "注册客户报备记录"
  897. }
  898. },
  899. {
  900. "path": "remarks/report-visitor-list",
  901. "style": {
  902. "navigationBarTitleText": "报备记录"
  903. }
  904. },
  905. {
  906. "path": "remarks/relation-consult-list",
  907. "style": {
  908. "navigationBarTitleText": "关联咨询记录"
  909. }
  910. },
  911. {
  912. "path": "remarks/relation-visitor-list",
  913. "style": {
  914. "navigationBarTitleText": "关联咨询记录"
  915. }
  916. },
  917. {
  918. "path": "remarks/business-card",
  919. "style": {
  920. "navigationBarTitleText": "我的名片"
  921. }
  922. },
  923. {
  924. "path": "remarks/mine-qrcode",
  925. "style": {
  926. "navigationBarTitleText": "二维码"
  927. }
  928. },
  929. {
  930. "path": "remarks/mine-card",
  931. "style": {
  932. "navigationBarTitleText": "我的名片"
  933. }
  934. },
  935. {
  936. "path": "remarks/institutional-activity-analysis",
  937. "style": {
  938. "navigationBarTitleText": "机构活跃分析",
  939. "enablePullDownRefresh": true,
  940. "navigationStyle": "custom"
  941. }
  942. },
  943. {
  944. "path" : "notice/service/service",
  945. "style" : {
  946. "navigationBarTitleText": "服务通知",
  947. "enablePullDownRefresh": true
  948. }
  949. },
  950. {
  951. "path" : "notice/service/Institutional_visits",
  952. "style" : {
  953. "navigationBarTitleText": "机构访问通知",
  954. "enablePullDownRefresh": true
  955. }
  956. },
  957. {
  958. "path" : "notice/service/visits_details",
  959. "style" : {
  960. "navigationBarTitleText": "访问详情",
  961. "enablePullDownRefresh": true
  962. }
  963. }
  964. ]
  965. },
  966. {
  967. "root": "pages/h5/", //活动分包模块
  968. "pages": [{
  969. "path": "activity/activity",
  970. "style": {
  971. "navigationBarTitleText": ""
  972. }
  973. },
  974. {
  975. "path": "activity/activity_mid",
  976. "style": {
  977. "navigationBarTitleText": "年中大促",
  978. "enablePullDownRefresh": true
  979. }
  980. },
  981. {
  982. "path": "activity/couponExp",
  983. "style": {
  984. "navigationBarTitleText": "优惠券介绍",
  985. "enablePullDownRefresh": true
  986. }
  987. },
  988. {
  989. "path": "activity/activity-topic",
  990. "style": {
  991. "navigationBarTitleText": "活动专题",
  992. "enablePullDownRefresh": true
  993. }
  994. },
  995. {
  996. "path": "activity/quick-operation",
  997. "style": {
  998. "navigationBarTitleText": "",
  999. "enablePullDownRefresh": true
  1000. }
  1001. },
  1002. {
  1003. "path": "activity/activity-detail",
  1004. "style": {
  1005. "navigationBarTitleText": "活动专题",
  1006. "enablePullDownRefresh": true
  1007. }
  1008. },
  1009. {
  1010. "path": "activity/activity-floorMore",
  1011. "style": {
  1012. "navigationBarTitleText": "更多",
  1013. "enablePullDownRefresh": true
  1014. }
  1015. },
  1016. {
  1017. "path": "article/page",
  1018. "style": {
  1019. "navigationBarTitleText": "采美采购平台",
  1020. "enablePullDownRefresh": true
  1021. }
  1022. },
  1023. {
  1024. "path": "article/path",
  1025. "style": {
  1026. "navigationBarTitleText": "采美采购平台",
  1027. "enablePullDownRefresh": true
  1028. }
  1029. },
  1030. {
  1031. "path": "article/page-image",
  1032. "style": {
  1033. "navigationBarTitleText": "采美采购平台"
  1034. }
  1035. },
  1036. {
  1037. "path": "article/path-live",
  1038. "style": {
  1039. "navigationBarTitleText": "采美采购平台",
  1040. "enablePullDownRefresh": true
  1041. }
  1042. },
  1043. {
  1044. "path": "activity/activity-list",
  1045. "style": {
  1046. "navigationBarTitleText": "商品专题",
  1047. "enablePullDownRefresh": true
  1048. }
  1049. },
  1050. {
  1051. "path": "other/repair",
  1052. "style": {
  1053. "navigationBarTitleText": "维修"
  1054. }
  1055. },
  1056. {
  1057. "path": "other/brand",
  1058. "style": {
  1059. "navigationBarTitleText": "品牌招商"
  1060. }
  1061. },
  1062. {
  1063. "path": "other/brands",
  1064. "style": {
  1065. "navigationBarTitleText": "品牌招商"
  1066. }
  1067. },
  1068. {
  1069. "path": "other/attestation",
  1070. "style": {
  1071. "navigationBarTitleText": "采美认证通"
  1072. }
  1073. }
  1074. ]
  1075. }, {
  1076. "root": "pages/search/", //搜索分包模块
  1077. "pages": [{
  1078. "path": "search",
  1079. "style": {
  1080. "navigationBarTitleText": "搜索"
  1081. }
  1082. }, {
  1083. "path": "search-supplier",
  1084. "style": {
  1085. "navigationBarTitleText": "搜索供应商"
  1086. }
  1087. }, {
  1088. "path": "search-instrument",
  1089. "style": {
  1090. "navigationBarTitleText": "搜索仪器"
  1091. }
  1092. }, {
  1093. "path": "search-second",
  1094. "style": {
  1095. "navigationBarTitleText": "二手搜索"
  1096. }
  1097. }, {
  1098. "path": "search-library",
  1099. "style": {
  1100. "navigationBarTitleText": "搜索",
  1101. "enablePullDownRefresh": false
  1102. }
  1103. }]
  1104. }, {
  1105. "root": "pages/second/",
  1106. "pages": [{
  1107. "path": "form/introduce",
  1108. "style": {
  1109. "navigationBarTitleText": "二手市场介绍",
  1110. "enablePullDownRefresh": true
  1111. }
  1112. },
  1113. {
  1114. "path": "form/form",
  1115. "style": {
  1116. "navigationBarTitleText": "发布二手估价商品"
  1117. }
  1118. },
  1119. {
  1120. "path": "form/form-seller",
  1121. "style": {
  1122. "navigationBarTitleText": "发布二手预成交商品"
  1123. }
  1124. },
  1125. {
  1126. "path": "form/form-presale",
  1127. "style": {
  1128. "navigationBarTitleText": "发布二手估价商品"
  1129. }
  1130. },
  1131. {
  1132. "path": "form/form-select",
  1133. "style": {
  1134. "navigationBarTitleText": "选择发布类型"
  1135. }
  1136. },
  1137. {
  1138. "path": "product/product-list",
  1139. "style": {
  1140. "navigationBarTitleText": "二手商品",
  1141. "enablePullDownRefresh": true
  1142. }
  1143. },
  1144. {
  1145. "path": "product/product-details",
  1146. "style": {
  1147. "navigationBarTitleText": "商品详情",
  1148. "enablePullDownRefresh": true,
  1149. "navigationStyle": "custom"
  1150. }
  1151. }
  1152. ]
  1153. },
  1154. {
  1155. "root": "pages/supplier/",
  1156. "pages": [{
  1157. "path": "index/index",
  1158. "style": {
  1159. "navigationBarTitleText": "采美采购商城",
  1160. "enablePullDownRefresh": true,
  1161. "navigationStyle": "custom"
  1162. }
  1163. }, {
  1164. "path": "login/bind-operator",
  1165. "style": {
  1166. "navigationBarTitleText": "绑定微信"
  1167. }
  1168. },
  1169. {
  1170. "path": "user/my-product",
  1171. "style": {
  1172. "navigationBarTitleText": "我的商品",
  1173. "enablePullDownRefresh": true
  1174. }
  1175. },
  1176. {
  1177. "path": "user/my-shop",
  1178. "style": {
  1179. "navigationBarTitleText": "店铺主页",
  1180. "navigationStyle": "custom"
  1181. }
  1182. }, {
  1183. "path": "login/share-login",
  1184. "style": {
  1185. "navigationBarTitleText": "查看订单"
  1186. }
  1187. }, {
  1188. "path": "login/share-info",
  1189. "style": {
  1190. "navigationBarTitleText": "订单详情",
  1191. "navigationStyle": "custom"
  1192. }
  1193. }, {
  1194. "path": "order/order-details",
  1195. "style": {
  1196. "navigationBarTitleText": "订单详情",
  1197. "enablePullDownRefresh": true
  1198. }
  1199. }, {
  1200. "path": "user/supplier",
  1201. "style": {
  1202. "navigationBarTitleText": "供应商信息"
  1203. }
  1204. }, {
  1205. "path": "order/order-list",
  1206. "style": {
  1207. "navigationBarTitleText": "我的订单",
  1208. "enablePullDownRefresh": true
  1209. }
  1210. }, {
  1211. "path": "order/order-service-details",
  1212. "style": {
  1213. "navigationBarTitleText": "订单详情",
  1214. "navigationStyle": "custom",
  1215. "enablePullDownRefresh": true
  1216. }
  1217. },
  1218. {
  1219. "path": "deliver/add-logistics",
  1220. "style": {
  1221. "navigationBarTitleText": "录入物流信息"
  1222. }
  1223. },
  1224. {
  1225. "path": "deliver/qualifications-add",
  1226. "style": {
  1227. "navigationBarTitleText": "上传商品资质"
  1228. }
  1229. },
  1230. {
  1231. "path": "deliver/qualifications-details",
  1232. "style": {
  1233. "navigationBarTitleText": "商品资质"
  1234. }
  1235. },
  1236. {
  1237. "path": "deliver/deliver-goods",
  1238. "style": {
  1239. "navigationBarTitleText": "发货",
  1240. "enablePullDownRefresh": true
  1241. }
  1242. },
  1243. {
  1244. "path": "deliver/deliver-record",
  1245. "style": {
  1246. "navigationBarTitleText": "发货记录",
  1247. "enablePullDownRefresh": true,
  1248. "navigationStyle": "custom"
  1249. }
  1250. },
  1251. {
  1252. "path": "deliver/logistics-list",
  1253. "style": {
  1254. "navigationBarTitleText": "物流公司"
  1255. }
  1256. },
  1257. {
  1258. "path": "user/setting/password",
  1259. "style": {
  1260. "navigationBarTitleText": "修改密码"
  1261. }
  1262. },
  1263. {
  1264. "path": "user/setting/phone",
  1265. "style": {
  1266. "navigationBarTitleText": "更换手机号"
  1267. }
  1268. },
  1269. {
  1270. "path": "user/setting/setting",
  1271. "style": {
  1272. "navigationBarTitleText": "账户设置"
  1273. }
  1274. },
  1275. {
  1276. "path": "user/operator/list",
  1277. "style": {
  1278. "navigationBarTitleText": "运营人员管理"
  1279. }
  1280. },
  1281. {
  1282. "path": "user/operator/addoperator",
  1283. "style": {
  1284. "navigationBarTitleText": "添加运营人员"
  1285. }
  1286. },
  1287. {
  1288. "path": "user/information",
  1289. "style": {
  1290. "navigationBarTitleText": "资料信息"
  1291. }
  1292. }
  1293. ]
  1294. }
  1295. ],
  1296. "tabBar": {
  1297. "height": "80",
  1298. "color": "#999999",
  1299. "selectedColor": "#FF5B00",
  1300. "borderStyle": "black",
  1301. "backgroundColor": "#ffffff",
  1302. "list": [{
  1303. "pagePath": "pages/tabBar/home/index",
  1304. "iconPath": "static/icon-home@3x.png",
  1305. "selectedIconPath": "static/icon-home-active@3x.png",
  1306. "text": "商城"
  1307. }, {
  1308. "pagePath": "pages/tabBar/category/index",
  1309. "iconPath": "static/icon-sort@3x.png",
  1310. "selectedIconPath": "static/icon-sort-active@3x.png",
  1311. "text": "分类"
  1312. },
  1313. {
  1314. "pagePath": "pages/tabBar/notice/index",
  1315. "iconPath": "static/icon-news@3x.png",
  1316. "selectedIconPath": "static/icon-news-active@3x.png",
  1317. "text": "消息"
  1318. },
  1319. {
  1320. "pagePath": "pages/tabBar/cart/index",
  1321. "iconPath": "static/icon-cart@3x.png",
  1322. "selectedIconPath": "static/icon-cart-active@3x.png",
  1323. "text": "购物车"
  1324. },
  1325. {
  1326. "pagePath": "pages/tabBar/user/user",
  1327. "iconPath": "static/icon-user@3x.png",
  1328. "selectedIconPath": "static/icon-user-active@3x.png",
  1329. "text": "我的"
  1330. }
  1331. ]
  1332. },
  1333. "easycom": {
  1334. "autoscan": true,
  1335. "custom": {
  1336. "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
  1337. }
  1338. },
  1339. "globalStyle": {
  1340. "navigationBarTextStyle": "black",
  1341. "navigationBarTitleText": "采美采购商城",
  1342. "navigationBarBackgroundColor": "#FFFFFF",
  1343. "backgroundColor": "#FFFFFF"
  1344. },
  1345. "condition": { //模式配置,仅开发期间生效
  1346. "current": 0, //当前激活的模式(list 的索引项)
  1347. "list": [{
  1348. "name": "", //模式名称
  1349. "path": "", //启动页面,必选
  1350. "query": "" //启动参数,在页面的onLoad函数里面得到
  1351. }]
  1352. }
  1353. }