pages.json 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572
  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. "path" : "user_rider/index",
  428. "style": {
  429. "navigationBarTitleText": "成为骑手",
  430. "navigationStyle": "custom",
  431. "enablePullDownRefresh": false
  432. }
  433. }
  434. ]
  435. },
  436. {
  437. "root": "pages/merchant",
  438. "name": "merchant",
  439. "pages": [{
  440. "path": "home/index",
  441. "style": {
  442. "navigationBarTitleText": "商户首页",
  443. "navigationStyle": "custom",
  444. "enablePullDownRefresh": false
  445. }
  446. },
  447. {
  448. "path": "classify_coupon/index",
  449. "style": {
  450. "navigationBarTitleText": "商品分类",
  451. "navigationStyle": "custom",
  452. "enablePullDownRefresh": false,
  453. "app-plus": {
  454. // #ifdef APP-PLUS
  455. "titleNView": {
  456. "type": "default"
  457. }
  458. // #endif
  459. }
  460. }
  461. },
  462. {
  463. "path": "application_record/index",
  464. "style": {
  465. "navigationBarTitleText": "申请记录",
  466. "enablePullDownRefresh": false,
  467. "app-plus": {
  468. // #ifdef APP-PLUS
  469. "titleNView": {
  470. "type": "default"
  471. }
  472. // #endif
  473. }
  474. }
  475. },
  476. {
  477. "path": "detail/index",
  478. "style": {
  479. "navigationBarTitleText": "商户详情",
  480. "app-plus": {
  481. // #ifdef APP-PLUS
  482. "titleNView": {
  483. "type": "default"
  484. }
  485. // #endif
  486. }
  487. }
  488. },
  489. {
  490. "path": "user_integral/index",
  491. "style": {
  492. "navigationBarTitleText": "积分详情",
  493. "app-plus": {
  494. // #ifdef APP-PLUS
  495. "titleNView": {
  496. "type": "default"
  497. }
  498. // #endif
  499. }
  500. }
  501. },
  502. {
  503. "path": "user_sgin/index",
  504. "style": {
  505. "navigationBarTitleText": "签到",
  506. "app-plus": {
  507. // #ifdef APP-PLUS
  508. "titleNView": {
  509. "type": "default"
  510. }
  511. // #endif
  512. }
  513. }
  514. },
  515. {
  516. "path": "user_sgin_list/index",
  517. "style": {
  518. "navigationBarTitleText": "签到记录",
  519. "app-plus": {
  520. // #ifdef APP-PLUS
  521. "titleNView": {
  522. "type": "default"
  523. }
  524. // #endif
  525. }
  526. }
  527. },
  528. {
  529. "path": "merchant_street/index",
  530. "style": {
  531. "navigationBarTitleText": "店铺街",
  532. //"enablePullDownRefresh": false,
  533. "app-plus": {
  534. // #ifdef APP-PLUS
  535. "titleNView": {
  536. "type": "default"
  537. }
  538. // #endif
  539. }
  540. }
  541. }
  542. ]
  543. },
  544. {
  545. "root": "pages/goods",
  546. "path": "goods",
  547. "pages": [{
  548. "path": "goods_details/index",
  549. "style": {
  550. "navigationBarTitleText": "商品详情",
  551. "navigationStyle": "custom"
  552. }
  553. },
  554. {
  555. "path": "goods_list/index",
  556. "style": {
  557. "navigationBarTitleText": "商品列表",
  558. //"navigationStyle": "custom",
  559. "app-plus": {
  560. // #ifdef APP-PLUS
  561. "titleNView": {
  562. "type": "default"
  563. }
  564. // #endif
  565. }
  566. }
  567. },
  568. {
  569. "path": "coupon_goods_list/index",
  570. "style": {
  571. "navigationBarTitleText": "商品列表",
  572. "app-plus": {
  573. // #ifdef APP-PLUS
  574. "titleNView": {
  575. "type": "default"
  576. }
  577. // #endif
  578. }
  579. }
  580. },
  581. {
  582. "path": "systemIframe/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": "goods_search/index",
  596. "style": {
  597. "navigationBarTitleText": "搜索商品",
  598. "navigationStyle": "custom",
  599. "app-plus": {
  600. // #ifdef APP-PLUS
  601. "titleNView": {
  602. "type": "default"
  603. }
  604. // #endif
  605. }
  606. }
  607. },
  608. {
  609. "path": "news_list/index",
  610. "style": {
  611. "navigationBarTitleText": "资讯",
  612. "app-plus": {
  613. // #ifdef APP-PLUS
  614. "titleNView": {
  615. "type": "default"
  616. }
  617. // #endif
  618. }
  619. }
  620. },
  621. {
  622. "path": "news_details/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": "browsing_history/index",
  636. "style": {
  637. "navigationBarTitleText": "浏览记录",
  638. "backgroundColor": "#FFFFFF",
  639. "app-plus": {
  640. // #ifdef APP-PLUS
  641. "titleNView": {
  642. "type": "default"
  643. }
  644. // #endif
  645. }
  646. }
  647. },
  648. {
  649. "path": "order_list/index",
  650. "style": {
  651. "navigationBarTitleText": "我的订单",
  652. "app-plus": {
  653. // #ifdef APP-PLUS
  654. "titleNView": {
  655. "type": "default"
  656. }
  657. // #endif
  658. }
  659. }
  660. },
  661. {
  662. "path": "order_logistics/index",
  663. "style": {
  664. "navigationBarTitleText": "发货记录",
  665. "app-plus": {
  666. // #ifdef APP-PLUS
  667. "titleNView": {
  668. "type": "default"
  669. }
  670. // #endif
  671. }
  672. }
  673. },
  674. {
  675. "path": "order_confirm/index",
  676. "style": {
  677. "navigationBarTitleText": "提交订单",
  678. "navigationStyle": "custom",
  679. "app-plus": {
  680. // #ifdef APP-PLUS
  681. "titleNView": {
  682. "type": "default"
  683. }
  684. // #endif
  685. }
  686. }
  687. },
  688. {
  689. "path": "order_payment/index",
  690. "style": {
  691. "navigationBarTitleText": "支付订单",
  692. // #ifdef MP || APP-PLUS
  693. "navigationBarTextStyle": "black",
  694. "navigationBarBackgroundColor": "#fff",
  695. // #endif
  696. "app-plus": {
  697. // #ifdef APP-PLUS
  698. "titleNView": {
  699. "type": "default"
  700. }
  701. // #endif
  702. }
  703. }
  704. },
  705. {
  706. "path": "refund_details/index",
  707. "style": {
  708. "navigationBarTitleText": "售后详情",
  709. "navigationBarBackgroundColor": "#fff",
  710. "app-plus": {
  711. // #ifdef APP-PLUS
  712. "titleNView": {
  713. "type": "default"
  714. }
  715. // #endif
  716. }
  717. }
  718. },
  719. {
  720. "path": "order_pay_status/index",
  721. "style": {
  722. "navigationBarTitleText": "支付结果",
  723. "app-plus": {
  724. // #ifdef APP-PLUS
  725. "titleNView": {
  726. "type": "default"
  727. }
  728. // #endif
  729. }
  730. }
  731. },
  732. {
  733. "path": "order_details/index",
  734. "style": {
  735. "navigationBarTitleText": "订单详情",
  736. "app-plus": {
  737. // #ifdef APP-PLUS
  738. "titleNView": {
  739. "type": "default"
  740. }
  741. // #endif
  742. }
  743. }
  744. },
  745. {
  746. "path": "virtual_order_details/index",
  747. "style": {
  748. "navigationBarTitleText": "订单详情",
  749. "app-plus": {
  750. // #ifdef APP-PLUS
  751. "titleNView": {
  752. "type": "default"
  753. }
  754. // #endif
  755. }
  756. }
  757. },
  758. {
  759. "path": "user_return_list/index",
  760. "style": {
  761. "navigationBarTitleText": "售后列表",
  762. "app-plus": {
  763. // #ifdef APP-PLUS
  764. "titleNView": {
  765. "type": "default"
  766. }
  767. // #endif
  768. }
  769. }
  770. },
  771. {
  772. "path": "goods_return/index",
  773. "style": {
  774. "navigationBarTitleText": "售后退款",
  775. "app-plus": {
  776. // #ifdef APP-PLUS
  777. "titleNView": {
  778. "type": "default"
  779. }
  780. // #endif
  781. }
  782. }
  783. },
  784. {
  785. "path": "after_sales_type/index",
  786. "style": {
  787. "navigationBarTitleText": "售后类型",
  788. "app-plus": {
  789. // #ifdef APP-PLUS
  790. "titleNView": {
  791. "type": "default"
  792. }
  793. // #endif
  794. }
  795. }
  796. },
  797. {
  798. "path": "returns_and_refunds/index",
  799. "style": {
  800. "navigationBarTitleText": "退货退款",
  801. "app-plus": {
  802. // #ifdef APP-PLUS
  803. "titleNView": {
  804. "type": "default"
  805. }
  806. // #endif
  807. }
  808. }
  809. },
  810. {
  811. "path": "goods_comment_con/index",
  812. "style": {
  813. "navigationBarTitleText": "商品评价",
  814. "app-plus": {
  815. // #ifdef APP-PLUS
  816. "titleNView": {
  817. "type": "default"
  818. }
  819. // #endif
  820. }
  821. }
  822. },
  823. {
  824. "path": "evaluation_list/index",
  825. "style": {
  826. "navigationBarTitleText": "评价列表",
  827. "app-plus": {
  828. // #ifdef APP-PLUS
  829. "titleNView": {
  830. "type": "default"
  831. }
  832. // #endif
  833. }
  834. }
  835. },
  836. {
  837. "path": "goods_comment_list/index",
  838. "style": {
  839. "navigationBarTitleText": "商品评分",
  840. "app-plus": {
  841. // #ifdef APP-PLUS
  842. "titleNView": {
  843. "type": "default"
  844. }
  845. // #endif
  846. }
  847. }
  848. },
  849. {
  850. "path": "goods_logistics/index",
  851. "style": {
  852. "navigationBarTitleText": "物流信息",
  853. "app-plus": {
  854. // #ifdef APP-PLUS
  855. "titleNView": {
  856. "type": "default"
  857. }
  858. // #endif
  859. }
  860. }
  861. },
  862. {
  863. "path": "send_record/index",
  864. "style": {
  865. "navigationBarTitleText": "发货记录",
  866. "app-plus": {
  867. // #ifdef APP-PLUS
  868. "titleNView": {
  869. "type": "default"
  870. }
  871. // #endif
  872. }
  873. }
  874. },
  875. {
  876. "path": "agreement_rules/index",
  877. "style": {
  878. "navigationBarTitleText": "隐私协议",
  879. "app-plus": {
  880. // #ifdef APP-PLUS
  881. "titleNView": {
  882. "type": "default"
  883. }
  884. // #endif
  885. }
  886. }
  887. },
  888. {
  889. "path": "user_goods_collection/index",
  890. "style": {
  891. "navigationBarTitleText": "收藏商品",
  892. "app-plus": {
  893. // #ifdef APP-PLUS
  894. "titleNView": {
  895. "type": "default"
  896. }
  897. // #endif
  898. }
  899. }
  900. },
  901. {
  902. "path": "user_merchant_collection/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": "alipay_return/alipay_return",
  916. "style": {
  917. "navigationBarTitleText": "",
  918. "enablePullDownRefresh": false
  919. }
  920. },
  921. {
  922. "path": "alipay_invoke/index",
  923. "style": {
  924. "navigationBarTitleText": "",
  925. "enablePullDownRefresh": false
  926. }
  927. },
  928. {
  929. "path": "agreement_info/index",
  930. "style": {
  931. "navigationBarTitleText": "",
  932. "app-plus": {
  933. // #ifdef APP-PLUS
  934. "titleNView": {
  935. "type": "default"
  936. }
  937. // #endif
  938. }
  939. }
  940. },
  941. {
  942. "path": "user_grade/index",
  943. "style": {
  944. "navigationBarTitleText": "我的等级",
  945. "navigationBarBackgroundColor": "#181818",
  946. "app-plus": {
  947. // #ifdef APP-PLUS
  948. "titleNView": {
  949. "type": "default"
  950. }
  951. // #endif
  952. }
  953. // #ifdef MP || APP-PLUS
  954. ,
  955. "navigationBarTextStyle": "black"
  956. // #endif
  957. }
  958. },
  959. {
  960. "path": "exp_record/index",
  961. "style": {
  962. "navigationBarTitleText": "经验值明细",
  963. "app-plus": {
  964. // #ifdef APP-PLUS
  965. "titleNView": {
  966. "type": "default"
  967. }
  968. // #endif
  969. }
  970. }
  971. },
  972. {
  973. "path": "level_rule/index",
  974. "style": {
  975. "navigationBarTitleText": "等级规则说明",
  976. "navigationBarBackgroundColor": "#282828",
  977. "app-plus": {
  978. // #ifdef APP-PLUS
  979. "titleNView": {
  980. "type": "default"
  981. }
  982. // #endif
  983. }
  984. // #ifdef MP || APP-PLUS
  985. ,
  986. "navigationBarTextStyle": "black"
  987. // #endif
  988. }
  989. }
  990. ,{
  991. "path" : "index-bak/index-bak",
  992. "style" :
  993. {
  994. "navigationBarTitleText": "",
  995. "enablePullDownRefresh": false
  996. }
  997. }
  998. ]
  999. },
  1000. {
  1001. "root": "pages/address",
  1002. "name": "address",
  1003. "pages": [{
  1004. "path": "user_address_list/index",
  1005. "style": {
  1006. "navigationBarTitleText": "地址管理",
  1007. "app-plus": {
  1008. // #ifdef APP-PLUS
  1009. "titleNView": {
  1010. "type": "default"
  1011. }
  1012. // #endif
  1013. }
  1014. }
  1015. },
  1016. {
  1017. "path": "user_address/index",
  1018. "style": {
  1019. "navigationBarTitleText": "添加地址",
  1020. "app-plus": {
  1021. // #ifdef APP-PLUS
  1022. "titleNView": {
  1023. "type": "default"
  1024. }
  1025. // #endif
  1026. }
  1027. }
  1028. }
  1029. ]
  1030. // "plugins": {
  1031. // "live-player-plugin": {
  1032. // "version": "1.3.2",
  1033. // "provider": "wx2b03c6e691cd7370"
  1034. // }
  1035. // }
  1036. },
  1037. {
  1038. "root": "pages/activity",
  1039. "name": "activity",
  1040. "pages": [{
  1041. "path": "goods_seckill/index",
  1042. "style": {
  1043. "navigationBarTitleText": "秒杀列表",
  1044. "navigationStyle": "custom"
  1045. // #ifdef MP || APP-PLUS
  1046. ,
  1047. "navigationBarTextStyle": "black"
  1048. // #endif
  1049. }
  1050. },
  1051. {
  1052. "path": "mer-good-seckill/index",
  1053. "style": {
  1054. "navigationBarTitleText": "秒杀列表",
  1055. "navigationStyle": "custom"
  1056. // #ifdef MP || APP-PLUS
  1057. ,
  1058. "navigationBarTextStyle": "black"
  1059. // #endif
  1060. }
  1061. },
  1062. {
  1063. "path": "goods_group/index",
  1064. "style": {
  1065. "navigationBarTitleText": "拼团活动",
  1066. "navigationStyle": "custom"
  1067. // #ifdef MP || APP-PLUS
  1068. ,
  1069. "navigationBarTextStyle": "black"
  1070. // #endif
  1071. }
  1072. },
  1073. {
  1074. "path": "liveBroadcast/index",
  1075. "style": {
  1076. "navigationBarTitleText": "列表",
  1077. "navigationBarBackgroundColor": "#F2F2F2"
  1078. }
  1079. },
  1080. {
  1081. "path": "status/index",
  1082. "style": {
  1083. "navigationBarTitleText": "拼团活动",
  1084. "app-plus": {
  1085. // #ifdef APP-PLUS
  1086. "titleNView": {
  1087. "type": "default"
  1088. }
  1089. // #endif
  1090. }
  1091. }
  1092. },
  1093. {
  1094. "path": "couponList/index",
  1095. "style": {
  1096. "navigationBarTitleText": "领券中心",
  1097. // #ifdef MP || APP-PLUS
  1098. "navigationBarTextStyle": "black",
  1099. "navigationBarBackgroundColor": "#F2F2F2",
  1100. // #endif
  1101. "app-plus": {
  1102. // #ifdef APP-PLUS
  1103. "titleNView": {
  1104. "type": "default"
  1105. }
  1106. // #endif
  1107. }
  1108. }
  1109. },
  1110. {
  1111. "path": "small_page/index",
  1112. "style": {
  1113. "navigationBarTitleText": "",
  1114. "enablePullDownRefresh": false,
  1115. "app-plus": {
  1116. // #ifdef APP-PLUS
  1117. "titleNView": {
  1118. "type": "default"
  1119. }
  1120. // #endif
  1121. }
  1122. }
  1123. },
  1124. {
  1125. "path": "vip_paid/index",
  1126. "style": {
  1127. "navigationBarTitleText": "SVIP会员",
  1128. "navigationStyle": "custom",
  1129. "app-plus": {
  1130. // #ifdef APP-PLUS
  1131. "titleNView": {
  1132. "type": "default"
  1133. }
  1134. // #endif
  1135. }
  1136. }
  1137. },
  1138. {
  1139. "path": "vip_paid_benefits/index",
  1140. "style": {
  1141. "navigationBarTitleText": "会员权益",
  1142. "navigationStyle": "custom",
  1143. "app-plus": {
  1144. // #ifdef APP-PLUS
  1145. "titleNView": {
  1146. "type": "default"
  1147. }
  1148. // #endif
  1149. }
  1150. }
  1151. },
  1152. {
  1153. "path": "vip_order_record/index",
  1154. "style": {
  1155. "navigationBarTitleText": "会员购买记录",
  1156. "app-plus": {
  1157. // #ifdef APP-PLUS
  1158. "titleNView": {
  1159. "type": "default"
  1160. }
  1161. // #endif
  1162. }
  1163. }
  1164. },
  1165. {
  1166. "path": "points_mall/index",
  1167. "style": {
  1168. "navigationBarTitleText": "积分商城",
  1169. "navigationStyle": "custom"
  1170. }
  1171. },
  1172. {
  1173. "path": "goods_points/index",
  1174. "style": {
  1175. "navigationBarTitleText": "热门推荐",
  1176. "navigationStyle": "custom"
  1177. // #ifdef MP || APP-PLUS
  1178. ,
  1179. "navigationBarTextStyle": "black"
  1180. // #endif
  1181. }
  1182. }
  1183. ]
  1184. },
  1185. {
  1186. "root": "pages/discover",
  1187. "name": "discover",
  1188. "pages": [{
  1189. "path": "discover_search_list/index",
  1190. "style": {
  1191. "navigationBarTitleText": "搜索页面",
  1192. "app-plus": {
  1193. // #ifdef APP-PLUS
  1194. "titleNView": {
  1195. "type": "default"
  1196. }
  1197. // #endif
  1198. }
  1199. }
  1200. },
  1201. {
  1202. "path": "discover_recommend/index",
  1203. "style": {
  1204. "navigationBarTitleText": "为你推荐",
  1205. // "navigationStyle": "custom",
  1206. "app-plus": {
  1207. // #ifdef APP-PLUS
  1208. "titleNView": {
  1209. "type": "default"
  1210. }
  1211. // #endif
  1212. }
  1213. }
  1214. },
  1215. {
  1216. "path": "discover_release/index",
  1217. "style": {
  1218. "navigationBarTitleText": "内容发布",
  1219. "app-plus": {
  1220. // #ifdef APP-PLUS
  1221. "titleNView": {
  1222. "type": "default"
  1223. }
  1224. // #endif
  1225. }
  1226. }
  1227. },
  1228. // #ifndef APP-PLUS
  1229. {
  1230. "path": "discover_video/routineVideo/index",
  1231. "style": {
  1232. "navigationBarTitleText": "逛逛短视频",
  1233. "navigationStyle": "custom",
  1234. "app-plus": {
  1235. "titleNView": false,
  1236. "bounce": "none"
  1237. }
  1238. }
  1239. },
  1240. // #endif
  1241. // #ifdef APP-PLUS
  1242. {
  1243. "path": "discover_video/appVideo/index",
  1244. "style": {
  1245. "navigationBarTitleText": "逛逛短视频",
  1246. "navigationStyle": "custom",
  1247. "navigationBarTextStyle": "black",
  1248. "app-plus": {
  1249. "titleNView": false,
  1250. "bounce": "none"
  1251. }
  1252. }
  1253. },
  1254. // #endif
  1255. {
  1256. "path": "discover_user/index",
  1257. "style": {
  1258. "navigationBarTitleText": "个人主页",
  1259. "navigationStyle": "custom"
  1260. }
  1261. },
  1262. {
  1263. "path": "discover_follow/index",
  1264. "style": {
  1265. "navigationBarTitleText": "我的关注",
  1266. "app-plus": {
  1267. // #ifdef APP-PLUS
  1268. "titleNView": {
  1269. "type": "default"
  1270. }
  1271. // #endif
  1272. }
  1273. }
  1274. },
  1275. {
  1276. "path": "discover_note_topic/index",
  1277. "style": {
  1278. "navigationBarTitleText": "话题",
  1279. "app-plus": {
  1280. // #ifdef APP-PLUS
  1281. "titleNView": {
  1282. "type": "default"
  1283. }
  1284. // #endif
  1285. }
  1286. }
  1287. },
  1288. {
  1289. "path": "discover_details/index",
  1290. "style": {
  1291. "navigationBarTitleText": "内容详情",
  1292. "app-plus": {
  1293. // #ifdef APP-PLUS
  1294. "titleNView": {
  1295. "type": "default"
  1296. }
  1297. // #endif
  1298. }
  1299. }
  1300. }
  1301. ]
  1302. },
  1303. {
  1304. "root": "pages/admin/",
  1305. "name": "admin",
  1306. "pages": [{
  1307. "path": "work/index",
  1308. "style": {
  1309. "navigationBarTitleText": "工作台",
  1310. "navigationStyle": "custom"
  1311. }
  1312. },
  1313. {
  1314. "path": "skipRefund/index",
  1315. "style": {
  1316. "navigationBarTitleText": "售后订单",
  1317. "navigationStyle": "custom"
  1318. }
  1319. },
  1320. {
  1321. "path": "order/index",
  1322. "style": {
  1323. "navigationBarTitleText": "订单管理",
  1324. "navigationStyle": "custom"
  1325. }
  1326. },
  1327. {
  1328. "path": "logistics/index",
  1329. "style": {
  1330. "navigationBarTitleText": "物流信息",
  1331. "app-plus": {
  1332. // #ifdef APP-PLUS
  1333. "titleNView": {
  1334. "type": "default"
  1335. }
  1336. // #endif
  1337. }
  1338. }
  1339. },
  1340. {
  1341. "path": "logistics/detail",
  1342. "style": {
  1343. "navigationBarTitleText": "发货记录",
  1344. "navigationStyle": "custom",
  1345. "app-plus": {
  1346. // #ifdef APP-PLUS
  1347. "titleNView": {
  1348. "type": "default"
  1349. }
  1350. // #endif
  1351. }
  1352. }
  1353. },
  1354. {
  1355. "path": "logistics/record",
  1356. "style": {
  1357. "navigationBarTitleText": "发货记录",
  1358. "navigationStyle": "custom",
  1359. "app-plus": {
  1360. // #ifdef APP-PLUS
  1361. "titleNView": {
  1362. "type": "default"
  1363. }
  1364. // #endif
  1365. }
  1366. }
  1367. },
  1368. {
  1369. "path": "refund/index",
  1370. "style": {
  1371. "navigationBarTitleText": "立即退款",
  1372. "app-plus": {
  1373. // #ifdef APP-PLUS
  1374. "titleNView": {
  1375. "type": "default"
  1376. }
  1377. // #endif
  1378. }
  1379. }
  1380. },
  1381. {
  1382. "path": "order/send",
  1383. "style": {
  1384. "navigationBarTitleText": "发货",
  1385. "app-plus": {
  1386. // #ifdef APP-PLUS
  1387. "titleNView": {
  1388. "type": "default"
  1389. }
  1390. // #endif
  1391. }
  1392. }
  1393. },
  1394. {
  1395. "path": "order/detail",
  1396. "style": {
  1397. "navigationStyle": "custom"
  1398. }
  1399. },
  1400. {
  1401. "path": "after_sale/index",
  1402. "style": {
  1403. "navigationBarTitleText": "售后订单",
  1404. "navigationStyle": "custom"
  1405. }
  1406. },
  1407. {
  1408. "path": "statistics/index",
  1409. "style": {
  1410. "navigationStyle": "custom",
  1411. "navigationBarTitleText": "销售额统计",
  1412. "app-plus": {
  1413. // #ifdef APP-PLUS
  1414. "titleNView": {
  1415. "type": "default"
  1416. }
  1417. // #endif
  1418. }
  1419. }
  1420. },
  1421. {
  1422. "path": "cancel/index",
  1423. "style": {
  1424. "navigationBarTitleText": "订单核销",
  1425. "app-plus": {
  1426. // #ifdef APP-PLUS
  1427. "titleNView": {
  1428. "type": "default"
  1429. }
  1430. // #endif
  1431. }
  1432. }
  1433. },
  1434. {
  1435. "path": "cancel/list",
  1436. "style": {
  1437. "navigationBarTitleText": "核销订单",
  1438. "app-plus": {
  1439. // #ifdef APP-PLUS
  1440. "titleNView": {
  1441. "type": "default"
  1442. }
  1443. // #endif
  1444. }
  1445. }
  1446. },
  1447. {
  1448. "path": "cancel/result",
  1449. "style": {
  1450. "navigationBarTitleText": "核销结果",
  1451. "app-plus": {
  1452. // #ifdef APP-PLUS
  1453. "titleNView": {
  1454. "type": "default"
  1455. }
  1456. // #endif
  1457. }
  1458. }
  1459. },
  1460. {
  1461. "path": "refundOrderDetail/index",
  1462. "style": {
  1463. "navigationStyle": "custom"
  1464. }
  1465. },
  1466. {
  1467. "path": "goods/index",
  1468. "style": {
  1469. "navigationStyle": "custom",
  1470. "navigationBarTitleText": "商品管理"
  1471. }
  1472. },
  1473. {
  1474. "path": "goods/specs",
  1475. "style": {
  1476. "navigationBarTitleText": "修改价格/库存",
  1477. "navigationBarBackgroundColor": "#F5F5F5",
  1478. "app-plus": {
  1479. // #ifdef APP-PLUS
  1480. "titleNView": {
  1481. "type": "default"
  1482. }
  1483. // #endif
  1484. }
  1485. }
  1486. },
  1487. {
  1488. "path": "goods/inventory",
  1489. "style": {
  1490. "navigationBarTitleText": "增加库存",
  1491. "navigationBarBackgroundColor": "#F5F5F5",
  1492. "app-plus": {
  1493. // #ifdef APP-PLUS
  1494. "titleNView": {
  1495. "type": "default"
  1496. }
  1497. // #endif
  1498. }
  1499. }
  1500. }
  1501. ]
  1502. }
  1503. //#ifdef H5
  1504. ,
  1505. {
  1506. "root": "pages/auth",
  1507. "name": "pages/auth/index",
  1508. "pages": [{
  1509. "path": "index",
  1510. "style": {
  1511. "navigationBarTitleText": "CRMEB"
  1512. }
  1513. }]
  1514. }
  1515. //#endif
  1516. ],
  1517. "globalStyle": {
  1518. "navigationBarTextStyle": "black",
  1519. "navigationBarTitleText": "crmeb",
  1520. "navigationBarBackgroundColor": "#fff",
  1521. "backgroundColor": "#F8F8F8",
  1522. "titleNView": false,
  1523. "rpxCalcMaxDeviceWidth": 960,
  1524. "rpxCalcBaseDeviceWidth": 375,
  1525. "rpxCalcIncludeWidth": 750,
  1526. "app-plus": {
  1527. "scrollIndicator": "none" //隐藏所有页面滚动条
  1528. }
  1529. },
  1530. "tabBar": {
  1531. "custom": false,
  1532. "color": "#8E8E8E",
  1533. "selectedColor": "#FF6702",
  1534. "borderStyle": "white",
  1535. "backgroundColor": "#ffffff",
  1536. "list": [{
  1537. "pagePath": "pages/index/index",
  1538. "iconPath": "/static/tabBar/home-false.png",
  1539. "selectedIconPath": "/static/tabBar/home-true.png",
  1540. "text": "首页"
  1541. },
  1542. {
  1543. "pagePath": "pages/order/index",
  1544. "iconPath": "/static/tabBar/order-false.png",
  1545. "selectedIconPath": "static/tabBar/order-true.png",
  1546. "text": "订单"
  1547. },
  1548. {
  1549. "pagePath": "pages/user/index",
  1550. "iconPath": "static/tabBar/my-false.png",
  1551. "selectedIconPath": "static/tabBar/my-true.png",
  1552. "text": "我的"
  1553. }
  1554. ]
  1555. },
  1556. "condition": { //模式配置,仅开发期间生效
  1557. "current": 0, //当前激活的模式(list 的索引项)
  1558. "list": [{
  1559. "name": "", //模式名称
  1560. "path": "", //启动页面,必选
  1561. "query": "" //启动参数,在页面的onLoad函数里面得到
  1562. }]
  1563. }
  1564. }