pages.json 27 KB

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