pages.json 32 KB

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