pages.json 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555
  1. {
  2. "lazyCodeLoading": "requiredComponents",
  3. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path": "pages/guide/index",
  6. "style": {
  7. "app-plus": {
  8. "titleNView": false //禁用原生导航栏
  9. },
  10. "navigationStyle": "custom",
  11. "disableScroll": true
  12. }
  13. },
  14. {
  15. "path": "pages/index/index",
  16. "style": {
  17. "navigationBarTitleText": "首页",
  18. "navigationStyle": "custom",
  19. "navigationBarTextStyle": "black"
  20. // #ifdef APP-PLUS
  21. ,
  22. "enablePullDownRefresh": true
  23. // #endif
  24. }
  25. },
  26. {
  27. "path": "pages/new_pages/index/index",
  28. "style": {
  29. "navigationBarTitleText": "首页",
  30. "navigationStyle": "custom",
  31. "navigationBarTextStyle": "black"
  32. // #ifdef APP-PLUS
  33. ,
  34. "enablePullDownRefresh": true
  35. // #endif
  36. }
  37. },
  38. {
  39. "path": "pages/goods_cate/index",
  40. "style": {
  41. "navigationBarTitleText": "商品分类",
  42. "navigationStyle": "custom"
  43. }
  44. },
  45. {
  46. "path": "pages/discover_index/index",
  47. "style": {
  48. "navigationBarTitleText": "逛逛",
  49. "navigationStyle": "custom",
  50. "navigationBarTextStyle": "black"
  51. }
  52. },
  53. {
  54. "path": "pages/order_addcart/order_addcart",
  55. "style": {
  56. "navigationStyle": "custom",
  57. "navigationBarTitleText": "购物车"
  58. // "app-plus": {
  59. // // #ifdef APP-PLUS
  60. // "titleNView": {
  61. // "type": "default"
  62. // }
  63. // // #endif
  64. // }
  65. }
  66. },
  67. {
  68. "path": "pages/order/index",
  69. "style": {
  70. "navigationStyle": "custom",
  71. "navigationBarTitleText": "订单"
  72. }
  73. },
  74. {
  75. "path": "pages/user/index",
  76. "style": {
  77. "navigationBarTitleText": "个人中心",
  78. "navigationStyle": "custom",
  79. // #ifdef MP || APP-PLUS
  80. "navigationBarTextStyle": "black",
  81. "navigationBarBackgroundColor": "#fff",
  82. // #endif
  83. "app-plus": {
  84. // #ifdef APP-PLUS
  85. "titleNView": {
  86. "type": "default"
  87. }
  88. // #endif
  89. }
  90. }
  91. }
  92. ],
  93. "subPackages": [{
  94. "root": "pages/users",
  95. "name": "users",
  96. "pages": [{
  97. "path": "web_page/index",
  98. "style": {
  99. //"navigationBarTitleText": "客服",
  100. "app-plus": {
  101. // #ifdef APP-PLUS
  102. "titleNView": {
  103. "type": "default"
  104. }
  105. // #endif
  106. }
  107. }
  108. },
  109. {
  110. "path": "user_info/index",
  111. "style": {
  112. "navigationBarTitleText": "个人资料",
  113. "app-plus": {
  114. // #ifdef APP-PLUS
  115. "titleNView": {
  116. "type": "default"
  117. }
  118. // #endif
  119. }
  120. }
  121. },
  122. {
  123. "path": "user_setting/index",
  124. "style": {
  125. "navigationBarTitleText": "个人信息",
  126. "app-plus": {
  127. // #ifdef APP-PLUS
  128. "titleNView": {
  129. "type": "default"
  130. }
  131. // #endif
  132. }
  133. }
  134. },
  135. {
  136. "path": "user_money/index",
  137. "style": {
  138. "navigationBarTitleText": "我的账户",
  139. "app-plus": {
  140. // #ifdef APP-PLUS
  141. "titleNView": {
  142. "type": "default"
  143. }
  144. // #endif
  145. }
  146. }
  147. },
  148. {
  149. "path": "user_bill/index",
  150. "style": {
  151. "navigationBarTitleText": "账单明细",
  152. "app-plus": {
  153. // #ifdef APP-PLUS
  154. "titleNView": {
  155. "type": "default"
  156. }
  157. // #endif
  158. }
  159. }
  160. },
  161. {
  162. "path": "user_spread_user/index",
  163. "style": {
  164. "navigationBarTitleText": "我的推广",
  165. // #ifdef MP || APP-PLUS
  166. "navigationBarTextStyle": "black",
  167. "navigationBarBackgroundColor": "#fff",
  168. // #endif
  169. "app-plus": {
  170. // #ifdef APP-PLUS
  171. "titleNView": {
  172. "type": "default"
  173. }
  174. // #endif
  175. }
  176. }
  177. },
  178. {
  179. "path": "user_spread_code/index",
  180. "style": {
  181. "navigationBarTitleText": "分销海报",
  182. "app-plus": {
  183. // #ifdef APP-PLUS
  184. "titleNView": {
  185. "type": "default"
  186. }
  187. // #endif
  188. }
  189. }
  190. },
  191. {
  192. "path": "user_spread_money/index",
  193. "style": {
  194. "navigationBarTitleText": "佣金记录",
  195. "app-plus": {
  196. // #ifdef APP-PLUS
  197. "titleNView": {
  198. "type": "default"
  199. }
  200. // #endif
  201. }
  202. }
  203. },
  204. {
  205. "path": "user_transferOut/index",
  206. "style": {
  207. "navigationBarTitleText": "transferOut",
  208. "app-plus": {
  209. // #ifdef APP-PLUS
  210. "titleNView": {
  211. "type": "default"
  212. }
  213. // #endif
  214. }
  215. }
  216. },
  217. {
  218. "path": "user_phone/index",
  219. "style": {
  220. "navigationBarTitleText": "修改手机号",
  221. "navigationBarBackgroundColor": "#e93323"
  222. // #ifdef MP || APP-PLUS
  223. ,
  224. "navigationBarTextStyle": "black"
  225. // #endif
  226. ,
  227. "app-plus": {
  228. // #ifdef APP-PLUS
  229. "titleNView": {
  230. "type": "default"
  231. }
  232. // #endif
  233. }
  234. }
  235. },
  236. {
  237. "path": "user_payment/index",
  238. "style": {
  239. "navigationBarTitleText": "余额充值",
  240. "app-plus": {
  241. // #ifdef APP-PLUS
  242. "titleNView": {
  243. "type": "default"
  244. }
  245. // #endif
  246. }
  247. }
  248. },
  249. {
  250. "path": "user_spread_brokerage_out/index",
  251. "style": {
  252. "navigationBarTitleText": "佣金转入",
  253. "app-plus": {
  254. // #ifdef APP-PLUS
  255. "titleNView": {
  256. "type": "default"
  257. }
  258. // #endif
  259. }
  260. }
  261. },
  262. {
  263. "path": "user_pwd_edit/index",
  264. "style": {
  265. "navigationBarTitleText": "修改密码"
  266. // #ifdef MP || APP-PLUS
  267. ,
  268. "navigationBarTextStyle": "black"
  269. // #endif
  270. ,
  271. "app-plus": {
  272. // #ifdef APP-PLUS
  273. "titleNView": {
  274. "type": "default"
  275. }
  276. // #endif
  277. }
  278. }
  279. },
  280. {
  281. "path": "promoter-list/index",
  282. "style": {
  283. "navigationBarTitleText": "推广人列表",
  284. "app-plus": {
  285. // #ifdef APP-PLUS
  286. "titleNView": {
  287. "type": "default"
  288. }
  289. // #endif
  290. }
  291. }
  292. },
  293. {
  294. "path": "promoter-order/index",
  295. "style": {
  296. "navigationBarTitleText": "推广人订单",
  297. "app-plus": {
  298. // #ifdef APP-PLUS
  299. "titleNView": {
  300. "type": "default"
  301. }
  302. // #endif
  303. }
  304. }
  305. },
  306. {
  307. "path": "promoter_rank/index",
  308. "style": {
  309. "navigationBarTitleText": "推广人排行",
  310. "app-plus": {
  311. // #ifdef APP-PLUS
  312. "titleNView": {
  313. "type": "default"
  314. }
  315. // #endif
  316. }
  317. }
  318. },
  319. {
  320. "path": "commission_rank/index",
  321. "style": {
  322. "navigationBarTitleText": "佣金排行",
  323. "app-plus": {
  324. // #ifdef APP-PLUS
  325. "titleNView": {
  326. "type": "default"
  327. }
  328. // #endif
  329. }
  330. }
  331. },
  332. {
  333. "path": "login/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": "wechat_login/index",
  347. "style": {
  348. "navigationBarTitleText": "账户登录",
  349. "navigationStyle": "custom",
  350. "app-plus": {
  351. // #ifdef APP-PLUS
  352. "titleNView": {
  353. "type": "default"
  354. }
  355. // #endif
  356. }
  357. }
  358. },
  359. {
  360. "path": "app_login/index",
  361. "style": {
  362. "navigationBarTitleText": "绑定手机号",
  363. "navigationStyle": "custom",
  364. "app-plus": {
  365. // #ifdef APP-PLUS
  366. "titleNView": {
  367. "type": "default"
  368. }
  369. // #endif
  370. }
  371. }
  372. },
  373. {
  374. "path": "app_update/app_update",
  375. "style": {
  376. "navigationBarTitleText": "检查更新",
  377. "app-plus": {
  378. // #ifdef APP-PLUS
  379. "titleNView": {
  380. "type": "default"
  381. }
  382. // #endif
  383. }
  384. }
  385. },
  386. {
  387. "path": "settled/index",
  388. "style": {
  389. "navigationBarTitleText": "商户入驻",
  390. "enablePullDownRefresh": false,
  391. "app-plus": {
  392. // #ifdef APP-PLUS
  393. "titleNView": {
  394. "type": "default"
  395. }
  396. // #endif
  397. }
  398. }
  399. },
  400. {
  401. "path": "user_sgin_info/index",
  402. "style": {
  403. "navigationBarTitleText": "签到说明",
  404. "app-plus": {
  405. // #ifdef APP-PLUS
  406. "titleNView": {
  407. "type": "default"
  408. }
  409. // #endif
  410. }
  411. }
  412. },
  413. {
  414. "path": "user_coupon/index",
  415. "style": {
  416. "navigationBarTitleText": "我的优惠券",
  417. "app-plus": {
  418. // #ifdef APP-PLUS
  419. "titleNView": {
  420. "type": "default"
  421. }
  422. // #endif
  423. }
  424. }
  425. }
  426. ]
  427. },
  428. {
  429. "root": "pages/merchant",
  430. "name": "merchant",
  431. "pages": [{
  432. "path": "home/index",
  433. "style": {
  434. "navigationBarTitleText": "商户首页",
  435. "navigationStyle": "custom",
  436. "enablePullDownRefresh": false
  437. }
  438. },
  439. {
  440. "path": "classify_coupon/index",
  441. "style": {
  442. "navigationBarTitleText": "商品分类",
  443. "navigationStyle": "custom",
  444. "enablePullDownRefresh": false,
  445. "app-plus": {
  446. // #ifdef APP-PLUS
  447. "titleNView": {
  448. "type": "default"
  449. }
  450. // #endif
  451. }
  452. }
  453. },
  454. {
  455. "path": "application_record/index",
  456. "style": {
  457. "navigationBarTitleText": "申请记录",
  458. "enablePullDownRefresh": false,
  459. "app-plus": {
  460. // #ifdef APP-PLUS
  461. "titleNView": {
  462. "type": "default"
  463. }
  464. // #endif
  465. }
  466. }
  467. },
  468. {
  469. "path": "detail/index",
  470. "style": {
  471. "navigationBarTitleText": "商户详情",
  472. "app-plus": {
  473. // #ifdef APP-PLUS
  474. "titleNView": {
  475. "type": "default"
  476. }
  477. // #endif
  478. }
  479. }
  480. },
  481. {
  482. "path": "user_integral/index",
  483. "style": {
  484. "navigationBarTitleText": "积分详情",
  485. "app-plus": {
  486. // #ifdef APP-PLUS
  487. "titleNView": {
  488. "type": "default"
  489. }
  490. // #endif
  491. }
  492. }
  493. },
  494. {
  495. "path": "user_sgin/index",
  496. "style": {
  497. "navigationBarTitleText": "签到",
  498. "app-plus": {
  499. // #ifdef APP-PLUS
  500. "titleNView": {
  501. "type": "default"
  502. }
  503. // #endif
  504. }
  505. }
  506. },
  507. {
  508. "path": "user_sgin_list/index",
  509. "style": {
  510. "navigationBarTitleText": "签到记录",
  511. "app-plus": {
  512. // #ifdef APP-PLUS
  513. "titleNView": {
  514. "type": "default"
  515. }
  516. // #endif
  517. }
  518. }
  519. },
  520. {
  521. "path": "merchant_street/index",
  522. "style": {
  523. "navigationBarTitleText": "店铺街",
  524. //"enablePullDownRefresh": false,
  525. "app-plus": {
  526. // #ifdef APP-PLUS
  527. "titleNView": {
  528. "type": "default"
  529. }
  530. // #endif
  531. }
  532. }
  533. }
  534. ]
  535. },
  536. {
  537. "root": "pages/goods",
  538. "path": "goods",
  539. "pages": [{
  540. "path": "goods_details/index",
  541. "style": {
  542. "navigationBarTitleText": "商品详情",
  543. "navigationStyle": "custom"
  544. }
  545. },
  546. {
  547. "path": "goods_list/index",
  548. "style": {
  549. "navigationBarTitleText": "商品列表",
  550. //"navigationStyle": "custom",
  551. "app-plus": {
  552. // #ifdef APP-PLUS
  553. "titleNView": {
  554. "type": "default"
  555. }
  556. // #endif
  557. }
  558. }
  559. },
  560. {
  561. "path": "coupon_goods_list/index",
  562. "style": {
  563. "navigationBarTitleText": "商品列表",
  564. "app-plus": {
  565. // #ifdef APP-PLUS
  566. "titleNView": {
  567. "type": "default"
  568. }
  569. // #endif
  570. }
  571. }
  572. },
  573. {
  574. "path": "systemIframe/index",
  575. "style": {
  576. "navigationBarTitleText": "系统表单",
  577. "app-plus": {
  578. // #ifdef APP-PLUS
  579. "titleNView": {
  580. "type": "default"
  581. }
  582. // #endif
  583. }
  584. }
  585. },
  586. {
  587. "path": "goods_search/index",
  588. "style": {
  589. "navigationBarTitleText": "搜索商品",
  590. "navigationStyle": "custom",
  591. "app-plus": {
  592. // #ifdef APP-PLUS
  593. "titleNView": {
  594. "type": "default"
  595. }
  596. // #endif
  597. }
  598. }
  599. },
  600. {
  601. "path": "news_list/index",
  602. "style": {
  603. "navigationBarTitleText": "资讯",
  604. "app-plus": {
  605. // #ifdef APP-PLUS
  606. "titleNView": {
  607. "type": "default"
  608. }
  609. // #endif
  610. }
  611. }
  612. },
  613. {
  614. "path": "news_details/index",
  615. "style": {
  616. "navigationBarTitleText": "资讯详情",
  617. "app-plus": {
  618. // #ifdef APP-PLUS
  619. "titleNView": {
  620. "type": "default"
  621. }
  622. // #endif
  623. }
  624. }
  625. },
  626. {
  627. "path": "browsing_history/index",
  628. "style": {
  629. "navigationBarTitleText": "浏览记录",
  630. "backgroundColor": "#FFFFFF",
  631. "app-plus": {
  632. // #ifdef APP-PLUS
  633. "titleNView": {
  634. "type": "default"
  635. }
  636. // #endif
  637. }
  638. }
  639. },
  640. {
  641. "path": "order_list/index",
  642. "style": {
  643. "navigationBarTitleText": "我的订单",
  644. "app-plus": {
  645. // #ifdef APP-PLUS
  646. "titleNView": {
  647. "type": "default"
  648. }
  649. // #endif
  650. }
  651. }
  652. },
  653. {
  654. "path": "order_logistics/index",
  655. "style": {
  656. "navigationBarTitleText": "发货记录",
  657. "app-plus": {
  658. // #ifdef APP-PLUS
  659. "titleNView": {
  660. "type": "default"
  661. }
  662. // #endif
  663. }
  664. }
  665. },
  666. {
  667. "path": "order_confirm/index",
  668. "style": {
  669. "navigationBarTitleText": "提交订单",
  670. "navigationStyle": "custom",
  671. "app-plus": {
  672. // #ifdef APP-PLUS
  673. "titleNView": {
  674. "type": "default"
  675. }
  676. // #endif
  677. }
  678. }
  679. },
  680. {
  681. "path": "order_payment/index",
  682. "style": {
  683. "navigationBarTitleText": "支付订单",
  684. // #ifdef MP || APP-PLUS
  685. "navigationBarTextStyle": "black",
  686. "navigationBarBackgroundColor": "#fff",
  687. // #endif
  688. "app-plus": {
  689. // #ifdef APP-PLUS
  690. "titleNView": {
  691. "type": "default"
  692. }
  693. // #endif
  694. }
  695. }
  696. },
  697. {
  698. "path": "refund_details/index",
  699. "style": {
  700. "navigationBarTitleText": "售后详情",
  701. "navigationBarBackgroundColor": "#fff",
  702. "app-plus": {
  703. // #ifdef APP-PLUS
  704. "titleNView": {
  705. "type": "default"
  706. }
  707. // #endif
  708. }
  709. }
  710. },
  711. {
  712. "path": "order_pay_status/index",
  713. "style": {
  714. "navigationBarTitleText": "支付结果",
  715. "app-plus": {
  716. // #ifdef APP-PLUS
  717. "titleNView": {
  718. "type": "default"
  719. }
  720. // #endif
  721. }
  722. }
  723. },
  724. {
  725. "path": "order_details/index",
  726. "style": {
  727. "navigationBarTitleText": "订单详情",
  728. "app-plus": {
  729. // #ifdef APP-PLUS
  730. "titleNView": {
  731. "type": "default"
  732. }
  733. // #endif
  734. }
  735. }
  736. },
  737. {
  738. "path": "virtual_order_details/index",
  739. "style": {
  740. "navigationBarTitleText": "订单详情",
  741. "app-plus": {
  742. // #ifdef APP-PLUS
  743. "titleNView": {
  744. "type": "default"
  745. }
  746. // #endif
  747. }
  748. }
  749. },
  750. {
  751. "path": "user_return_list/index",
  752. "style": {
  753. "navigationBarTitleText": "售后列表",
  754. "app-plus": {
  755. // #ifdef APP-PLUS
  756. "titleNView": {
  757. "type": "default"
  758. }
  759. // #endif
  760. }
  761. }
  762. },
  763. {
  764. "path": "goods_return/index",
  765. "style": {
  766. "navigationBarTitleText": "售后退款",
  767. "app-plus": {
  768. // #ifdef APP-PLUS
  769. "titleNView": {
  770. "type": "default"
  771. }
  772. // #endif
  773. }
  774. }
  775. },
  776. {
  777. "path": "after_sales_type/index",
  778. "style": {
  779. "navigationBarTitleText": "售后类型",
  780. "app-plus": {
  781. // #ifdef APP-PLUS
  782. "titleNView": {
  783. "type": "default"
  784. }
  785. // #endif
  786. }
  787. }
  788. },
  789. {
  790. "path": "returns_and_refunds/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_comment_con/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": "evaluation_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_comment_list/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_logistics/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": "send_record/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": "agreement_rules/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": "user_goods_collection/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": "user_merchant_collection/index",
  895. "style": {
  896. "navigationBarTitleText": "收藏店铺",
  897. "app-plus": {
  898. // #ifdef APP-PLUS
  899. "titleNView": {
  900. "type": "default"
  901. }
  902. // #endif
  903. }
  904. }
  905. },
  906. {
  907. "path": "alipay_return/alipay_return",
  908. "style": {
  909. "navigationBarTitleText": "",
  910. "enablePullDownRefresh": false
  911. }
  912. },
  913. {
  914. "path": "alipay_invoke/index",
  915. "style": {
  916. "navigationBarTitleText": "",
  917. "enablePullDownRefresh": false
  918. }
  919. },
  920. {
  921. "path": "agreement_info/index",
  922. "style": {
  923. "navigationBarTitleText": "",
  924. "app-plus": {
  925. // #ifdef APP-PLUS
  926. "titleNView": {
  927. "type": "default"
  928. }
  929. // #endif
  930. }
  931. }
  932. },
  933. {
  934. "path": "user_grade/index",
  935. "style": {
  936. "navigationBarTitleText": "我的等级",
  937. "navigationBarBackgroundColor": "#181818",
  938. "app-plus": {
  939. // #ifdef APP-PLUS
  940. "titleNView": {
  941. "type": "default"
  942. }
  943. // #endif
  944. }
  945. // #ifdef MP || APP-PLUS
  946. ,
  947. "navigationBarTextStyle": "black"
  948. // #endif
  949. }
  950. },
  951. {
  952. "path": "exp_record/index",
  953. "style": {
  954. "navigationBarTitleText": "经验值明细",
  955. "app-plus": {
  956. // #ifdef APP-PLUS
  957. "titleNView": {
  958. "type": "default"
  959. }
  960. // #endif
  961. }
  962. }
  963. },
  964. {
  965. "path": "level_rule/index",
  966. "style": {
  967. "navigationBarTitleText": "等级规则说明",
  968. "navigationBarBackgroundColor": "#282828",
  969. "app-plus": {
  970. // #ifdef APP-PLUS
  971. "titleNView": {
  972. "type": "default"
  973. }
  974. // #endif
  975. }
  976. // #ifdef MP || APP-PLUS
  977. ,
  978. "navigationBarTextStyle": "black"
  979. // #endif
  980. }
  981. }
  982. ]
  983. },
  984. {
  985. "root": "pages/address",
  986. "name": "address",
  987. "pages": [{
  988. "path": "user_address_list/index",
  989. "style": {
  990. "navigationBarTitleText": "地址管理",
  991. "app-plus": {
  992. // #ifdef APP-PLUS
  993. "titleNView": {
  994. "type": "default"
  995. }
  996. // #endif
  997. }
  998. }
  999. },
  1000. {
  1001. "path": "user_address/index",
  1002. "style": {
  1003. "navigationBarTitleText": "添加地址",
  1004. "app-plus": {
  1005. // #ifdef APP-PLUS
  1006. "titleNView": {
  1007. "type": "default"
  1008. }
  1009. // #endif
  1010. }
  1011. }
  1012. }
  1013. ]
  1014. // "plugins": {
  1015. // "live-player-plugin": {
  1016. // "version": "1.3.2",
  1017. // "provider": "wx2b03c6e691cd7370"
  1018. // }
  1019. // }
  1020. },
  1021. {
  1022. "root": "pages/activity",
  1023. "name": "activity",
  1024. "pages": [{
  1025. "path": "goods_seckill/index",
  1026. "style": {
  1027. "navigationBarTitleText": "秒杀列表",
  1028. "navigationStyle": "custom"
  1029. // #ifdef MP || APP-PLUS
  1030. ,
  1031. "navigationBarTextStyle": "black"
  1032. // #endif
  1033. }
  1034. },
  1035. {
  1036. "path": "mer-good-seckill/index",
  1037. "style": {
  1038. "navigationBarTitleText": "秒杀列表",
  1039. "navigationStyle": "custom"
  1040. // #ifdef MP || APP-PLUS
  1041. ,
  1042. "navigationBarTextStyle": "black"
  1043. // #endif
  1044. }
  1045. },
  1046. {
  1047. "path": "goods_group/index",
  1048. "style": {
  1049. "navigationBarTitleText": "拼团活动",
  1050. "navigationStyle": "custom"
  1051. // #ifdef MP || APP-PLUS
  1052. ,
  1053. "navigationBarTextStyle": "black"
  1054. // #endif
  1055. }
  1056. },
  1057. {
  1058. "path": "liveBroadcast/index",
  1059. "style": {
  1060. "navigationBarTitleText": "列表",
  1061. "navigationBarBackgroundColor": "#F2F2F2"
  1062. }
  1063. },
  1064. {
  1065. "path": "status/index",
  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": "couponList/index",
  1079. "style": {
  1080. "navigationBarTitleText": "领券中心",
  1081. // #ifdef MP || APP-PLUS
  1082. "navigationBarTextStyle": "black",
  1083. "navigationBarBackgroundColor": "#F2F2F2",
  1084. // #endif
  1085. "app-plus": {
  1086. // #ifdef APP-PLUS
  1087. "titleNView": {
  1088. "type": "default"
  1089. }
  1090. // #endif
  1091. }
  1092. }
  1093. },
  1094. {
  1095. "path": "small_page/index",
  1096. "style": {
  1097. "navigationBarTitleText": "",
  1098. "enablePullDownRefresh": false,
  1099. "app-plus": {
  1100. // #ifdef APP-PLUS
  1101. "titleNView": {
  1102. "type": "default"
  1103. }
  1104. // #endif
  1105. }
  1106. }
  1107. },
  1108. {
  1109. "path": "vip_paid/index",
  1110. "style": {
  1111. "navigationBarTitleText": "SVIP会员",
  1112. "navigationStyle": "custom",
  1113. "app-plus": {
  1114. // #ifdef APP-PLUS
  1115. "titleNView": {
  1116. "type": "default"
  1117. }
  1118. // #endif
  1119. }
  1120. }
  1121. },
  1122. {
  1123. "path": "vip_paid_benefits/index",
  1124. "style": {
  1125. "navigationBarTitleText": "会员权益",
  1126. "navigationStyle": "custom",
  1127. "app-plus": {
  1128. // #ifdef APP-PLUS
  1129. "titleNView": {
  1130. "type": "default"
  1131. }
  1132. // #endif
  1133. }
  1134. }
  1135. },
  1136. {
  1137. "path": "vip_order_record/index",
  1138. "style": {
  1139. "navigationBarTitleText": "会员购买记录",
  1140. "app-plus": {
  1141. // #ifdef APP-PLUS
  1142. "titleNView": {
  1143. "type": "default"
  1144. }
  1145. // #endif
  1146. }
  1147. }
  1148. },
  1149. {
  1150. "path": "points_mall/index",
  1151. "style": {
  1152. "navigationBarTitleText": "积分商城",
  1153. "navigationStyle": "custom"
  1154. }
  1155. },
  1156. {
  1157. "path": "goods_points/index",
  1158. "style": {
  1159. "navigationBarTitleText": "热门推荐",
  1160. "navigationStyle": "custom"
  1161. // #ifdef MP || APP-PLUS
  1162. ,
  1163. "navigationBarTextStyle": "black"
  1164. // #endif
  1165. }
  1166. }
  1167. ]
  1168. },
  1169. {
  1170. "root": "pages/discover",
  1171. "name": "discover",
  1172. "pages": [{
  1173. "path": "discover_search_list/index",
  1174. "style": {
  1175. "navigationBarTitleText": "搜索页面",
  1176. "app-plus": {
  1177. // #ifdef APP-PLUS
  1178. "titleNView": {
  1179. "type": "default"
  1180. }
  1181. // #endif
  1182. }
  1183. }
  1184. },
  1185. {
  1186. "path": "discover_recommend/index",
  1187. "style": {
  1188. "navigationBarTitleText": "为你推荐",
  1189. // "navigationStyle": "custom",
  1190. "app-plus": {
  1191. // #ifdef APP-PLUS
  1192. "titleNView": {
  1193. "type": "default"
  1194. }
  1195. // #endif
  1196. }
  1197. }
  1198. },
  1199. {
  1200. "path": "discover_release/index",
  1201. "style": {
  1202. "navigationBarTitleText": "内容发布",
  1203. "app-plus": {
  1204. // #ifdef APP-PLUS
  1205. "titleNView": {
  1206. "type": "default"
  1207. }
  1208. // #endif
  1209. }
  1210. }
  1211. },
  1212. // #ifndef APP-PLUS
  1213. {
  1214. "path": "discover_video/routineVideo/index",
  1215. "style": {
  1216. "navigationBarTitleText": "逛逛短视频",
  1217. "navigationStyle": "custom",
  1218. "app-plus": {
  1219. "titleNView": false,
  1220. "bounce": "none"
  1221. }
  1222. }
  1223. },
  1224. // #endif
  1225. // #ifdef APP-PLUS
  1226. {
  1227. "path": "discover_video/appVideo/index",
  1228. "style": {
  1229. "navigationBarTitleText": "逛逛短视频",
  1230. "navigationStyle": "custom",
  1231. "navigationBarTextStyle": "black",
  1232. "app-plus": {
  1233. "titleNView": false,
  1234. "bounce": "none"
  1235. }
  1236. }
  1237. },
  1238. // #endif
  1239. {
  1240. "path": "discover_user/index",
  1241. "style": {
  1242. "navigationBarTitleText": "个人主页",
  1243. "navigationStyle": "custom"
  1244. }
  1245. },
  1246. {
  1247. "path": "discover_follow/index",
  1248. "style": {
  1249. "navigationBarTitleText": "我的关注",
  1250. "app-plus": {
  1251. // #ifdef APP-PLUS
  1252. "titleNView": {
  1253. "type": "default"
  1254. }
  1255. // #endif
  1256. }
  1257. }
  1258. },
  1259. {
  1260. "path": "discover_note_topic/index",
  1261. "style": {
  1262. "navigationBarTitleText": "话题",
  1263. "app-plus": {
  1264. // #ifdef APP-PLUS
  1265. "titleNView": {
  1266. "type": "default"
  1267. }
  1268. // #endif
  1269. }
  1270. }
  1271. },
  1272. {
  1273. "path": "discover_details/index",
  1274. "style": {
  1275. "navigationBarTitleText": "内容详情",
  1276. "app-plus": {
  1277. // #ifdef APP-PLUS
  1278. "titleNView": {
  1279. "type": "default"
  1280. }
  1281. // #endif
  1282. }
  1283. }
  1284. }
  1285. ]
  1286. },
  1287. {
  1288. "root": "pages/admin/",
  1289. "name": "admin",
  1290. "pages": [{
  1291. "path": "work/index",
  1292. "style": {
  1293. "navigationBarTitleText": "工作台",
  1294. "navigationStyle": "custom"
  1295. }
  1296. },
  1297. {
  1298. "path": "skipRefund/index",
  1299. "style": {
  1300. "navigationBarTitleText": "售后订单",
  1301. "navigationStyle": "custom"
  1302. }
  1303. },
  1304. {
  1305. "path": "order/index",
  1306. "style": {
  1307. "navigationBarTitleText": "订单管理",
  1308. "navigationStyle": "custom"
  1309. }
  1310. },
  1311. {
  1312. "path": "logistics/index",
  1313. "style": {
  1314. "navigationBarTitleText": "物流信息",
  1315. "app-plus": {
  1316. // #ifdef APP-PLUS
  1317. "titleNView": {
  1318. "type": "default"
  1319. }
  1320. // #endif
  1321. }
  1322. }
  1323. },
  1324. {
  1325. "path": "logistics/detail",
  1326. "style": {
  1327. "navigationBarTitleText": "发货记录",
  1328. "navigationStyle": "custom",
  1329. "app-plus": {
  1330. // #ifdef APP-PLUS
  1331. "titleNView": {
  1332. "type": "default"
  1333. }
  1334. // #endif
  1335. }
  1336. }
  1337. },
  1338. {
  1339. "path": "logistics/record",
  1340. "style": {
  1341. "navigationBarTitleText": "发货记录",
  1342. "navigationStyle": "custom",
  1343. "app-plus": {
  1344. // #ifdef APP-PLUS
  1345. "titleNView": {
  1346. "type": "default"
  1347. }
  1348. // #endif
  1349. }
  1350. }
  1351. },
  1352. {
  1353. "path": "refund/index",
  1354. "style": {
  1355. "navigationBarTitleText": "立即退款",
  1356. "app-plus": {
  1357. // #ifdef APP-PLUS
  1358. "titleNView": {
  1359. "type": "default"
  1360. }
  1361. // #endif
  1362. }
  1363. }
  1364. },
  1365. {
  1366. "path": "order/send",
  1367. "style": {
  1368. "navigationBarTitleText": "发货",
  1369. "app-plus": {
  1370. // #ifdef APP-PLUS
  1371. "titleNView": {
  1372. "type": "default"
  1373. }
  1374. // #endif
  1375. }
  1376. }
  1377. },
  1378. {
  1379. "path": "order/detail",
  1380. "style": {
  1381. "navigationStyle": "custom"
  1382. }
  1383. },
  1384. {
  1385. "path": "after_sale/index",
  1386. "style": {
  1387. "navigationBarTitleText": "售后订单",
  1388. "navigationStyle": "custom"
  1389. }
  1390. },
  1391. {
  1392. "path": "statistics/index",
  1393. "style": {
  1394. "navigationStyle": "custom",
  1395. "navigationBarTitleText": "销售额统计",
  1396. "app-plus": {
  1397. // #ifdef APP-PLUS
  1398. "titleNView": {
  1399. "type": "default"
  1400. }
  1401. // #endif
  1402. }
  1403. }
  1404. },
  1405. {
  1406. "path": "cancel/index",
  1407. "style": {
  1408. "navigationBarTitleText": "订单核销",
  1409. "app-plus": {
  1410. // #ifdef APP-PLUS
  1411. "titleNView": {
  1412. "type": "default"
  1413. }
  1414. // #endif
  1415. }
  1416. }
  1417. },
  1418. {
  1419. "path": "cancel/list",
  1420. "style": {
  1421. "navigationBarTitleText": "核销订单",
  1422. "app-plus": {
  1423. // #ifdef APP-PLUS
  1424. "titleNView": {
  1425. "type": "default"
  1426. }
  1427. // #endif
  1428. }
  1429. }
  1430. },
  1431. {
  1432. "path": "cancel/result",
  1433. "style": {
  1434. "navigationBarTitleText": "核销结果",
  1435. "app-plus": {
  1436. // #ifdef APP-PLUS
  1437. "titleNView": {
  1438. "type": "default"
  1439. }
  1440. // #endif
  1441. }
  1442. }
  1443. },
  1444. {
  1445. "path": "refundOrderDetail/index",
  1446. "style": {
  1447. "navigationStyle": "custom"
  1448. }
  1449. },
  1450. {
  1451. "path": "goods/index",
  1452. "style": {
  1453. "navigationStyle": "custom",
  1454. "navigationBarTitleText": "商品管理"
  1455. }
  1456. },
  1457. {
  1458. "path": "goods/specs",
  1459. "style": {
  1460. "navigationBarTitleText": "修改价格/库存",
  1461. "navigationBarBackgroundColor": "#F5F5F5",
  1462. "app-plus": {
  1463. // #ifdef APP-PLUS
  1464. "titleNView": {
  1465. "type": "default"
  1466. }
  1467. // #endif
  1468. }
  1469. }
  1470. },
  1471. {
  1472. "path": "goods/inventory",
  1473. "style": {
  1474. "navigationBarTitleText": "增加库存",
  1475. "navigationBarBackgroundColor": "#F5F5F5",
  1476. "app-plus": {
  1477. // #ifdef APP-PLUS
  1478. "titleNView": {
  1479. "type": "default"
  1480. }
  1481. // #endif
  1482. }
  1483. }
  1484. }
  1485. ]
  1486. }
  1487. //#ifdef H5
  1488. ,
  1489. {
  1490. "root": "pages/auth",
  1491. "name": "pages/auth/index",
  1492. "pages": [{
  1493. "path": "index",
  1494. "style": {
  1495. "navigationBarTitleText": "CRMEB"
  1496. }
  1497. }]
  1498. }
  1499. //#endif
  1500. ],
  1501. "globalStyle": {
  1502. "navigationBarTextStyle": "black",
  1503. "navigationBarTitleText": "crmeb",
  1504. "navigationBarBackgroundColor": "#fff",
  1505. "backgroundColor": "#F8F8F8",
  1506. "titleNView": false,
  1507. "rpxCalcMaxDeviceWidth": 960,
  1508. "rpxCalcBaseDeviceWidth": 375,
  1509. "rpxCalcIncludeWidth": 750,
  1510. "app-plus": {
  1511. "scrollIndicator": "none" //隐藏所有页面滚动条
  1512. }
  1513. },
  1514. "tabBar": {
  1515. "custom": false,
  1516. "color": "#8E8E8E",
  1517. "selectedColor": "#FF6702",
  1518. "borderStyle": "white",
  1519. "backgroundColor": "#ffffff",
  1520. "list": [{
  1521. "pagePath": "pages/index/index",
  1522. "iconPath": "/static/tabBar/home-false.png",
  1523. "selectedIconPath": "/static/tabBar/home-true.png",
  1524. "text": "首页"
  1525. },
  1526. {
  1527. "pagePath": "pages/order/index",
  1528. "iconPath": "/static/tabBar/order-false.png",
  1529. "selectedIconPath": "static/tabBar/order-true.png",
  1530. "text": "订单"
  1531. },
  1532. {
  1533. "pagePath": "pages/user/index",
  1534. "iconPath": "static/tabBar/my-false.png",
  1535. "selectedIconPath": "static/tabBar/my-true.png",
  1536. "text": "我的"
  1537. }
  1538. ]
  1539. },
  1540. "condition": { //模式配置,仅开发期间生效
  1541. "current": 0, //当前激活的模式(list 的索引项)
  1542. "list": [{
  1543. "name": "", //模式名称
  1544. "path": "", //启动页面,必选
  1545. "query": "" //启动参数,在页面的onLoad函数里面得到
  1546. }]
  1547. }
  1548. }