pages.json 27 KB

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