pages.json 28 KB

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