pages.json 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "navigationStyle": "custom",
  8. // #ifdef APP-PLUS
  9. "enablePullDownRefresh": true,
  10. // #endif
  11. "app-plus": {
  12. "scrollIndicator": false //禁用原生导航栏
  13. }
  14. }
  15. },
  16. {
  17. "path": "pages/index/bdzq",
  18. "style": {
  19. "navigationBarTitleText": "积分专区"
  20. }
  21. },
  22. {
  23. "path": "pages/index/xfqzq",
  24. "style": {
  25. "navigationBarTitleText": "消费专区"
  26. }
  27. },
  28. {
  29. "path": "pages/order_addcart/order_addcart",
  30. "style": {
  31. "navigationBarTitleText": "购物车"
  32. }
  33. },
  34. {
  35. "path": "pages/plant_grass/index",
  36. "style": {
  37. "navigationBarTitleText": "种草社区"
  38. }
  39. },
  40. {
  41. "path": "pages/user/index",
  42. "style": {
  43. "navigationBarTitleText": "个人中心"
  44. //,
  45. //"navigationBarBackgroundColor": "#EB3C3C"
  46. // #ifdef MP || APP-PLUS
  47. // ,
  48. //"navigationBarTextStyle": "#fff"
  49. // #endif
  50. }
  51. },
  52. {
  53. "path": "pages/user/xfjfzz",
  54. "style": {
  55. "navigationBarTitleText": "积分转账"
  56. }
  57. },
  58. {
  59. "path": "pages/user/mythq",
  60. "style": {
  61. "navigationBarTitleText": "消费券",
  62. "app-plus": {
  63. "titleNView": false
  64. }
  65. }
  66. },
  67. {
  68. "path": "pages/user/myggz",
  69. "style": {
  70. "navigationBarTitleText": "贡献值",
  71. "app-plus": {
  72. "titleNView": false
  73. }
  74. }
  75. },
  76. {
  77. "path": "pages/user/account",
  78. "style": {
  79. "navigationBarTitleText": "提现账号"
  80. }
  81. },
  82. {
  83. "path": "pages/user/mygwjf",
  84. "style": {
  85. "navigationBarTitleText": "静态积分",
  86. "app-plus": {
  87. "titleNView": false
  88. }
  89. }
  90. },
  91. {
  92. "path": "pages/user/myjf",
  93. "style": {
  94. "navigationBarTitleText": "动态积分",
  95. "app-plus": {
  96. "titleNView": false
  97. }
  98. }
  99. },
  100. {
  101. "path": "pages/goods_details/index",
  102. "style": {
  103. "navigationStyle": "custom"
  104. // #ifdef MP || APP-PLUS
  105. ,
  106. "navigationBarTextStyle": "#fff"
  107. // #endif
  108. }
  109. },
  110. {
  111. "path": "pages/goods_cate/goods_cate",
  112. "style": {
  113. "navigationBarTitleText": "商品分类"
  114. }
  115. },
  116. {
  117. "path": "pages/news_list/index",
  118. "style": {
  119. "navigationBarTitleText": "资讯"
  120. }
  121. },
  122. {
  123. "path": "pages/news_details/index",
  124. "style": {
  125. "navigationBarTitleText": "资讯详情"
  126. }
  127. },
  128. {
  129. "path": "pages/auth/index",
  130. "style": {
  131. "navigationBarTitleText": "加载中"
  132. }
  133. },
  134. {
  135. "path": "pages/order_pay_status/index",
  136. "style": {
  137. "navigationBarTitleText": "支付成功"
  138. }
  139. },
  140. {
  141. "path": "pages/error/index",
  142. "style": {
  143. "navigationBarTitleText": "网站已关闭"
  144. }
  145. },
  146. {
  147. "path": "pages/order_details/index",
  148. "style": {
  149. "navigationBarTitleText": "订单详情"
  150. //,
  151. //"navigationBarBackgroundColor": "#e93323"
  152. // #ifdef MP || APP-PLUS
  153. // ,
  154. //"navigationBarTextStyle": "#fff"
  155. // #endif
  156. }
  157. },
  158. {
  159. "path": "pages/order_details/stay",
  160. "style": {
  161. "navigationBarTitleText": "订单详情"
  162. //,
  163. //"navigationBarBackgroundColor": "#e93323"
  164. // #ifdef MP || APP-PLUS
  165. // ,
  166. //"navigationBarTextStyle": "#fff"
  167. // #endif
  168. }
  169. },
  170. {
  171. "path": "pages/order_details/delivery",
  172. "style": {
  173. "navigationBarTitleText": "配送详情"
  174. //,
  175. //"navigationBarBackgroundColor": "#e93323"
  176. // #ifdef MP || APP-PLUS
  177. // ,
  178. //"navigationBarTextStyle": "#fff"
  179. // #endif
  180. }
  181. },
  182. {
  183. "path": "pages/order_pay_back/index",
  184. "style": {
  185. "navigationBarTitleText": "支付提示"
  186. }
  187. }
  188. ],
  189. "subPackages": [{
  190. "root": "pages/users",
  191. "name": "users",
  192. "pages": [{
  193. "path": "retrievePassword/index",
  194. "style": {
  195. "navigationBarTitleText": "忘记密码"
  196. }
  197. },
  198. {
  199. "path": "user_setting/index",
  200. "style": {
  201. "navigationBarTitleText": "设置"
  202. }
  203. },
  204. //协议,关于
  205. {
  206. "path": "user_about/index",
  207. "style": {
  208. "navigationBarTitleText": ""
  209. }
  210. },
  211. {
  212. "path": "agreement_rules/index",
  213. "style": {
  214. "navigationBarTitleText": "协议规则"
  215. }
  216. },
  217. {
  218. "path": "user_info/index",
  219. "style": {
  220. "navigationBarTitleText": "个人资料"
  221. }
  222. },
  223. {
  224. "path": "user_nickname/index",
  225. "style": {
  226. "navigationBarTitleText": "昵称"
  227. }
  228. },
  229. {
  230. "path": "user_get_coupon/index",
  231. "style": {
  232. "navigationBarTitleText": "领取优惠券"
  233. }
  234. },
  235. {
  236. "path": "user_goods_collection/index",
  237. "style": {
  238. "navigationBarTitleText": "收藏商品"
  239. }
  240. },
  241. {
  242. "path": "user_sgin/index",
  243. "style": {
  244. "navigationBarTitleText": "签到"
  245. }
  246. },
  247. {
  248. "path": "user_sgin_list/index",
  249. "style": {
  250. "navigationBarTitleText": "签到记录"
  251. }
  252. },
  253. {
  254. "path": "user_money/index",
  255. "style": {
  256. "navigationBarTitleText": "我的账户"
  257. }
  258. },
  259. {
  260. "path": "user_bill/index",
  261. "style": {
  262. "navigationBarTitleText": "账单明细"
  263. }
  264. },
  265. {
  266. "path": "user_integral/index",
  267. "style": {
  268. "navigationBarTitleText": "积分详情"
  269. }
  270. },
  271. {
  272. "path": "user_brokerage/index",
  273. "style": {
  274. "navigationBarTitleText": "分销等级"
  275. }
  276. },
  277. {
  278. "path": "user_grade/index",
  279. "style": {
  280. "navigationBarTitleText": "我的等级",
  281. "navigationBarBackgroundColor": "#282828"
  282. // #ifdef MP || APP-PLUS
  283. ,
  284. "navigationBarTextStyle": "#fff"
  285. // #endif
  286. }
  287. },
  288. {
  289. "path": "user_grade_list/index",
  290. "style": {
  291. "navigationBarTitleText": "成长值记录",
  292. "navigationBarBackgroundColor": "#282828"
  293. // #ifdef MP || APP-PLUS
  294. ,
  295. "navigationBarTextStyle": "#fff"
  296. // #endif
  297. }
  298. },
  299. {
  300. "path": "user_coupon/index",
  301. "style": {
  302. "navigationBarTitleText": "我的优惠券"
  303. }
  304. },
  305. {
  306. "path": "user_spread_user/index",
  307. "style": {
  308. "navigationBarTitleText": "我的推广"
  309. //,
  310. //"navigationBarBackgroundColor": "#e93323"
  311. // #ifdef MP || APP-PLUS
  312. // ,
  313. //"navigationBarTextStyle": "#fff"
  314. // #endif
  315. }
  316. },
  317. {
  318. "path": "user_spread_code/index",
  319. "style": {
  320. "navigationBarTitleText": "分销海报"
  321. }
  322. },
  323. {
  324. "path": "user_spread_money/index",
  325. "style": {
  326. "navigationBarTitleText": "佣金记录"
  327. //,
  328. //"navigationBarBackgroundColor": "#e93323"
  329. // #ifdef MP || APP-PLUS
  330. // ,
  331. //"navigationBarTextStyle": "#fff"
  332. // #endif
  333. }
  334. },
  335. {
  336. "path": "user_cash/index",
  337. "style": {
  338. "navigationBarTitleText": "提现"
  339. //,
  340. //"navigationBarBackgroundColor": "#e93323"
  341. // #ifdef MP || APP-PLUS
  342. // ,
  343. //"navigationBarTextStyle": "#fff"
  344. // #endif
  345. }
  346. },
  347. {
  348. "path": "user_address_list/index",
  349. "style": {
  350. "navigationBarTitleText": "地址管理"
  351. }
  352. },
  353. {
  354. "path": "user_address/index",
  355. "style": {
  356. "navigationBarTitleText": "添加地址"
  357. }
  358. },
  359. {
  360. "path": "user_phone/index",
  361. "style": {
  362. "navigationBarTitleText": "绑定手机"
  363. //,
  364. //"navigationBarBackgroundColor": "#e93323"
  365. // #ifdef MP || APP-PLUS
  366. //,
  367. //"navigationBarTextStyle": "#fff"
  368. // #endif
  369. }
  370. },
  371. {
  372. "path": "user_modify_phone/index",
  373. "style": {
  374. "navigationBarTitleText": "修改手机号"
  375. // #ifdef MP || APP-PLUS
  376. // ,
  377. //"navigationBarTextStyle": "#fff"
  378. // #endif
  379. }
  380. },
  381. {
  382. "path": "user_modify_pwd/index",
  383. "style": {
  384. "navigationBarTitleText": "修改密码"
  385. // #ifdef MP || APP-PLUS
  386. // ,
  387. // "navigationBarTextStyle": "#fff"
  388. // #endif
  389. }
  390. },
  391. {
  392. "path": "user_payment/index",
  393. "style": {
  394. "navigationBarTitleText": "余额充值"
  395. }
  396. },
  397. {
  398. "path": "user_pwd_edit/index",
  399. "style": {
  400. "navigationBarTitleText": "修改密码"
  401. // #ifdef MP || APP-PLUS
  402. ,
  403. "navigationBarTextStyle": "#fff"
  404. // #endif
  405. }
  406. },
  407. {
  408. "path": "order_confirm/index",
  409. "style": {
  410. "navigationBarTitleText": "提交订单"
  411. }
  412. },
  413. {
  414. "path": "goods_details_store/index",
  415. "style": {
  416. "navigationBarTitleText": "门店列表"
  417. }
  418. },
  419. {
  420. "path": "promoter-list/index",
  421. "style": {
  422. "navigationBarTitleText": "推广人列表"
  423. // #ifdef MP || APP-PLUS
  424. // ,
  425. //"navigationBarTextStyle": "#fff"
  426. // #endif
  427. }
  428. },
  429. {
  430. "path": "promoter-order/index",
  431. "style": {
  432. "navigationBarTitleText": "推广人订单"
  433. //,
  434. //"navigationBarBackgroundColor": "#e93323"
  435. // #ifdef MP || APP-PLUS
  436. // ,
  437. //"navigationBarTextStyle": "#fff"
  438. // #endif
  439. }
  440. },
  441. {
  442. "path": "promoter_rank/index",
  443. "style": {
  444. "navigationBarTitleText": "推广人排行"
  445. //,
  446. //"navigationBarBackgroundColor": "#e93323"
  447. // #ifdef MP || APP-PLUS
  448. // ,
  449. //"navigationBarTextStyle": "#fff"
  450. // #endif
  451. }
  452. },
  453. {
  454. "path": "commission_rank/index",
  455. "style": {
  456. "navigationBarTitleText": "佣金排行"
  457. // "navigationBarBackgroundColor": "#e93323"
  458. // #ifdef MP || APP-PLUS
  459. // ,
  460. // "navigationBarTextStyle": "#fff"
  461. // #endif
  462. }
  463. },
  464. {
  465. "path": "order_list/index",
  466. "style": {
  467. "navigationBarTitleText": "我的订单"
  468. }
  469. },
  470. {
  471. "path": "presell_order_list/index",
  472. "style": {
  473. "navigationBarTitleText": "预售订单"
  474. }
  475. },
  476. {
  477. "path": "goods_logistics/index",
  478. "style": {
  479. "navigationBarTitleText": "物流信息"
  480. }
  481. },
  482. {
  483. "path": "user_return_list/index",
  484. "style": {
  485. "navigationBarTitleText": "退货列表"
  486. }
  487. },
  488. {
  489. "path": "goods_return/index",
  490. "style": {
  491. "navigationBarTitleText": "申请退货"
  492. }
  493. },
  494. {
  495. "path": "login/index",
  496. "style": {
  497. "navigationBarTitleText": "登录",
  498. "navigationBarBackgroundColor": "#e93323"
  499. // #ifdef MP || APP-PLUS
  500. ,
  501. "navigationBarTextStyle": "#fff"
  502. // #endif
  503. }
  504. },
  505. {
  506. "path": "goods_comment_list/index",
  507. "style": {
  508. "navigationBarTitleText": "商品评分"
  509. }
  510. },
  511. {
  512. "path": "goods_comment_con/index",
  513. "style": {
  514. "navigationBarTitleText": "商品评价"
  515. }
  516. },
  517. {
  518. "path": "feedback/index",
  519. "style": {
  520. "navigationBarTitleText": "问题反馈",
  521. "backgroundColor": "#FFFFFF"
  522. }
  523. },
  524. {
  525. "path": "feedback/list",
  526. "style": {
  527. "navigationBarTitleText": "反馈记录",
  528. "backgroundColor": "#FFFFFF"
  529. }
  530. },
  531. {
  532. "path": "feedback/detail",
  533. "style": {
  534. "navigationBarTitleText": "反馈内容",
  535. "backgroundColor": "#FFFFFF"
  536. }
  537. },
  538. {
  539. "path": "refund/index",
  540. "style": {
  541. "navigationBarTitleText": "批量退款",
  542. "backgroundColor": "#FFFFFF"
  543. }
  544. },
  545. {
  546. "path": "refund/confirm",
  547. "style": {
  548. "navigationBarTitleText": "申请退款",
  549. "backgroundColor": "#FFFFFF"
  550. }
  551. },
  552. {
  553. "path": "refund/detail",
  554. "style": {
  555. "navigationBarTitleText": "退款详情",
  556. "backgroundColor": "#FFFFFF"
  557. }
  558. },
  559. {
  560. "path": "refund/select",
  561. "style": {
  562. "navigationBarTitleText": "选择服务类型",
  563. "backgroundColor": "#FFFFFF"
  564. }
  565. },
  566. {
  567. "path": "refund/goods/index",
  568. "style": {
  569. "navigationBarTitleText": "退货退款",
  570. "backgroundColor": "#FFFFFF"
  571. }
  572. },
  573. {
  574. "path": "refund/list",
  575. "style": {
  576. "navigationBarTitleText": "退货列表",
  577. "backgroundColor": "#FFFFFF"
  578. }
  579. },
  580. {
  581. "path": "refund/logistics",
  582. "style": {
  583. "navigationBarTitleText": "物流信息",
  584. "backgroundColor": "#FFFFFF"
  585. }
  586. },
  587. {
  588. "path": "user_store_attention/index",
  589. "style": {
  590. "navigationBarTitleText": "关注店铺",
  591. "backgroundColor": "#FFFFFF"
  592. }
  593. },
  594. {
  595. "path": "browsingHistory/index",
  596. "style": {
  597. "navigationBarTitleText": "浏览记录",
  598. "backgroundColor": "#FFFFFF"
  599. }
  600. },
  601. {
  602. "path": "distributor/index",
  603. "style": {
  604. "navigationBarTitleText": "成为分销",
  605. "backgroundColor": "#FFFFFF"
  606. }
  607. },
  608. {
  609. "path": "user_invoice_list/index",
  610. "style": {
  611. "navigationBarTitleText": "发票管理"
  612. }
  613. },
  614. {
  615. "path": "user_invoice_form/index",
  616. "style": {
  617. "navigationBarTitleText": "添加新发票"
  618. }
  619. },
  620. {
  621. "path": "user_invoicing/index",
  622. "style": {
  623. "navigationBarTitleText": "开具发票"
  624. }
  625. },
  626. {
  627. "path": "user_invoice_order/index",
  628. "style": {
  629. "navigationBarTitleText": "订单详情"
  630. //,
  631. //"navigationBarBackgroundColor": "#e93323"
  632. // #ifdef MP || APP-PLUS
  633. //,
  634. //"navigationBarTextStyle": "#fff"
  635. // #endif
  636. }
  637. }, {
  638. "path": "privacy/index",
  639. "style": {
  640. "navigationBarTitleText": "",
  641. "enablePullDownRefresh": false
  642. }
  643. }
  644. ]
  645. },
  646. {
  647. "root": "pages/store",
  648. "name": "store",
  649. "pages": [{
  650. "path": "index",
  651. "style": {
  652. "navigationStyle": "custom",
  653. "navigationBarTitleText": "店铺diy首页"
  654. // #ifdef MP
  655. ,
  656. "navigationBarTextStyle": "#FFFFFF"
  657. // #endif
  658. }
  659. }, {
  660. "path": "home/index",
  661. "style": {
  662. "navigationStyle": "custom",
  663. "navigationBarTitleText": "店铺首页"
  664. // #ifdef MP
  665. ,
  666. "navigationBarTextStyle": "#FFFFFF"
  667. // #endif
  668. }
  669. },
  670. {
  671. "path": "detail/index",
  672. "style": {
  673. "navigationBarTitleText": "店铺详情"
  674. }
  675. },
  676. {
  677. "path": "list/index",
  678. "style": {
  679. "navigationBarTitleText": "商品列表"
  680. }
  681. },
  682. {
  683. "path": "settled/index",
  684. "style": {
  685. "navigationBarTitleText": "商家入驻"
  686. }
  687. }, {
  688. "path": "applicationRecord/index",
  689. "style": {
  690. "navigationBarTitleText": "申请记录"
  691. }
  692. }, {
  693. "path": "merchantDetails/index",
  694. "style": {
  695. "navigationBarTitleText": "审核通过"
  696. }
  697. },
  698. {
  699. "path": "shopStreet/index",
  700. "style": {
  701. "navigationBarTitleText": "店铺街"
  702. }
  703. },
  704. {
  705. "path": "qualifications/index",
  706. "style": {
  707. "navigationBarTitleText": "店铺资质信息"
  708. }
  709. }
  710. ]
  711. },
  712. {
  713. "root": "pages/admin",
  714. "name": "adminOrder",
  715. "pages": [{
  716. "path": "order/index",
  717. "style": {
  718. "navigationBarTitleText": "订单首页"
  719. }
  720. },
  721. {
  722. "path": "orderList/index",
  723. "style": {
  724. "navigationBarTitleText": "订单列表"
  725. }
  726. },
  727. {
  728. "path": "orderRefund/index",
  729. "style": {
  730. "navigationBarTitleText": "立即退款"
  731. }
  732. },
  733. {
  734. "path": "business/index",
  735. "style": {
  736. "navigationBarTitleText": "商家管理"
  737. }
  738. },
  739. {
  740. "path": "orderDetail/index",
  741. "style": {
  742. "navigationBarTitleText": "订单详情"
  743. }
  744. },
  745. {
  746. "path": "refundDetail/index",
  747. "style": {
  748. "navigationBarTitleText": "退款单详情"
  749. }
  750. },
  751. {
  752. "path": "delivery/index",
  753. "style": {
  754. "navigationBarTitleText": "订单发货"
  755. }
  756. },
  757. {
  758. "path": "statistics/index",
  759. "style": {
  760. "navigationBarTitleText": "订单数据统计"
  761. }
  762. },
  763. {
  764. "path": "order_cancellation/index",
  765. "style": {
  766. "navigationBarTitleText": "订单核销"
  767. // #ifdef MP || APP-PLUS
  768. //,
  769. //"navigationBarTextStyle": "#fff",
  770. //"navigationBarBackgroundColor": "#E93323"
  771. // #endif
  772. }
  773. },
  774. {
  775. "path": "goods_details/index",
  776. "style": {
  777. "navigationBarTitleText": "商品详情"
  778. }
  779. }
  780. ]
  781. },
  782. {
  783. "root": "pages/product",
  784. "name": "product",
  785. "pages": [{
  786. "path": "list/index",
  787. "style": {
  788. "navigationBarTitleText": "商品管理"
  789. }
  790. },
  791. {
  792. "path": "goodsOnSale/index",
  793. "style": {
  794. "onReachBottomDistance": 100,
  795. "navigationBarTitleText": "在售商品",
  796. "enablePullDownRefresh": false
  797. }
  798. },
  799. {
  800. "path": "soldOutGoods/index",
  801. "style": {
  802. "onReachBottomDistance": 100,
  803. "navigationBarTitleText": "售罄商品",
  804. "enablePullDownRefresh": false
  805. }
  806. },
  807. {
  808. "path": "recycleBin/index",
  809. "style": {
  810. "onReachBottomDistance": 100,
  811. "navigationBarTitleText": "回收站",
  812. "enablePullDownRefresh": false
  813. }
  814. },
  815. {
  816. "path": "storeClassification/index",
  817. "style": {
  818. "navigationBarTitleText": "店铺分类"
  819. }
  820. },
  821. {
  822. "path": "storeClassification/addStoreClass",
  823. "style": {
  824. "navigationBarTitleText": "添加店铺分类"
  825. }
  826. },
  827. {
  828. "path": "addGoods/index",
  829. "style": {
  830. "navigationBarTitleText": "添加商品"
  831. }
  832. },
  833. {
  834. "path": "addGoods/secound",
  835. "style": {
  836. "navigationBarTitleText": "添加商品"
  837. }
  838. },
  839. {
  840. "path": "addGoods/addGoodDetils",
  841. "style": {
  842. "navigationBarTitleText": "商品详情"
  843. }
  844. },
  845. {
  846. "path": "addGoods/singleSpecification",
  847. "style": {
  848. "navigationBarTitleText": "单规格"
  849. }
  850. },
  851. {
  852. "path": "addGoods/mulSpecification",
  853. "style": {
  854. "navigationBarTitleText": "多规格"
  855. }
  856. },
  857. {
  858. "path": "addGoods/specificationProperties",
  859. "style": {
  860. "navigationBarTitleText": "规格属性"
  861. }
  862. },
  863. {
  864. "path": "addGoods/freightTemplate",
  865. "style": {
  866. "navigationBarTitleText": "运费模板",
  867. "onReachBottomDistance": 100,
  868. "enablePullDownRefresh": false
  869. }
  870. },
  871. {
  872. "path": "addGoods/addFreightTemplate",
  873. "style": {
  874. "navigationBarTitleText": "新增运费模板"
  875. }
  876. },
  877. {
  878. "path": "addGoods/modifyPrice",
  879. "style": {
  880. "navigationBarTitleText": "修改价格-多规格"
  881. }
  882. }
  883. ]
  884. },
  885. {
  886. "root": "pages/plantGrass",
  887. "name": "plant_grass",
  888. "pages": [{
  889. "path": "plant_detail/index",
  890. "style": {
  891. "navigationBarTitleText": "内容详情"
  892. }
  893. },
  894. {
  895. "path": "plant_release/index",
  896. "style": {
  897. "navigationBarTitleText": "内容发布"
  898. }
  899. },
  900. {
  901. "path": "plant_show/index",
  902. "style": {
  903. "navigationBarTitleText": "种草秀"
  904. }
  905. },
  906. {
  907. "path": "plant_topic/index",
  908. "style": {
  909. "navigationBarTitleText": "话题筛选"
  910. }
  911. },
  912. {
  913. "path": "plant_search/index",
  914. "style": {
  915. "navigationBarTitleText": "搜索"
  916. }
  917. },
  918. {
  919. "path": "plant_search_list/index",
  920. "style": {
  921. "navigationBarTitleText": "搜索结果"
  922. }
  923. },
  924. {
  925. "path": "plant_featured/index",
  926. "style": {
  927. "navigationBarTitleText": "为你精选"
  928. }
  929. },
  930. {
  931. "path": "plant_user/index",
  932. "style": {
  933. "navigationBarTitleText": "个人主页"
  934. }
  935. },
  936. {
  937. "path": "plant_user_attention/index",
  938. "style": {
  939. "navigationBarTitleText": "我的关注"
  940. }
  941. },
  942. {
  943. "path": "plant_user_fans/index",
  944. "style": {
  945. "navigationBarTitleText": "我的粉丝"
  946. }
  947. }
  948. ]
  949. },
  950. {
  951. "root": "pages/columnGoods",
  952. "name": "columnGoods",
  953. "pages": [{
  954. "path": "HotNewGoods/index",
  955. "style": {
  956. "navigationBarTitleText": "精品推荐"
  957. //,
  958. //"navigationBarBackgroundColor": "#e93323"
  959. // #ifdef MP || APP-PLUS
  960. // ,
  961. //"navigationBarTextStyle": "#fff"
  962. // #endif
  963. }
  964. },
  965. {
  966. "path": "goods_list/index",
  967. "style": {
  968. "navigationBarTitleText": "商品列表"
  969. }
  970. },
  971. {
  972. "path": "goods_coupon_list/index",
  973. "style": {
  974. "navigationBarTitleText": "优惠券商品"
  975. }
  976. },
  977. {
  978. "path": "goods_search/index",
  979. "style": {
  980. "navigationBarTitleText": "搜索商品"
  981. }
  982. },
  983. {
  984. "path": "goods_search_con/index",
  985. "style": {
  986. "navigationBarTitleText": "搜索商品"
  987. }
  988. }
  989. ],
  990. "plugins": {
  991. "live-player-plugin": {
  992. "version": "1.3.2",
  993. "provider": "wx2b03c6e691cd7370"
  994. }
  995. }
  996. },
  997. {
  998. "root": "pages/chat",
  999. "name": "chat",
  1000. "pages": [{
  1001. "path": "customer_list/index",
  1002. "style": {
  1003. "navigationBarTitleText": "消息中心"
  1004. }
  1005. },
  1006. {
  1007. "path": "customer_list/chat",
  1008. "style": {
  1009. "navigationBarTitleText": "客服聊天"
  1010. }
  1011. },
  1012. {
  1013. "path": "customer_login/index",
  1014. "style": {
  1015. "navigationBarTitleText": "客服登录"
  1016. }
  1017. },
  1018. {
  1019. "path": "customer_info/index",
  1020. "style": {
  1021. "navigationBarTitleText": "客户信息"
  1022. }
  1023. }
  1024. ]
  1025. },
  1026. {
  1027. "root": "pages/activity",
  1028. "name": "activity",
  1029. "pages": [{
  1030. "path": "goods_seckill/index",
  1031. "style": {
  1032. "navigationBarTitleText": "限时秒杀",
  1033. "navigationStyle": "custom"
  1034. // #ifdef MP || APP-PLUS
  1035. ,
  1036. "navigationBarTextStyle": "#fff"
  1037. // #endif
  1038. }
  1039. },
  1040. {
  1041. "path": "goods_seckill_details/index",
  1042. "style": {
  1043. "navigationBarTitleText": "秒杀详情",
  1044. "navigationStyle": "custom"
  1045. // #ifdef MP || APP-PLUS
  1046. ,
  1047. "navigationBarTextStyle": "#fff"
  1048. // #endif
  1049. }
  1050. },
  1051. {
  1052. "path": "liveBroadcast/index",
  1053. "style": {
  1054. "navigationBarTitleText": "直播列表",
  1055. "navigationBarBackgroundColor": "#F2F2F2"
  1056. }
  1057. },
  1058. {
  1059. "path": "presell/index",
  1060. "style": {
  1061. "navigationBarTitleText": "预售"
  1062. // #ifdef MP || APP-PLUS
  1063. ,
  1064. "navigationBarTextStyle": "#fff",
  1065. "navigationStyle": "custom"
  1066. // #endif
  1067. }
  1068. },
  1069. {
  1070. "path": "presell_details/index",
  1071. "style": {
  1072. "navigationStyle": "custom"
  1073. // #ifdef MP || APP-PLUS
  1074. ,
  1075. "navigationBarTextStyle": "#fff"
  1076. // #endif
  1077. }
  1078. },
  1079. {
  1080. "path": "combination/index",
  1081. "style": {
  1082. "navigationBarTitleText": "拼团"
  1083. // #ifdef MP || APP-PLUS
  1084. ,
  1085. "navigationBarTextStyle": "#fff",
  1086. "navigationStyle": "custom"
  1087. // #endif
  1088. }
  1089. },
  1090. {
  1091. "path": "combination_details/index",
  1092. "style": {
  1093. "navigationBarTitleText": "拼团详情",
  1094. "navigationStyle": "custom"
  1095. // #ifdef MP || APP-PLUS
  1096. ,
  1097. "navigationBarTextStyle": "#fff"
  1098. // #endif
  1099. }
  1100. },
  1101. {
  1102. "path": "combination_status/index",
  1103. "style": {
  1104. "navigationBarTitleText": "拼团状态"
  1105. }
  1106. },
  1107. {
  1108. "path": "assist/index",
  1109. "style": {
  1110. "navigationBarTitleText": "助力列表",
  1111. "navigationStyle": "custom"
  1112. // #ifdef MP || APP-PLUS
  1113. ,
  1114. "navigationBarTextStyle": "#fff"
  1115. // #endif
  1116. }
  1117. },
  1118. {
  1119. "path": "assist_detail/index",
  1120. "style": {
  1121. "navigationBarTitleText": "发起助力"
  1122. // #ifdef MP || APP-PLUS
  1123. //,
  1124. //"navigationBarTextStyle": "#fff",
  1125. //"navigationBarBackgroundColor": "#e93323"
  1126. // #endif
  1127. }
  1128. },
  1129. {
  1130. "path": "assist_record/index",
  1131. "style": {
  1132. "navigationBarTitleText": "助力记录"
  1133. // #ifdef MP || APP-PLUS
  1134. //,
  1135. //"navigationBarTextStyle": "#fff",
  1136. //"navigationBarBackgroundColor": "#e93323"
  1137. // #endif
  1138. }
  1139. },
  1140. {
  1141. "path": "topic/index",
  1142. "style": {
  1143. "navigationBarTitleText": "活动专题"
  1144. }
  1145. },
  1146. {
  1147. "path": "topic_detail/index",
  1148. "style": {
  1149. "navigationBarTitleText": "主题活动"
  1150. }
  1151. },
  1152. {
  1153. "path": "lifeService/index",
  1154. "style": {
  1155. "navigationBarTitleText": "本地服务"
  1156. }
  1157. },
  1158. {
  1159. "path": "collect_coupons/index",
  1160. "style": {
  1161. "navigationBarTitleText": "领劵中心"
  1162. }
  1163. }
  1164. ]
  1165. }
  1166. ],
  1167. "globalStyle": {
  1168. "navigationBarTextStyle": "black",
  1169. "navigationBarTitleText": "加载中...",
  1170. "navigationBarBackgroundColor": "#fff",
  1171. "backgroundColor": "#F8F8F8"
  1172. //#ifndef H5
  1173. ,
  1174. "titleNView": true
  1175. //#endif
  1176. //#ifdef H5
  1177. ,
  1178. "titleNView": false
  1179. //#endif
  1180. },
  1181. "tabBar": {
  1182. "color": "#282828",
  1183. "selectedColor": "#E93323",
  1184. "borderStyle": "white",
  1185. "backgroundColor": "#ffffff",
  1186. "list": [{
  1187. "pagePath": "pages/index/index",
  1188. "iconPath": "static/tabbar/tab-home.png",
  1189. "selectedIconPath": "static/tabbar/tab-home-current.png",
  1190. "text": "首页"
  1191. },
  1192. // {
  1193. // "pagePath": "pages/goods_cate/goods_cate",
  1194. // "iconPath": "static/images/2-001.png",
  1195. // "selectedIconPath": "static/images/2-002.png",
  1196. // "text": "分类"
  1197. // },
  1198. // {
  1199. // "pagePath": "pages/plant_grass/index",
  1200. // "iconPath": "static/images/5-001.png",
  1201. // "selectedIconPath": "static/images/5-002.png",
  1202. // "text": "逛逛"
  1203. // },
  1204. {
  1205. "pagePath": "pages/order_addcart/order_addcart",
  1206. "iconPath": "static/tabbar/tab-cart.png",
  1207. "selectedIconPath": "static/tabbar/tab-cart-current.png",
  1208. "text": "购物车"
  1209. },
  1210. {
  1211. "pagePath": "pages/user/index",
  1212. "iconPath": "static/tabbar/tab-my.png",
  1213. "selectedIconPath": "static/tabbar/tab-my-current.png",
  1214. "text": "我的"
  1215. }
  1216. ]
  1217. },
  1218. "condition": { //模式配置,仅开发期间生效
  1219. "current": 0, //当前激活的模式(list 的索引项)
  1220. "list": [{
  1221. "name": "", //模式名称
  1222. "path": "", //启动页面,必选
  1223. "query": "" //启动参数,在页面的onLoad函数里面得到
  1224. }]
  1225. },
  1226. "sitemapLocation": "sitemap.json"
  1227. }