pages.json 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279
  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_distribution_level/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_address_list/index",
  725. "style": {
  726. "navigationBarTitleText": "地址管理",
  727. "app-plus": {
  728. // #ifdef APP-PLUS
  729. "titleNView": {
  730. "type": "default"
  731. }
  732. // #endif
  733. }
  734. }
  735. },
  736. {
  737. "path": "user_address/index",
  738. "style": {
  739. "navigationBarTitleText": "添加地址",
  740. "app-plus": {
  741. // #ifdef APP-PLUS
  742. "titleNView": {
  743. "type": "default"
  744. }
  745. // #endif
  746. }
  747. }
  748. },
  749. {
  750. "path": "user_phone/index",
  751. "style": {
  752. "navigationBarTitleText": "绑定手机",
  753. // #ifdef MP
  754. // "navigationBarTextStyle": "white",
  755. // "navigationBarBackgroundColor": "#e93323"
  756. // #endif
  757. "app-plus": {
  758. // #ifdef APP-PLUS
  759. "titleNView": {
  760. "type": "default"
  761. }
  762. // #endif
  763. }
  764. }
  765. },
  766. {
  767. "path": "user_payment/index",
  768. "style": {
  769. "navigationBarTitleText": "余额充值",
  770. "app-plus": {
  771. // #ifdef APP-PLUS
  772. "titleNView": {
  773. "type": "default"
  774. }
  775. // #endif
  776. }
  777. }
  778. },
  779. {
  780. "path": "user_pwd_edit/index",
  781. "style": {
  782. "navigationBarTitleText": "修改密码"
  783. // #ifdef MP
  784. // ,
  785. // "navigationBarTextStyle": "white"
  786. // "navigationBarBackgroundColor": "#e93323"
  787. // #endif
  788. ,
  789. "app-plus": {
  790. // #ifdef APP-PLUS
  791. "titleNView": {
  792. "type": "default"
  793. }
  794. // #endif
  795. }
  796. }
  797. },
  798. {
  799. "path": "promoter-list/index",
  800. "style": {
  801. "navigationBarTitleText": "推广人列表"
  802. // #ifdef MP
  803. ,
  804. "navigationBarBackgroundColor": "#FFFFFF",
  805. "navigationBarTextStyle": "black"
  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-order/index",
  819. "style": {
  820. "navigationBarTitleText": "推广人订单"
  821. // #ifdef MP
  822. ,
  823. "navigationBarTextStyle": "black",
  824. "navigationBarBackgroundColor": "#FFFFFF"
  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_rank/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": "commission_rank/index",
  857. "style": {
  858. "navigationBarTitleText": "佣金排行",
  859. "navigationBarBackgroundColor": "#FFFFFF"
  860. // #ifdef MP || APP-PLUS
  861. ,
  862. "navigationBarTextStyle": "black"
  863. // #endif
  864. ,
  865. "app-plus": {
  866. // #ifdef APP-PLUS
  867. "titleNView": {
  868. "type": "default"
  869. }
  870. // #endif
  871. }
  872. }
  873. },
  874. {
  875. "path": "user_return_list/index",
  876. "style": {
  877. "navigationBarTitleText": "售后列表",
  878. "app-plus": {
  879. // #ifdef APP-PLUS
  880. "titleNView": {
  881. "type": "default"
  882. }
  883. // #endif
  884. }
  885. }
  886. },
  887. {
  888. "path": "login/index",
  889. "style": {
  890. "navigationBarTitleText": "登录",
  891. "app-plus": {
  892. // #ifdef APP-PLUS
  893. "titleNView": {
  894. "type": "default"
  895. }
  896. // #endif
  897. }
  898. }
  899. },
  900. {
  901. "path": "payment_on_behalf/index",
  902. "style": {
  903. "navigationBarTitleText": "好友代付",
  904. "app-plus": {
  905. // #ifdef APP-PLUS
  906. "titleNView": {
  907. "type": "default"
  908. }
  909. // #endif
  910. }
  911. }
  912. },
  913. {
  914. "path": "payment_on_behalf/pay_status",
  915. "style": {
  916. "navigationBarTitleText": "代付成功",
  917. "app-plus": {
  918. // #ifdef APP-PLUS
  919. "titleNView": {
  920. "type": "default"
  921. }
  922. // #endif
  923. }
  924. }
  925. },
  926. {
  927. "path": "staff_list/index",
  928. "style": {
  929. "navigationBarTitleText": "员工列表",
  930. "navigationBarBackgroundColor": "#e93323"
  931. // #ifdef MP
  932. ,
  933. "navigationBarTextStyle": "#fff"
  934. // #endif
  935. }
  936. }
  937. ]
  938. },
  939. {
  940. "root": "pages/goods_details",
  941. "name": "goods_details",
  942. "pages": [
  943. {
  944. "path": "index",
  945. "style": {
  946. "navigationStyle": "custom",
  947. "transparentTitle": "auto",
  948. "app-plus": {
  949. // #ifdef APP-PLUS
  950. "titleNView": {
  951. "padding-left": "10px",
  952. "padding-right": "10px",
  953. "type": "transparent",
  954. "buttons": [ //原生标题栏按钮配置,
  955. {
  956. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  957. }
  958. ]
  959. }
  960. // #endif
  961. }
  962. }
  963. }
  964. ]
  965. },
  966. {
  967. "root": "pages/admin",
  968. "name": "adminOrder",
  969. "pages": [
  970. {
  971. "path": "custom_date/index",
  972. "style": {
  973. "navigationBarTitleText": "选择日期"
  974. }
  975. },
  976. {
  977. "path": "order/index",
  978. "style": {
  979. "navigationBarTitleText": "订单统计",
  980. "app-plus": {
  981. // #ifdef APP-PLUS
  982. "titleNView": {
  983. "type": "default"
  984. }
  985. // #endif
  986. }
  987. }
  988. },
  989. {
  990. "path": "orderList/index",
  991. "style": {
  992. "navigationBarTitleText": "订单列表",
  993. "app-plus": {
  994. // #ifdef APP-PLUS
  995. "titleNView": {
  996. "type": "default"
  997. }
  998. // #endif
  999. }
  1000. }
  1001. },
  1002. {
  1003. "path": "orderDetail/index",
  1004. "style": {
  1005. "navigationBarTitleText": "订单详情",
  1006. "app-plus": {
  1007. // #ifdef APP-PLUS
  1008. "titleNView": {
  1009. "type": "default"
  1010. }
  1011. // #endif
  1012. }
  1013. }
  1014. },
  1015. {
  1016. "path": "delivery/index",
  1017. "style": {
  1018. "navigationBarTitleText": "订单发货",
  1019. "app-plus": {
  1020. // #ifdef APP-PLUS
  1021. "titleNView": {
  1022. "type": "default"
  1023. }
  1024. // #endif
  1025. }
  1026. }
  1027. },
  1028. {
  1029. "path": "statistics/index",
  1030. "style": {
  1031. "navigationBarTitleText": "订单数据统计",
  1032. "app-plus": {
  1033. // #ifdef APP-PLUS
  1034. "titleNView": {
  1035. "type": "default"
  1036. }
  1037. // #endif
  1038. }
  1039. }
  1040. },
  1041. {
  1042. "path": "order_cancellation/index",
  1043. "style": {
  1044. "navigationBarTitleText": "订单核销",
  1045. "app-plus": {
  1046. // #ifdef APP-PLUS
  1047. "titleNView": {
  1048. "type": "default"
  1049. }
  1050. // #endif
  1051. }
  1052. }
  1053. }
  1054. ]
  1055. },
  1056. {
  1057. "root": "pages/columnGoods",
  1058. "name": "columnGoods",
  1059. "pages": [
  1060. {
  1061. "path": "HotNewGoods/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. "path": "HotNewGoods/feedback",
  1075. "style": {
  1076. "navigationBarTitleText": "我的客服",
  1077. "navigationBarTextStyle": "white",
  1078. "navigationBarBackgroundColor": "#3A3A3A",
  1079. "app-plus": {
  1080. // #ifdef APP-PLUS
  1081. "titleNView": {
  1082. "type": "default"
  1083. }
  1084. // #endif
  1085. }
  1086. }
  1087. },
  1088. {
  1089. "path": "live_list/index",
  1090. "style": {
  1091. "navigationBarTitleText": "精彩内容"
  1092. }
  1093. }
  1094. ]
  1095. },
  1096. {
  1097. "root": "pages/points_mall",
  1098. "pages": [
  1099. {
  1100. "path": "index",
  1101. "style": {
  1102. "navigationBarTextStyle": "white",
  1103. "navigationBarBackgroundColor": "#333333",
  1104. "navigationBarTitleText": "积分商城",
  1105. "app-plus": {
  1106. // #ifdef APP-PLUS
  1107. "titleNView": {
  1108. "type": "default"
  1109. }
  1110. // #endif
  1111. }
  1112. }
  1113. },
  1114. {
  1115. "path": "integral_goods_list",
  1116. "style": {
  1117. "navigationBarTitleText": "商品列表",
  1118. // "navigationBarTextStyle": "white",
  1119. // "navigationBarBackgroundColor": "#E93323",
  1120. "app-plus": {
  1121. // #ifdef APP-PLUS
  1122. "titleNView": {
  1123. "type": "default"
  1124. }
  1125. // #endif
  1126. }
  1127. }
  1128. },
  1129. {
  1130. "path": "integral_goods_details",
  1131. "style": {
  1132. "navigationStyle": "custom",
  1133. "app-plus": {
  1134. // #ifdef APP-PLUS
  1135. "titleNView": {
  1136. "padding-left": "10px",
  1137. "padding-right": "10px",
  1138. "type": "transparent",
  1139. "buttons": [ //原生标题栏按钮配置,
  1140. {
  1141. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1142. }
  1143. ]
  1144. }
  1145. // #endif
  1146. }
  1147. }
  1148. },
  1149. {
  1150. "path": "exchange_record",
  1151. "style": {
  1152. "navigationBarTitleText": "兑换记录",
  1153. "app-plus": {
  1154. // #ifdef APP-PLUS
  1155. "titleNView": {
  1156. "type": "default"
  1157. }
  1158. // #endif
  1159. }
  1160. }
  1161. },
  1162. {
  1163. "path": "integral_order",
  1164. "style": {
  1165. "navigationBarTitleText": "积分订单",
  1166. "app-plus": {
  1167. // #ifdef APP-PLUS
  1168. "titleNView": {
  1169. "type": "default"
  1170. }
  1171. // #endif
  1172. }
  1173. }
  1174. },
  1175. {
  1176. "path": "user_address",
  1177. "style": {
  1178. "navigationBarTitleText": "选择地址",
  1179. "app-plus": {
  1180. // #ifdef APP-PLUS
  1181. "titleNView": {
  1182. "type": "default"
  1183. }
  1184. // #endif
  1185. }
  1186. }
  1187. },
  1188. {
  1189. "path": "integral_order_status",
  1190. "style": {
  1191. "navigationBarTitleText": "兑换成功",
  1192. "app-plus": {
  1193. // #ifdef APP-PLUS
  1194. "titleNView": {
  1195. "type": "default"
  1196. }
  1197. // #endif
  1198. }
  1199. }
  1200. },
  1201. {
  1202. "path": "integral_order_details",
  1203. "style": {
  1204. "navigationBarTitleText": "兑换订单详情",
  1205. "app-plus": {
  1206. // #ifdef APP-PLUS
  1207. "titleNView": {
  1208. "type": "default"
  1209. }
  1210. // #endif
  1211. }
  1212. }
  1213. },
  1214. {
  1215. "path": "logistics_details",
  1216. "style": {
  1217. "navigationBarTitleText": "兑换物流详情",
  1218. "app-plus": {
  1219. // #ifdef APP-PLUS
  1220. "titleNView": {
  1221. "type": "default"
  1222. }
  1223. // #endif
  1224. }
  1225. }
  1226. }
  1227. ]
  1228. }
  1229. ],
  1230. "tabBar": {
  1231. "color": "#282828",
  1232. "selectedColor": "#ff3366",
  1233. "borderStyle": "white",
  1234. "backgroundColor": "#ffffff",
  1235. "list": [
  1236. {
  1237. "pagePath": "pages/index/index",
  1238. "iconPath": "static/images/1-001.png",
  1239. "selectedIconPath": "static/images/1-002.png",
  1240. "text": "首页"
  1241. },
  1242. {
  1243. "pagePath": "pages/goods_cate/goods_cate",
  1244. "iconPath": "static/images/2-001.png",
  1245. "selectedIconPath": "static/images/2-002.png",
  1246. "text": "分类"
  1247. },
  1248. {
  1249. "pagePath": "pages/order_addcart/order_addcart",
  1250. "iconPath": "static/images/3-001.png",
  1251. "selectedIconPath": "static/images/3-002.png",
  1252. "text": "红包"
  1253. },
  1254. {
  1255. "pagePath": "pages/user/index",
  1256. "iconPath": "static/images/4-001.png",
  1257. "selectedIconPath": "static/images/4-002.png",
  1258. "text": "我的"
  1259. }
  1260. ]
  1261. },
  1262. "globalStyle": {
  1263. "navigationBarTextStyle": "black",
  1264. "navigationBarTitleText": "加载中",
  1265. "navigationBarBackgroundColor": "#fff",
  1266. "backgroundColor": "#F8F8F8",
  1267. "titleNView": false
  1268. },
  1269. "condition": { //模式配置,仅开发期间生效
  1270. "current": 0, //当前激活的模式(list 的索引项)
  1271. "list": [
  1272. {
  1273. "name": "", //模式名称
  1274. "path": "", //启动页面,必选
  1275. "query": "" //启动参数,在页面的onLoad函数里面得到
  1276. }
  1277. ]
  1278. }
  1279. }