pages.json 26 KB

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