pages.json 30 KB

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