pages.json 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570
  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. "root": "pages/goods",
  122. "name": "goods",
  123. "pages": [{
  124. "path": "goods_list/index",
  125. "style": {
  126. "navigationBarTitleText": "商品列表",
  127. "app-plus": {
  128. // #ifdef APP-PLUS
  129. "titleNView": {
  130. "type": "default"
  131. }
  132. // #endif
  133. }
  134. }
  135. }, {
  136. "path": "goods_search/index",
  137. "style": {
  138. "navigationBarTitleText": "搜索商品",
  139. "app-plus": {
  140. // #ifdef APP-PLUS
  141. "titleNView": {
  142. "type": "default"
  143. }
  144. // #endif
  145. }
  146. }
  147. }, {
  148. "path": "order_pay_status/index",
  149. "style": {
  150. "navigationBarTitleText": "支付成功",
  151. "app-plus": {
  152. // #ifdef APP-PLUS
  153. "titleNView": {
  154. "type": "default"
  155. }
  156. // #endif
  157. }
  158. }
  159. }, {
  160. "path": "admin_order_detail/index",
  161. "style": {
  162. "navigationBarTitleText": "订单详情",
  163. "app-plus": {
  164. // #ifdef APP-PLUS
  165. "titleNView": {
  166. "type": "default"
  167. }
  168. // #endif
  169. }
  170. }
  171. }, {
  172. "path": "goods_comment_con/index",
  173. "style": {
  174. "navigationBarTitleText": "商品评价",
  175. "app-plus": {
  176. // #ifdef APP-PLUS
  177. "titleNView": {
  178. "type": "default"
  179. }
  180. // #endif
  181. }
  182. }
  183. }, {
  184. "path": "goods_comment_con/lottery_comment",
  185. "style": {
  186. "navigationBarTitleText": "订单评价",
  187. "app-plus": {
  188. // #ifdef APP-PLUS
  189. "titleNView": {
  190. "type": "default"
  191. }
  192. // #endif
  193. }
  194. }
  195. }, {
  196. "path": "goods_comment_list/index",
  197. "style": {
  198. "navigationBarTitleText": "商品评分",
  199. "app-plus": {
  200. // #ifdef APP-PLUS
  201. "titleNView": {
  202. "type": "default"
  203. }
  204. // #endif
  205. }
  206. }
  207. }, {
  208. "path": "goods_details_store/index",
  209. "style": {
  210. "navigationBarTitleText": "门店列表",
  211. "app-plus": {
  212. // #ifdef APP-PLUS
  213. "titleNView": {
  214. "type": "default"
  215. }
  216. // #endif
  217. }
  218. }
  219. }, {
  220. "path": "goods_logistics/index",
  221. "style": {
  222. "navigationBarTitleText": "物流信息",
  223. "app-plus": {
  224. // #ifdef APP-PLUS
  225. "titleNView": {
  226. "type": "default"
  227. }
  228. // #endif
  229. }
  230. }
  231. }, {
  232. "path": "goods_return/index",
  233. "style": {
  234. "navigationBarTitleText": "申请退货",
  235. "app-plus": {
  236. // #ifdef APP-PLUS
  237. "titleNView": {
  238. "type": "default"
  239. }
  240. // #endif
  241. }
  242. }
  243. }, {
  244. "path": "goods_return_list/index",
  245. "style": {
  246. "navigationBarTitleText": "退货列表",
  247. "app-plus": {
  248. // #ifdef APP-PLUS
  249. "titleNView": {
  250. "type": "default"
  251. }
  252. // #endif
  253. }
  254. }
  255. }, {
  256. "path": "lottery/grids/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/record",
  270. "style": {
  271. "navigationBarTitleText": "中奖记录",
  272. "app-plus": {
  273. // #ifdef APP-PLUS
  274. "titleNView": {
  275. "type": "default"
  276. }
  277. // #endif
  278. }
  279. }
  280. }, {
  281. "path": "order_confirm/index",
  282. "style": {
  283. "navigationBarTitleText": "提交订单",
  284. "app-plus": {
  285. // #ifdef APP-PLUS
  286. "titleNView": {
  287. "type": "default"
  288. }
  289. // #endif
  290. }
  291. }
  292. }, {
  293. "path": "order_details/index",
  294. "style": {
  295. "navigationBarTitleText": "订单详情",
  296. "app-plus": {
  297. // #ifdef APP-PLUS
  298. "titleNView": {
  299. "type": "default"
  300. }
  301. // #endif
  302. }
  303. }
  304. }, {
  305. "path": "order_list/index",
  306. "style": {
  307. "navigationBarTitleText": "我的订单",
  308. "app-plus": {
  309. // #ifdef APP-PLUS
  310. "titleNView": {
  311. "type": "default"
  312. }
  313. // #endif
  314. }
  315. }
  316. },{
  317. "path": "order_refund_goods/index",
  318. "style": {
  319. "navigationBarTitleText": "退回商品",
  320. "app-plus": {
  321. // #ifdef APP-PLUS
  322. "titleNView": {
  323. "type": "default"
  324. }
  325. // #endif
  326. }
  327. }
  328. }]
  329. }, {
  330. "root": "pages/users",
  331. "name": "users",
  332. "pages": [{
  333. "path": "user_vip_areer/index",
  334. "style": {
  335. "navigationBarTitleText": "经验记录",
  336. "app-plus": {
  337. // #ifdef APP-PLUS
  338. "titleNView": {
  339. "type": "default"
  340. }
  341. // #endif
  342. }
  343. }
  344. },
  345. {
  346. "path": "privacy/index",
  347. "style": {
  348. "navigationBarTitleText": "隐私协议",
  349. "app-plus": {
  350. // #ifdef APP-PLUS
  351. "titleNView": {
  352. "type": "default"
  353. }
  354. // #endif
  355. }
  356. }
  357. },
  358. {
  359. "path": "user_cancellation/index",
  360. "style": {
  361. "navigationBarTitleText": "注销说明",
  362. "app-plus": {
  363. // #ifdef APP-PLUS
  364. "titleNView": {
  365. "type": "default"
  366. }
  367. // #endif
  368. }
  369. }
  370. },
  371. {
  372. "path": "message_center/index",
  373. "style": {
  374. "navigationBarTitleText": "消息中心",
  375. "enablePullDownRefresh": true,
  376. "app-plus": {
  377. // #ifdef APP-PLUS
  378. "titleNView": {
  379. "type": "default"
  380. }
  381. // #endif
  382. }
  383. }
  384. },
  385. {
  386. "path": "message_center/messageDetail",
  387. "style": {
  388. "navigationBarTitleText": "消息详情",
  389. "app-plus": {
  390. // #ifdef APP-PLUS
  391. "titleNView": {
  392. "type": "default"
  393. }
  394. // #endif
  395. }
  396. }
  397. },
  398. {
  399. "path": "user_invoice_order/index",
  400. "style": {
  401. "navigationBarTitleText": "订单详情",
  402. "app-plus": {
  403. // #ifdef APP-PLUS
  404. "titleNView": {
  405. "type": "default"
  406. }
  407. // #endif
  408. }
  409. }
  410. },
  411. {
  412. "path": "scan_login/index",
  413. "style": {
  414. "navigationBarTitleText": "授权登录"
  415. }
  416. },
  417. {
  418. "path": "user_invoice_list/index",
  419. "style": {
  420. "navigationBarTitleText": "发票管理",
  421. "app-plus": {
  422. // #ifdef APP-PLUS
  423. "titleNView": {
  424. "type": "default"
  425. }
  426. // #endif
  427. }
  428. }
  429. },
  430. {
  431. "path": "user_invoice_form/index",
  432. "style": {
  433. "navigationBarTitleText": "添加新发票",
  434. "app-plus": {
  435. // #ifdef APP-PLUS
  436. "titleNView": {
  437. "type": "default"
  438. }
  439. // #endif
  440. }
  441. }
  442. },
  443. //#ifdef H5
  444. {
  445. "path": "alipay_invoke/index",
  446. "style": {
  447. "navigationBarTitleText": "支付提示"
  448. }
  449. },
  450. //#endif
  451. {
  452. "path": "wechat_login/index",
  453. "style": {
  454. "navigationBarTitleText": "账户登录",
  455. "navigationStyle": "custom",
  456. "app-plus": {
  457. "scrollIndicator": false //禁用原生导航栏
  458. }
  459. }
  460. },
  461. {
  462. "path": "retrievePassword/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": "user_info/index",
  476. "style": {
  477. "navigationBarTitleText": "个人资料",
  478. "app-plus": {
  479. // #ifdef APP-PLUS
  480. "titleNView": {
  481. "type": "default"
  482. }
  483. // #endif
  484. }
  485. }
  486. },
  487. {
  488. "path": "user_get_coupon/index",
  489. "style": {
  490. "navigationBarTitleText": "领取优惠券",
  491. "app-plus": {
  492. // #ifdef APP-PLUS
  493. "titleNView": {
  494. "type": "default"
  495. }
  496. // #endif
  497. }
  498. }
  499. },
  500. {
  501. "path": "visit_list/index",
  502. "style": {
  503. "navigationBarTitleText": "浏览记录",
  504. "app-plus": {
  505. // #ifdef APP-PLUS
  506. "titleNView": {
  507. "type": "default"
  508. }
  509. // #endif
  510. }
  511. }
  512. },
  513. {
  514. "path": "user_goods_collection/index",
  515. "style": {
  516. "navigationBarTitleText": "收藏商品",
  517. "app-plus": {
  518. // #ifdef APP-PLUS
  519. "titleNView": {
  520. "type": "default"
  521. }
  522. // #endif
  523. }
  524. }
  525. },
  526. {
  527. "path": "user_sgin/index",
  528. "style": {
  529. "navigationBarTitleText": "签到",
  530. // #ifdef MP
  531. // "navigationBarTextStyle": "white",
  532. // "navigationBarBackgroundColor": "#e93323"
  533. // #endif
  534. "app-plus": {
  535. // #ifdef APP-PLUS
  536. "titleNView": {
  537. "type": "default"
  538. }
  539. // #endif
  540. }
  541. }
  542. },
  543. {
  544. "path": "user_sgin_list/index",
  545. "style": {
  546. "navigationBarTitleText": "签到记录",
  547. "app-plus": {
  548. // #ifdef APP-PLUS
  549. "titleNView": {
  550. "type": "default"
  551. }
  552. // #endif
  553. }
  554. }
  555. },
  556. {
  557. "path": "user_money/index",
  558. "style": {
  559. "navigationBarTitleText": "我的账户",
  560. "app-plus": {
  561. // #ifdef APP-PLUS
  562. "titleNView": {
  563. "type": "default"
  564. }
  565. // #endif
  566. }
  567. }
  568. },
  569. {
  570. "path": "user_bill/index",
  571. "style": {
  572. "navigationBarTitleText": "账单明细",
  573. "app-plus": {
  574. // #ifdef APP-PLUS
  575. "titleNView": {
  576. "type": "default"
  577. }
  578. // #endif
  579. }
  580. }
  581. },
  582. {
  583. "path": "user_integral/index",
  584. "style": {
  585. "navigationBarTitleText": "积分详情"
  586. // #ifdef MP
  587. ,
  588. "navigationBarTextStyle": "black",
  589. "navigationBarBackgroundColor": "#FFFFFF"
  590. // #endif
  591. ,
  592. "app-plus": {
  593. // #ifdef APP-PLUS
  594. "titleNView": {
  595. "type": "default"
  596. }
  597. // #endif
  598. }
  599. }
  600. },
  601. {
  602. "path": "user_coupon/index",
  603. "style": {
  604. "navigationBarTitleText": "我的优惠券",
  605. "app-plus": {
  606. // #ifdef APP-PLUS
  607. "titleNView": {
  608. "type": "default"
  609. }
  610. // #endif
  611. }
  612. }
  613. },
  614. {
  615. "path": "user_spread_user/index",
  616. "style": {
  617. "navigationBarTitleText": "我的推广"
  618. // #ifdef MP
  619. ,
  620. "navigationBarTextStyle": "black",
  621. "navigationBarBackgroundColor": "#FFFFFF"
  622. // #endif
  623. ,
  624. "app-plus": {
  625. // #ifdef APP-PLUS
  626. "titleNView": {
  627. "type": "default"
  628. }
  629. // #endif
  630. }
  631. }
  632. },
  633. {
  634. "path": "user_spread_code/index",
  635. "style": {
  636. "navigationBarTitleText": "分销海报",
  637. "app-plus": {
  638. // #ifdef APP-PLUS
  639. "titleNView": {
  640. "type": "default"
  641. }
  642. // #endif
  643. }
  644. }
  645. },
  646. {
  647. "path": "user_spread_money/index",
  648. "style": {
  649. "navigationBarTitleText": "佣金记录"
  650. // #ifdef MP
  651. ,
  652. "navigationBarTextStyle": "black",
  653. "navigationBarBackgroundColor": "#FFFFFF"
  654. // #endif
  655. ,
  656. "app-plus": {
  657. // #ifdef APP-PLUS
  658. "titleNView": {
  659. "type": "default"
  660. }
  661. // #endif
  662. }
  663. }
  664. },
  665. {
  666. "path": "user_cash/index",
  667. "style": {
  668. "navigationBarTitleText": "提现",
  669. "navigationBarBackgroundColor": "#FFFFFF"
  670. // #ifdef MP || APP-PLUS
  671. ,
  672. "navigationBarTextStyle": "black"
  673. // #endif
  674. ,
  675. "app-plus": {
  676. // #ifdef APP-PLUS
  677. "titleNView": {
  678. "type": "default"
  679. }
  680. // #endif
  681. }
  682. }
  683. },
  684. {
  685. "path": "user_vip/index",
  686. "style": {
  687. "navigationBarTitleText": "我的等级",
  688. "navigationBarBackgroundColor": "#232323"
  689. // #ifdef MP || APP-PLUS
  690. ,
  691. "navigationBarTextStyle": "white"
  692. // #endif
  693. ,
  694. "app-plus": {
  695. // #ifdef APP-PLUS
  696. "titleNView": {
  697. "type": "default"
  698. }
  699. // #endif
  700. }
  701. }
  702. }, {
  703. "path": "user_distribution_level/index",
  704. "style": {
  705. "navigationBarTitleText": "分销等级",
  706. "navigationBarBackgroundColor": "#232323"
  707. // #ifdef MP || APP-PLUS
  708. ,
  709. "navigationBarTextStyle": "white"
  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_address_list/index",
  723. "style": {
  724. "navigationBarTitleText": "地址管理",
  725. "app-plus": {
  726. // #ifdef APP-PLUS
  727. "titleNView": {
  728. "type": "default"
  729. }
  730. // #endif
  731. }
  732. }
  733. },
  734. {
  735. "path": "user_address/index",
  736. "style": {
  737. "navigationBarTitleText": "添加地址",
  738. "app-plus": {
  739. // #ifdef APP-PLUS
  740. "titleNView": {
  741. "type": "default"
  742. }
  743. // #endif
  744. }
  745. }
  746. },
  747. {
  748. "path": "user_phone/index",
  749. "style": {
  750. "navigationBarTitleText": "绑定手机",
  751. // #ifdef MP
  752. // "navigationBarTextStyle": "white",
  753. // "navigationBarBackgroundColor": "#e93323"
  754. // #endif
  755. "app-plus": {
  756. // #ifdef APP-PLUS
  757. "titleNView": {
  758. "type": "default"
  759. }
  760. // #endif
  761. }
  762. }
  763. },
  764. {
  765. "path": "user_payment/index",
  766. "style": {
  767. "navigationBarTitleText": "余额充值",
  768. "app-plus": {
  769. // #ifdef APP-PLUS
  770. "titleNView": {
  771. "type": "default"
  772. }
  773. // #endif
  774. }
  775. }
  776. },
  777. {
  778. "path": "user_pwd_edit/index",
  779. "style": {
  780. "navigationBarTitleText": "修改密码"
  781. // #ifdef MP
  782. // ,
  783. // "navigationBarTextStyle": "white"
  784. // "navigationBarBackgroundColor": "#e93323"
  785. // #endif
  786. ,
  787. "app-plus": {
  788. // #ifdef APP-PLUS
  789. "titleNView": {
  790. "type": "default"
  791. }
  792. // #endif
  793. }
  794. }
  795. },
  796. {
  797. "path": "promoter-list/index",
  798. "style": {
  799. "navigationBarTitleText": "推广人列表"
  800. // #ifdef MP
  801. ,
  802. "navigationBarBackgroundColor": "#FFFFFF",
  803. "navigationBarTextStyle": "black"
  804. // #endif
  805. ,
  806. "app-plus": {
  807. // #ifdef APP-PLUS
  808. "titleNView": {
  809. "type": "default"
  810. }
  811. // #endif
  812. }
  813. }
  814. },
  815. {
  816. "path": "promoter-order/index",
  817. "style": {
  818. "navigationBarTitleText": "推广人订单"
  819. // #ifdef MP
  820. ,
  821. "navigationBarTextStyle": "black",
  822. "navigationBarBackgroundColor": "#FFFFFF"
  823. // #endif
  824. ,
  825. "app-plus": {
  826. // #ifdef APP-PLUS
  827. "titleNView": {
  828. "type": "default"
  829. }
  830. // #endif
  831. }
  832. }
  833. },
  834. {
  835. "path": "promoter_rank/index",
  836. "style": {
  837. "navigationBarTitleText": "推广人排行"
  838. // #ifdef MP
  839. ,
  840. "navigationBarTextStyle": "black",
  841. "navigationBarBackgroundColor": "#FFFFFF"
  842. // #endif
  843. ,
  844. "app-plus": {
  845. // #ifdef APP-PLUS
  846. "titleNView": {
  847. "type": "default"
  848. }
  849. // #endif
  850. }
  851. }
  852. },
  853. {
  854. "path": "commission_rank/index",
  855. "style": {
  856. "navigationBarTitleText": "佣金排行",
  857. "navigationBarBackgroundColor": "#FFFFFF"
  858. // #ifdef MP || APP-PLUS
  859. ,
  860. "navigationBarTextStyle": "black"
  861. // #endif
  862. ,
  863. "app-plus": {
  864. // #ifdef APP-PLUS
  865. "titleNView": {
  866. "type": "default"
  867. }
  868. // #endif
  869. }
  870. }
  871. },
  872. {
  873. "path": "user_return_list/index",
  874. "style": {
  875. "navigationBarTitleText": "退货列表",
  876. "app-plus": {
  877. // #ifdef APP-PLUS
  878. "titleNView": {
  879. "type": "default"
  880. }
  881. // #endif
  882. }
  883. }
  884. },
  885. {
  886. "path": "login/index",
  887. "style": {
  888. "navigationBarTitleText": "登录",
  889. "app-plus": {
  890. // #ifdef APP-PLUS
  891. "titleNView": {
  892. "type": "default"
  893. }
  894. // #endif
  895. }
  896. }
  897. },
  898. {
  899. "path": "payment_on_behalf/index",
  900. "style": {
  901. "navigationBarTitleText": "好友代付",
  902. "app-plus": {
  903. // #ifdef APP-PLUS
  904. "titleNView": {
  905. "type": "default"
  906. }
  907. // #endif
  908. }
  909. }
  910. }, {
  911. "path": "payment_on_behalf/pay_status",
  912. "style": {
  913. "navigationBarTitleText": "代付成功",
  914. "app-plus": {
  915. // #ifdef APP-PLUS
  916. "titleNView": {
  917. "type": "default"
  918. }
  919. // #endif
  920. }
  921. }
  922. },
  923. {
  924. "path": "staff_list/index",
  925. "style": {
  926. "navigationBarTitleText": "员工列表",
  927. "navigationBarBackgroundColor": "#e93323"
  928. // #ifdef MP
  929. ,
  930. "navigationBarTextStyle": "#fff"
  931. // #endif
  932. }
  933. }
  934. ]
  935. },
  936. {
  937. "root": "pages/goods_details",
  938. "name": "goods_details",
  939. "pages": [{
  940. "path": "index",
  941. "style": {
  942. "navigationStyle": "custom",
  943. "transparentTitle": "auto",
  944. "app-plus": {
  945. // #ifdef APP-PLUS
  946. "titleNView": {
  947. "padding-left": "10px",
  948. "padding-right": "10px",
  949. "type": "transparent",
  950. "buttons": [ //原生标题栏按钮配置,
  951. {
  952. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  953. }
  954. ]
  955. }
  956. // #endif
  957. }
  958. }
  959. }]
  960. },
  961. {
  962. "root": "pages/activity",
  963. "name": "activity",
  964. "pages": [{
  965. "path": "goods_bargain/index",
  966. "style": {
  967. // #ifdef MP
  968. // "navigationBarTextStyle": "white",
  969. // "navigationBarBackgroundColor": "#E93323",
  970. "navigationBarTitleText": "砍价列表",
  971. // #endif
  972. "app-plus": {
  973. // #ifdef APP-PLUS
  974. "titleNView": {
  975. "type": "default"
  976. }
  977. // #endif
  978. }
  979. }
  980. },
  981. {
  982. "path": "goods_bargain_details/index",
  983. "style": {
  984. // #ifdef MP
  985. "navigationBarTitleText": "砍价活动",
  986. // #endif
  987. "app-plus": {
  988. // #ifdef APP-PLUS
  989. "titleNView": {
  990. "type": "default"
  991. }
  992. // #endif
  993. }
  994. }
  995. },
  996. {
  997. "path": "goods_combination/index",
  998. "style": {
  999. // #ifdef MP
  1000. // "navigationBarTextStyle": "white",
  1001. // "navigationBarBackgroundColor": "#E93323",
  1002. "navigationBarTitleText": "拼团活动",
  1003. // #endif
  1004. "app-plus": {
  1005. // #ifdef APP-PLUS
  1006. "titleNView": {
  1007. "type": "default"
  1008. }
  1009. // #endif
  1010. }
  1011. }
  1012. },
  1013. {
  1014. "path": "goods_combination_details/index",
  1015. "style": {
  1016. "navigationStyle": "custom",
  1017. "app-plus": {
  1018. // #ifdef APP-PLUS
  1019. "titleNView": {
  1020. "padding-left": "10px",
  1021. "padding-right": "10px",
  1022. "type": "transparent",
  1023. "buttons": [ //原生标题栏按钮配置,
  1024. {
  1025. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1026. }
  1027. ]
  1028. }
  1029. // #endif
  1030. }
  1031. }
  1032. },
  1033. {
  1034. "path": "goods_combination_status/index",
  1035. "style": {
  1036. "navigationBarTitleText": "拼团",
  1037. "app-plus": {
  1038. // #ifdef APP-PLUS
  1039. "titleNView": {
  1040. "type": "default"
  1041. }
  1042. // #endif
  1043. }
  1044. }
  1045. },
  1046. {
  1047. "path": "goods_seckill/index",
  1048. "style": {
  1049. "navigationBarTitleText": "限时秒杀"
  1050. // #ifdef MP
  1051. // "navigationBarTextStyle": "white"
  1052. // "navigationBarBackgroundColor": "#e93323"
  1053. // #endif
  1054. ,
  1055. "app-plus": {
  1056. // #ifdef APP-PLUS
  1057. "titleNView": {
  1058. "type": "default"
  1059. }
  1060. // #endif
  1061. }
  1062. }
  1063. },
  1064. {
  1065. "path": "goods_seckill_details/index",
  1066. "style": {
  1067. "navigationStyle": "custom"
  1068. // #ifdef MP
  1069. ,
  1070. "navigationBarTextStyle": "white"
  1071. // #endif
  1072. ,
  1073. "app-plus": {
  1074. // #ifdef APP-PLUS
  1075. "titleNView": {
  1076. "padding-left": "10px",
  1077. "padding-right": "10px",
  1078. "type": "transparent",
  1079. "buttons": [ //原生标题栏按钮配置,
  1080. {
  1081. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1082. }
  1083. ]
  1084. }
  1085. // #endif
  1086. }
  1087. }
  1088. },
  1089. {
  1090. "path": "poster-poster/index",
  1091. "style": {
  1092. "navigationBarTitleText": "砍价海报"
  1093. // #ifdef MP
  1094. // "navigationBarTextStyle": "white"
  1095. // "navigationBarBackgroundColor": "#d22516"
  1096. // #endif
  1097. ,
  1098. "app-plus": {
  1099. // #ifdef APP-PLUS
  1100. "titleNView": {
  1101. "type": "default"
  1102. }
  1103. // #endif
  1104. }
  1105. }
  1106. },
  1107. {
  1108. "path": "bargain/index",
  1109. "style": {
  1110. "navigationBarTitleText": "砍价记录",
  1111. "app-plus": {
  1112. // #ifdef APP-PLUS
  1113. "titleNView": {
  1114. "type": "default"
  1115. }
  1116. // #endif
  1117. }
  1118. }
  1119. },
  1120. {
  1121. "path": "presell/index",
  1122. "style": {
  1123. "navigationBarTitleText": "预售列表",
  1124. "app-plus": {
  1125. // #ifdef APP-PLUS
  1126. "titleNView": {
  1127. "type": "default"
  1128. }
  1129. // #endif
  1130. }
  1131. }
  1132. }
  1133. ]
  1134. },
  1135. {
  1136. "root": "pages/admin",
  1137. "name": "adminOrder",
  1138. "pages": [{
  1139. "path": "custom_date/index",
  1140. "style": {
  1141. "navigationBarTitleText": "选择日期"
  1142. }
  1143. },
  1144. {
  1145. "path": "order/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": "orderList/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": "orderDetail/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. "path": "delivery/index",
  1185. "style": {
  1186. "navigationBarTitleText": "订单发货",
  1187. "app-plus": {
  1188. // #ifdef APP-PLUS
  1189. "titleNView": {
  1190. "type": "default"
  1191. }
  1192. // #endif
  1193. }
  1194. }
  1195. },
  1196. {
  1197. "path": "statistics/index",
  1198. "style": {
  1199. "navigationBarTitleText": "订单数据统计",
  1200. "app-plus": {
  1201. // #ifdef APP-PLUS
  1202. "titleNView": {
  1203. "type": "default"
  1204. }
  1205. // #endif
  1206. }
  1207. }
  1208. },
  1209. {
  1210. "path": "order_cancellation/index",
  1211. "style": {
  1212. "navigationBarTitleText": "订单核销",
  1213. "app-plus": {
  1214. // #ifdef APP-PLUS
  1215. "titleNView": {
  1216. "type": "default"
  1217. }
  1218. // #endif
  1219. }
  1220. }
  1221. }
  1222. ]
  1223. },
  1224. {
  1225. "root": "pages/columnGoods",
  1226. "name": "columnGoods",
  1227. "pages": [{
  1228. "path": "HotNewGoods/index",
  1229. "style": {
  1230. "navigationBarTitleText": "精品推荐",
  1231. "app-plus": {
  1232. // #ifdef APP-PLUS
  1233. "titleNView": {
  1234. "type": "default"
  1235. }
  1236. // #endif
  1237. }
  1238. }
  1239. },
  1240. {
  1241. "path": "HotNewGoods/feedback",
  1242. "style": {
  1243. "navigationBarTitleText": "我的客服",
  1244. "navigationBarTextStyle": "white",
  1245. "navigationBarBackgroundColor": "#3A3A3A",
  1246. "app-plus": {
  1247. // #ifdef APP-PLUS
  1248. "titleNView": {
  1249. "type": "default"
  1250. }
  1251. // #endif
  1252. }
  1253. }
  1254. },
  1255. {
  1256. "path": "live_list/index",
  1257. "style": {
  1258. "navigationBarTitleText": "精彩内容"
  1259. }
  1260. }
  1261. ]
  1262. },
  1263. {
  1264. "root": "pages/annex",
  1265. "pages": [{
  1266. "path": "web_view/index",
  1267. "style": {
  1268. "navigationBarTitleText": "",
  1269. "app-plus": {
  1270. // #ifdef APP-PLUS
  1271. "titleNView": {
  1272. "type": "default"
  1273. }
  1274. // #endif
  1275. }
  1276. }
  1277. }, {
  1278. "path": "vip_paid/index",
  1279. "style": {
  1280. "navigationBarTitleText": "SVIP会员",
  1281. "app-plus": {
  1282. // #ifdef APP-PLUS
  1283. "titleNView": {
  1284. "type": "default"
  1285. }
  1286. // #endif
  1287. }
  1288. }
  1289. },
  1290. {
  1291. "path": "vip_coupon/index",
  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": "vip_clause/index",
  1305. "style": {
  1306. "navigationBarTitleText": "会员协议",
  1307. "app-plus": {
  1308. // #ifdef APP-PLUS
  1309. "titleNView": {
  1310. "type": "default"
  1311. }
  1312. // #endif
  1313. }
  1314. }
  1315. },
  1316. {
  1317. "path": "vip_active/index",
  1318. "style": {
  1319. "navigationBarTitleText": "激活会员",
  1320. "app-plus": {
  1321. // #ifdef APP-PLUS
  1322. "titleNView": {
  1323. "type": "default"
  1324. }
  1325. // #endif
  1326. }
  1327. }
  1328. },
  1329. {
  1330. "path": "offline_pay/index",
  1331. "style": {
  1332. "navigationBarTitleText": "支付",
  1333. "app-plus": {
  1334. // #ifdef APP-PLUS
  1335. "titleNView": {
  1336. "type": "default"
  1337. }
  1338. // #endif
  1339. }
  1340. }
  1341. },
  1342. {
  1343. "path": "offline_result/index",
  1344. "style": {
  1345. "navigationBarTitleText": "支付结果",
  1346. "app-plus": {
  1347. // #ifdef APP-PLUS
  1348. "titleNView": {
  1349. "type": "default"
  1350. }
  1351. // #endif
  1352. }
  1353. }
  1354. },
  1355. {
  1356. "path": "special/index",
  1357. "style": {
  1358. "navigationBarTitleText": "专题页",
  1359. "app-plus": {
  1360. // #ifdef APP-PLUS
  1361. "titleNView": {
  1362. "type": "default"
  1363. }
  1364. // #endif
  1365. }
  1366. }
  1367. },
  1368. {
  1369. "path": "settled/index",
  1370. "style": {
  1371. "navigationBarTitleText": "代理商申请",
  1372. "app-plus": {
  1373. // #ifdef APP-PLUS
  1374. "titleNView": {
  1375. "type": "default"
  1376. }
  1377. // #endif
  1378. }
  1379. }
  1380. }
  1381. ]
  1382. },
  1383. {
  1384. "root": "pages/points_mall",
  1385. "pages": [{
  1386. "path": "index",
  1387. "style": {
  1388. "navigationBarTextStyle": "white",
  1389. "navigationBarBackgroundColor": "#333333",
  1390. "navigationBarTitleText": "积分商城",
  1391. "app-plus": {
  1392. // #ifdef APP-PLUS
  1393. "titleNView": {
  1394. "type": "default"
  1395. }
  1396. // #endif
  1397. }
  1398. }
  1399. },
  1400. {
  1401. "path": "integral_goods_list",
  1402. "style": {
  1403. "navigationBarTitleText": "商品列表",
  1404. // "navigationBarTextStyle": "white",
  1405. // "navigationBarBackgroundColor": "#E93323",
  1406. "app-plus": {
  1407. // #ifdef APP-PLUS
  1408. "titleNView": {
  1409. "type": "default"
  1410. }
  1411. // #endif
  1412. }
  1413. }
  1414. },
  1415. {
  1416. "path": "integral_goods_details",
  1417. "style": {
  1418. "navigationStyle": "custom",
  1419. "app-plus": {
  1420. // #ifdef APP-PLUS
  1421. "titleNView": {
  1422. "padding-left": "10px",
  1423. "padding-right": "10px",
  1424. "type": "transparent",
  1425. "buttons": [ //原生标题栏按钮配置,
  1426. {
  1427. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1428. }
  1429. ]
  1430. }
  1431. // #endif
  1432. }
  1433. }
  1434. },
  1435. {
  1436. "path": "exchange_record",
  1437. "style": {
  1438. "navigationBarTitleText": "兑换记录",
  1439. "app-plus": {
  1440. // #ifdef APP-PLUS
  1441. "titleNView": {
  1442. "type": "default"
  1443. }
  1444. // #endif
  1445. }
  1446. }
  1447. },
  1448. {
  1449. "path": "integral_order",
  1450. "style": {
  1451. "navigationBarTitleText": "积分订单",
  1452. "app-plus": {
  1453. // #ifdef APP-PLUS
  1454. "titleNView": {
  1455. "type": "default"
  1456. }
  1457. // #endif
  1458. }
  1459. }
  1460. }, {
  1461. "path": "user_address",
  1462. "style": {
  1463. "navigationBarTitleText": "选择地址",
  1464. "app-plus": {
  1465. // #ifdef APP-PLUS
  1466. "titleNView": {
  1467. "type": "default"
  1468. }
  1469. // #endif
  1470. }
  1471. }
  1472. },
  1473. {
  1474. "path": "integral_order_status",
  1475. "style": {
  1476. "navigationBarTitleText": "兑换成功",
  1477. "app-plus": {
  1478. // #ifdef APP-PLUS
  1479. "titleNView": {
  1480. "type": "default"
  1481. }
  1482. // #endif
  1483. }
  1484. }
  1485. }, {
  1486. "path": "integral_order_details",
  1487. "style": {
  1488. "navigationBarTitleText": "兑换订单详情",
  1489. "app-plus": {
  1490. // #ifdef APP-PLUS
  1491. "titleNView": {
  1492. "type": "default"
  1493. }
  1494. // #endif
  1495. }
  1496. }
  1497. }, {
  1498. "path": "logistics_details",
  1499. "style": {
  1500. "navigationBarTitleText": "兑换物流详情",
  1501. "app-plus": {
  1502. // #ifdef APP-PLUS
  1503. "titleNView": {
  1504. "type": "default"
  1505. }
  1506. // #endif
  1507. }
  1508. }
  1509. }
  1510. ]
  1511. }
  1512. ],
  1513. "tabBar": {
  1514. "color": "#282828",
  1515. "selectedColor": "#ff3366",
  1516. "borderStyle": "white",
  1517. "backgroundColor": "#ffffff",
  1518. "list": [{
  1519. "pagePath": "pages/index/index",
  1520. "iconPath": "static/images/1-001.png",
  1521. "selectedIconPath": "static/images/1-002.png",
  1522. "text": "首页"
  1523. },
  1524. {
  1525. "pagePath": "pages/goods_cate/goods_cate",
  1526. "iconPath": "static/images/2-001.png",
  1527. "selectedIconPath": "static/images/2-002.png",
  1528. "text": "分类"
  1529. },
  1530. {
  1531. "pagePath": "pages/order_addcart/order_addcart",
  1532. "iconPath": "static/images/3-001.png",
  1533. "selectedIconPath": "static/images/3-002.png",
  1534. "text": "购物车"
  1535. },
  1536. {
  1537. "pagePath": "pages/user/index",
  1538. "iconPath": "static/images/4-001.png",
  1539. "selectedIconPath": "static/images/4-002.png",
  1540. "text": "我的"
  1541. }
  1542. ]
  1543. },
  1544. "globalStyle": {
  1545. "navigationBarTextStyle": "black",
  1546. "navigationBarTitleText": "加载中",
  1547. "navigationBarBackgroundColor": "#fff",
  1548. "backgroundColor": "#F8F8F8",
  1549. "titleNView": false
  1550. },
  1551. "condition": { //模式配置,仅开发期间生效
  1552. "current": 0, //当前激活的模式(list 的索引项)
  1553. "list": [{
  1554. "name": "", //模式名称
  1555. "path": "", //启动页面,必选
  1556. "query": "" //启动参数,在页面的onLoad函数里面得到
  1557. }]
  1558. }
  1559. }