pages.json 31 KB

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