pages.json 34 KB

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