pages.json 33 KB

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