pages.json 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127
  1. {
  2. "easycom": {
  3. "^w-(.*)": "@/uni_modules/wmf-code/components/w-$1/index.vue" //二维码条形码的配置 如果是uni_modules
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/guide/index",
  8. "style": {
  9. "app-plus": {
  10. "titleNView": false //禁用原生导航栏
  11. },
  12. "navigationStyle": "custom",
  13. "disableScroll": true
  14. }
  15. },
  16. {
  17. "path": "pages/store_cate/store_cate",
  18. "style": {
  19. "navigationBarTitleText": "门店",
  20. "navigationStyle": "custom",
  21. "navigationBarTextStyle": "white"
  22. }
  23. },
  24. {
  25. "path": "pages/index/index",
  26. "style": {
  27. "navigationBarTitleText": "",
  28. "navigationStyle": "custom",
  29. "navigationBarTextStyle": "white"
  30. }
  31. },
  32. {
  33. "path": "pages/order_addcart/order_addcart",
  34. "style": {
  35. "navigationBarTitleText": "购物车",
  36. // #ifdef MP || APP-PLUS
  37. "navigationStyle": "custom",
  38. // #endif
  39. "app-plus": {
  40. // #ifdef APP-PLUS
  41. "titleNView": {
  42. "type": "default"
  43. }
  44. // #endif
  45. }
  46. }
  47. },
  48. {
  49. "path": "pages/user/index",
  50. "style": {
  51. "navigationBarTitleText": "个人中心",
  52. // #ifdef MP || APP-PLUS
  53. "navigationStyle": "custom",
  54. // "navigationBarBackgroundColor": "#e93323",
  55. "navigationBarTextStyle": "black",
  56. // #endif
  57. // #ifdef MP
  58. "disableScroll": true,
  59. // #endif
  60. "app-plus": {
  61. // 将回弹属性关掉
  62. "bounce": "none"
  63. }
  64. }
  65. },
  66. {
  67. "path": "pages/goods_cate/goods_cate",
  68. "style": {
  69. "navigationBarTitleText": "商品分类",
  70. // #ifdef MP || APP-PLUS
  71. "navigationStyle": "custom",
  72. // #endif
  73. "app-plus": {
  74. // #ifdef APP-PLUS
  75. // "titleNView": {
  76. // "type": "default"
  77. // }
  78. // #endif
  79. }
  80. }
  81. }
  82. //#ifdef H5
  83. ,
  84. {
  85. "path": "pages/auth/index",
  86. "style": {
  87. "navigationBarTitleText": ""
  88. }
  89. }
  90. //#endif
  91. ],
  92. // "plugins": {
  93. // "live-player-plugin": {
  94. // "version": "1.3.2",
  95. // "provider": "wx2b03c6e691cd7370"
  96. // }
  97. // },
  98. "subPackages": [{
  99. "root": "pages/users",
  100. "name": "users",
  101. "pages": [{
  102. "path": "user_vip_areer/index",
  103. "style": {
  104. "navigationBarTitleText": "经验记录",
  105. "app-plus": {
  106. // #ifdef APP-PLUS
  107. "titleNView": {
  108. "type": "default"
  109. }
  110. // #endif
  111. }
  112. }
  113. },
  114. {
  115. "path": "privacy/index",
  116. "style": {
  117. "navigationBarTitleText": "协议",
  118. // #ifdef MP || APP-PLUS
  119. "navigationStyle": "custom",
  120. // #endif
  121. "app-plus": {
  122. // #ifdef APP-PLUS
  123. // "titleNView": {
  124. // "type": "default"
  125. // }
  126. // #endif
  127. }
  128. }
  129. }, {
  130. "path": "user_cancellation/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": "message_center/index",
  144. "style": {
  145. "navigationBarTitleText": "消息中心",
  146. "enablePullDownRefresh": true,
  147. "app-plus": {
  148. // #ifdef APP-PLUS
  149. "titleNView": {
  150. "type": "default"
  151. }
  152. // #endif
  153. }
  154. }
  155. },
  156. {
  157. "path": "message_center/messageDetail",
  158. "style": {
  159. "navigationBarTitleText": "消息详情",
  160. "app-plus": {
  161. // #ifdef APP-PLUS
  162. "titleNView": {
  163. "type": "default"
  164. }
  165. // #endif
  166. }
  167. }
  168. },
  169. {
  170. "path": "user_invoice_order/index",
  171. "style": {
  172. "navigationBarTitleText": "订单详情",
  173. "app-plus": {
  174. // #ifdef APP-PLUS
  175. "titleNView": {
  176. "type": "default"
  177. }
  178. // #endif
  179. }
  180. }
  181. },
  182. {
  183. "path": "scan_login/index",
  184. "style": {
  185. "navigationBarTitleText": "授权登录"
  186. }
  187. },
  188. {
  189. "path": "user_invoice_list/index",
  190. "style": {
  191. "navigationBarTitleText": "发票管理",
  192. "app-plus": {
  193. // #ifdef APP-PLUS
  194. "titleNView": {
  195. "type": "default"
  196. }
  197. // #endif
  198. }
  199. }
  200. },
  201. {
  202. "path": "user_invoice_form/index",
  203. "style": {
  204. "navigationBarTitleText": "添加新发票",
  205. "app-plus": {
  206. // #ifdef APP-PLUS
  207. "titleNView": {
  208. "type": "default"
  209. }
  210. // #endif
  211. }
  212. }
  213. },
  214. //#ifdef H5
  215. {
  216. "path": "alipay_invoke/index",
  217. "style": {
  218. "navigationBarTitleText": "支付提示"
  219. }
  220. },
  221. //#endif
  222. {
  223. "path": "wechat_login/index",
  224. "style": {
  225. "navigationBarTitleText": "账户登录",
  226. "navigationStyle": "custom",
  227. "app-plus": {
  228. "scrollIndicator": false //禁用原生导航栏
  229. }
  230. }
  231. },
  232. {
  233. "path": "binding_phone/index",
  234. "style": {
  235. "navigationBarTitleText": "",
  236. "navigationStyle": "custom",
  237. "app-plus": {
  238. "scrollIndicator": "none"
  239. }
  240. }
  241. },
  242. {
  243. "path": "retrievePassword/index",
  244. "style": {
  245. "navigationBarTitleText": "忘记密码",
  246. "app-plus": {
  247. // #ifdef APP-PLUS
  248. "titleNView": {
  249. "type": "default"
  250. }
  251. // #endif
  252. }
  253. }
  254. },
  255. {
  256. "path": "user_set/index",
  257. "style": {
  258. "navigationBarTitleText": "设置",
  259. "app-plus": {
  260. // #ifdef APP-PLUS
  261. "titleNView": {
  262. "type": "default"
  263. }
  264. // #endif
  265. }
  266. }
  267. },
  268. {
  269. "path": "user_info/index",
  270. "style": {
  271. "navigationBarTitleText": "个人资料",
  272. "app-plus": {
  273. // #ifdef APP-PLUS
  274. "titleNView": {
  275. "type": "default"
  276. }
  277. // #endif
  278. }
  279. }
  280. },
  281. {
  282. "path": "user_get_coupon/index",
  283. "style": {
  284. "navigationBarTitleText": "领取优惠券",
  285. "app-plus": {
  286. // #ifdef APP-PLUS
  287. "titleNView": {
  288. "type": "default"
  289. }
  290. // #endif
  291. }
  292. }
  293. },
  294. {
  295. "path": "visit_list/index",
  296. "style": {
  297. "navigationBarTitleText": "浏览记录",
  298. "app-plus": {
  299. // #ifdef APP-PLUS
  300. "titleNView": {
  301. "type": "default"
  302. }
  303. // #endif
  304. }
  305. }
  306. },
  307. {
  308. "path": "user_goods_collection/index",
  309. "style": {
  310. "navigationBarTitleText": "收藏商品",
  311. "app-plus": {
  312. // #ifdef APP-PLUS
  313. "titleNView": {
  314. "type": "default"
  315. }
  316. // #endif
  317. }
  318. }
  319. },
  320. {
  321. "path": "user_sgin/index",
  322. "style": {
  323. "navigationBarTitleText": "签到",
  324. // #ifdef MP
  325. // "navigationBarTextStyle": "white",
  326. // "navigationBarBackgroundColor": "#e93323"
  327. // #endif
  328. "app-plus": {
  329. // #ifdef APP-PLUS
  330. "titleNView": {
  331. "type": "default"
  332. }
  333. // #endif
  334. }
  335. }
  336. },
  337. {
  338. "path": "user_sgin_list/index",
  339. "style": {
  340. "navigationBarTitleText": "签到记录",
  341. "app-plus": {
  342. // #ifdef APP-PLUS
  343. "titleNView": {
  344. "type": "default"
  345. }
  346. // #endif
  347. }
  348. }
  349. },
  350. {
  351. "path": "user_money/index",
  352. "style": {
  353. "navigationBarTitleText": "我的账户",
  354. "app-plus": {
  355. // #ifdef APP-PLUS
  356. "titleNView": {
  357. "type": "default"
  358. }
  359. // #endif
  360. }
  361. }
  362. },
  363. {
  364. "path": "user_bill/index",
  365. "style": {
  366. "navigationBarTitleText": "账单明细",
  367. "app-plus": {
  368. // #ifdef APP-PLUS
  369. "titleNView": {
  370. "type": "default"
  371. }
  372. // #endif
  373. }
  374. }
  375. },
  376. {
  377. "path": "user_integral/index",
  378. "style": {
  379. "navigationBarTitleText": "积分详情"
  380. // #ifdef MP
  381. ,
  382. "navigationBarTextStyle": "black",
  383. "navigationBarBackgroundColor": "#FFFFFF"
  384. // #endif
  385. ,
  386. "app-plus": {
  387. // #ifdef APP-PLUS
  388. "titleNView": {
  389. "type": "default"
  390. }
  391. // #endif
  392. }
  393. }
  394. },
  395. {
  396. "path": "user_coupon/index",
  397. "style": {
  398. "navigationBarTitleText": "我的优惠券",
  399. "app-plus": {
  400. // #ifdef APP-PLUS
  401. "titleNView": {
  402. "type": "default"
  403. }
  404. // #endif
  405. }
  406. }
  407. },
  408. {
  409. "path": "user_spread_user/index",
  410. "style": {
  411. "navigationBarTitleText": "我的推广"
  412. // #ifdef MP
  413. ,
  414. "navigationBarTextStyle": "black",
  415. "navigationBarBackgroundColor": "#FFFFFF"
  416. // #endif
  417. ,
  418. "app-plus": {
  419. // #ifdef APP-PLUS
  420. "titleNView": {
  421. "type": "default"
  422. }
  423. // #endif
  424. }
  425. }
  426. },
  427. {
  428. "path": "user_spread_code/index",
  429. "style": {
  430. "navigationBarTitleText": "分销海报",
  431. "app-plus": {
  432. // #ifdef APP-PLUS
  433. "titleNView": {
  434. "type": "default"
  435. }
  436. // #endif
  437. }
  438. }
  439. },
  440. {
  441. "path": "user_spread_money/index",
  442. "style": {
  443. "navigationBarTitleText": "佣金记录"
  444. // #ifdef MP
  445. ,
  446. "navigationBarTextStyle": "black",
  447. "navigationBarBackgroundColor": "#FFFFFF"
  448. // #endif
  449. ,
  450. "app-plus": {
  451. // #ifdef APP-PLUS
  452. "titleNView": {
  453. "type": "default"
  454. }
  455. // #endif
  456. }
  457. }
  458. },
  459. {
  460. "path": "user_cash/index",
  461. "style": {
  462. "navigationBarTitleText": "提现",
  463. "navigationBarBackgroundColor": "#FFFFFF"
  464. // #ifdef MP || APP-PLUS
  465. ,
  466. "navigationBarTextStyle": "black"
  467. // #endif
  468. ,
  469. "app-plus": {
  470. // #ifdef APP-PLUS
  471. "titleNView": {
  472. "type": "default"
  473. }
  474. // #endif
  475. }
  476. }
  477. },
  478. {
  479. "path": "user_vip/index",
  480. "style": {
  481. "navigationBarTitleText": "我的等级",
  482. "navigationBarBackgroundColor": "#232323"
  483. // #ifdef MP || APP-PLUS
  484. ,
  485. "navigationBarTextStyle": "white"
  486. // #endif
  487. ,
  488. "app-plus": {
  489. // #ifdef APP-PLUS
  490. "titleNView": {
  491. "type": "default"
  492. }
  493. // #endif
  494. }
  495. }
  496. }, {
  497. "path": "user_distribution_level/index",
  498. "style": {
  499. "navigationBarTitleText": "分销等级",
  500. "navigationBarBackgroundColor": "#232323"
  501. // #ifdef MP || APP-PLUS
  502. ,
  503. "navigationBarTextStyle": "white"
  504. // #endif
  505. ,
  506. "app-plus": {
  507. // #ifdef APP-PLUS
  508. "titleNView": {
  509. "type": "default"
  510. }
  511. // #endif
  512. }
  513. }
  514. },
  515. {
  516. "path": "user_address_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": "user_address/index",
  530. "style": {
  531. "navigationBarTitleText": "添加地址",
  532. "app-plus": {
  533. // #ifdef APP-PLUS
  534. "titleNView": {
  535. "type": "default"
  536. }
  537. // #endif
  538. }
  539. }
  540. },
  541. {
  542. "path": "user_phone/index",
  543. "style": {
  544. "navigationBarTitleText": "绑定手机",
  545. // #ifdef MP
  546. // "navigationBarTextStyle": "white",
  547. // "navigationBarBackgroundColor": "#e93323"
  548. // #endif
  549. "app-plus": {
  550. // #ifdef APP-PLUS
  551. "titleNView": {
  552. "type": "default"
  553. }
  554. // #endif
  555. }
  556. }
  557. },
  558. {
  559. "path": "user_payment/index",
  560. "style": {
  561. "navigationBarTitleText": "余额充值",
  562. "app-plus": {
  563. // #ifdef APP-PLUS
  564. "titleNView": {
  565. "type": "default"
  566. }
  567. // #endif
  568. }
  569. }
  570. },
  571. {
  572. "path": "user_pwd_edit/index",
  573. "style": {
  574. "navigationBarTitleText": "修改密码"
  575. // #ifdef MP
  576. // ,
  577. // "navigationBarTextStyle": "white"
  578. // "navigationBarBackgroundColor": "#e93323"
  579. // #endif
  580. ,
  581. "app-plus": {
  582. // #ifdef APP-PLUS
  583. "titleNView": {
  584. "type": "default"
  585. }
  586. // #endif
  587. }
  588. }
  589. },
  590. {
  591. "path": "promoter-list/index",
  592. "style": {
  593. "navigationBarTitleText": "推广人列表"
  594. // #ifdef MP
  595. ,
  596. "navigationBarBackgroundColor": "#FFFFFF",
  597. "navigationBarTextStyle": "black"
  598. // #endif
  599. ,
  600. "app-plus": {
  601. // #ifdef APP-PLUS
  602. "titleNView": {
  603. "type": "default"
  604. }
  605. // #endif
  606. }
  607. }
  608. },
  609. {
  610. "path": "promoter-order/index",
  611. "style": {
  612. "navigationBarTitleText": "推广人订单"
  613. // #ifdef MP
  614. ,
  615. "navigationBarTextStyle": "black",
  616. "navigationBarBackgroundColor": "#FFFFFF"
  617. // #endif
  618. ,
  619. "app-plus": {
  620. // #ifdef APP-PLUS
  621. "titleNView": {
  622. "type": "default"
  623. }
  624. // #endif
  625. }
  626. }
  627. },
  628. {
  629. "path": "promoter_rank/index",
  630. "style": {
  631. "navigationBarTitleText": "推广人排行"
  632. // #ifdef MP
  633. ,
  634. "navigationBarTextStyle": "black",
  635. "navigationBarBackgroundColor": "#FFFFFF"
  636. // #endif
  637. ,
  638. "app-plus": {
  639. // #ifdef APP-PLUS
  640. "titleNView": {
  641. "type": "default"
  642. }
  643. // #endif
  644. }
  645. }
  646. },
  647. {
  648. "path": "commission_rank/index",
  649. "style": {
  650. "navigationBarTitleText": "佣金排行",
  651. "navigationBarBackgroundColor": "#FFFFFF"
  652. // #ifdef MP || APP-PLUS
  653. ,
  654. "navigationBarTextStyle": "black"
  655. // #endif
  656. ,
  657. "app-plus": {
  658. // #ifdef APP-PLUS
  659. "titleNView": {
  660. "type": "default"
  661. }
  662. // #endif
  663. }
  664. }
  665. },
  666. {
  667. "path": "user_return_list/index",
  668. "style": {
  669. "navigationBarTitleText": "退货列表",
  670. "app-plus": {
  671. // #ifdef APP-PLUS
  672. "titleNView": {
  673. "type": "default"
  674. }
  675. // #endif
  676. }
  677. }
  678. },
  679. {
  680. "path": "login/index",
  681. "style": {
  682. "navigationBarTitleText": "登录",
  683. "app-plus": {
  684. // #ifdef APP-PLUS
  685. "titleNView": {
  686. "type": "default"
  687. }
  688. // #endif
  689. }
  690. }
  691. },
  692. {
  693. "path": "supplier/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": "supplier_state/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": "record_list/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. },
  733. {
  734. "root": "pages/short_video",
  735. "name": "shortVideo",
  736. "pages": [{
  737. "enablePullDownRefresh": false,
  738. //#ifdef APP
  739. "path": "appSwiper/index",
  740. //#endif
  741. //#ifndef APP
  742. "path": "nvueSwiper/index",
  743. //#endif
  744. "style": {
  745. "navigationBarTitleText": "短视频",
  746. "app-plus": {
  747. "titleNView": false,
  748. "bounce": "none"
  749. }
  750. }
  751. }
  752. ]
  753. },
  754. {
  755. "root": "pages/goods_details",
  756. "name": "goods_details",
  757. "pages": [{
  758. "path": "index",
  759. "style": {
  760. "navigationStyle": "custom"
  761. // #ifdef MP
  762. ,
  763. "disableScroll": true
  764. // #endif
  765. // "app-plus": {
  766. // // #ifdef APP-PLUS
  767. // "titleNView": {
  768. // "type": "default"
  769. // }
  770. // // #endif
  771. // }
  772. }
  773. },
  774. {
  775. "path": "indexs",
  776. "style": {
  777. "navigationStyle": "custom"
  778. // #ifdef MP
  779. ,
  780. "disableScroll": true
  781. // #endif
  782. }
  783. },
  784. {
  785. "path": "discountsGoodsList",
  786. "style": {
  787. "navigationBarTitleText": "套餐列表",
  788. "app-plus": {
  789. // #ifdef APP-PLUS
  790. "titleNView": {
  791. "type": "default"
  792. }
  793. // #endif
  794. }
  795. }
  796. }
  797. ]
  798. },
  799. // 门店分包
  800. {
  801. "root": "pages/store",
  802. "name": "store",
  803. "pages": [{
  804. "path": "service/index",
  805. "style": {
  806. "navigationBarTitleText": "小米之家",
  807. "app-plus": {
  808. // #ifdef APP-PLUS
  809. "titleNView": {
  810. "type": "default"
  811. }
  812. // #endif
  813. }
  814. }
  815. }, {
  816. "path": "search_stores/index",
  817. "style": {
  818. "navigationBarTitleText": "搜索列表",
  819. "app-plus": {
  820. "titleNView": {
  821. "type": "搜索列表"
  822. }
  823. }
  824. }
  825. },
  826. {
  827. "path": "newcomers/index",
  828. "style": {
  829. "navigationBarTitleText": "新人专享区",
  830. "app-plus": {
  831. // #ifdef APP-PLUS
  832. "titleNView": {
  833. "type": "default"
  834. }
  835. // #endif
  836. }
  837. }
  838. },
  839. {
  840. "path": "ruleInfo/index",
  841. "style": {
  842. "navigationBarTitleText": "活动规则",
  843. "app-plus": {
  844. // #ifdef APP-PLUS
  845. "titleNView": {
  846. "type": "default"
  847. }
  848. // #endif
  849. }
  850. }
  851. },
  852. {
  853. "path": "store_list/index",
  854. "style": {
  855. "navigationBarTitleText": "门店列表",
  856. "app-plus": {
  857. "titleNView": {
  858. "type": "default"
  859. }
  860. }
  861. }
  862. },
  863. {
  864. //#ifdef APP
  865. "path": "mapnvue/index",
  866. //#endif
  867. //#ifndef APP
  868. "path": "map/index",
  869. //#endif
  870. "style": {
  871. "navigationBarTitleText": "门店地图"
  872. }
  873. }
  874. // #ifdef MP || H5
  875. ,
  876. {
  877. "path": "group_buy/index",
  878. "style": {
  879. "navigationBarTitleText": "拼单进行中",
  880. "navigationStyle": "custom"
  881. }
  882. },
  883. {
  884. "path": "group_cart/index",
  885. "style": {
  886. "navigationStyle": "custom"
  887. }
  888. },
  889. {
  890. "path": "group_goods/index",
  891. "style": {
  892. "navigationBarTitleText": "订单详情"
  893. }
  894. }
  895. // #endif
  896. // #ifdef MP
  897. ,
  898. {
  899. "path": "table_code/index",
  900. "style": {
  901. "navigationBarTitleText": "商品列表",
  902. "navigationStyle": "custom"
  903. }
  904. },
  905. {
  906. "path": "table_confirm/index",
  907. "style": {
  908. "navigationBarTitleText": "提交订单",
  909. "navigationStyle": "custom",
  910. "enablePullDownRefresh": true
  911. }
  912. }
  913. // #endif
  914. ]
  915. },
  916. {
  917. "root": "pages/activity",
  918. "name": "activity",
  919. "pages": [{
  920. "path": "goods_bargain/index",
  921. "style": {
  922. // #ifdef MP
  923. // "navigationBarTextStyle": "white",
  924. // "navigationBarBackgroundColor": "#E93323",
  925. "navigationBarTitleText": "砍价列表",
  926. // #endif
  927. "app-plus": {
  928. // #ifdef APP-PLUS
  929. "titleNView": {
  930. "type": "default"
  931. }
  932. // #endif
  933. }
  934. }
  935. },
  936. {
  937. "path": "goods_bargain_details/index",
  938. "style": {
  939. "navigationStyle": "custom"
  940. // #ifdef MP
  941. ,
  942. "navigationBarTextStyle": "white"
  943. // #endif
  944. ,
  945. "app-plus": {
  946. // #ifdef APP-PLUS
  947. "titleNView": {
  948. "type": "default"
  949. }
  950. // #endif
  951. }
  952. }
  953. },
  954. {
  955. "path": "goods_combination/index",
  956. "style": {
  957. // "navigationBarTextStyle": "white",
  958. // "navigationBarBackgroundColor": "#E93323",
  959. "navigationBarTitleText": "拼团列表",
  960. "app-plus": {
  961. // #ifdef APP-PLUS
  962. "titleNView": {
  963. "type": "default"
  964. }
  965. // #endif
  966. }
  967. }
  968. },
  969. {
  970. "path": "goods_combination_details/index",
  971. "style": {
  972. "navigationStyle": "custom",
  973. "app-plus": {
  974. // #ifdef APP-PLUS
  975. // "titleNView": {
  976. // "type": "default"
  977. // }
  978. // #endif
  979. }
  980. // #ifdef MP
  981. ,
  982. "disableScroll": true
  983. // #endif
  984. }
  985. },
  986. {
  987. "path": "goods_combination_status/index",
  988. "style": {
  989. "navigationBarTitleText": "拼团",
  990. "app-plus": {
  991. // #ifdef APP-PLUS
  992. "titleNView": {
  993. "type": "default"
  994. }
  995. // #endif
  996. }
  997. }
  998. },
  999. {
  1000. "path": "goods_seckill/index",
  1001. "style": {
  1002. "navigationBarTitleText": "限时秒杀"
  1003. // #ifdef MP
  1004. // "navigationBarTextStyle": "white"
  1005. // "navigationBarBackgroundColor": "#e93323"
  1006. // #endif
  1007. ,
  1008. "app-plus": {
  1009. // #ifdef APP-PLUS
  1010. "titleNView": {
  1011. "type": "default"
  1012. }
  1013. // #endif
  1014. }
  1015. }
  1016. },
  1017. {
  1018. "path": "goods_seckill_details/index",
  1019. "style": {
  1020. "navigationStyle": "custom"
  1021. // #ifdef MP
  1022. ,
  1023. "navigationBarTextStyle": "black"
  1024. // #endif
  1025. ,
  1026. "app-plus": {
  1027. // #ifdef APP-PLUS
  1028. // "titleNView": {
  1029. // "type": "default"
  1030. // }
  1031. // #endif
  1032. }
  1033. // #ifdef MP
  1034. ,
  1035. "disableScroll": true
  1036. // #endif
  1037. }
  1038. },
  1039. {
  1040. "path": "poster-poster/index",
  1041. "style": {
  1042. "navigationBarTitleText": "砍价海报"
  1043. // #ifdef MP
  1044. // "navigationBarTextStyle": "white"
  1045. // "navigationBarBackgroundColor": "#d22516"
  1046. // #endif
  1047. ,
  1048. "app-plus": {
  1049. // #ifdef APP-PLUS
  1050. "titleNView": {
  1051. "type": "default"
  1052. }
  1053. // #endif
  1054. }
  1055. }
  1056. },
  1057. {
  1058. "path": "bargain/index",
  1059. "style": {
  1060. "navigationBarTitleText": "砍价记录",
  1061. "app-plus": {
  1062. // #ifdef APP-PLUS
  1063. "titleNView": {
  1064. "type": "default"
  1065. }
  1066. // #endif
  1067. }
  1068. }
  1069. },
  1070. {
  1071. "path": "presell/index",
  1072. "style": {
  1073. "navigationBarTitleText": "预售列表",
  1074. "app-plus": {
  1075. // #ifdef APP-PLUS
  1076. "titleNView": {
  1077. "type": "default"
  1078. }
  1079. // #endif
  1080. }
  1081. }
  1082. },
  1083. {
  1084. "path": "discount/index",
  1085. "style": {
  1086. "navigationBarTitleText": "优惠活动",
  1087. "app-plus": {
  1088. // #ifdef APP-PLUS
  1089. "titleNView": {
  1090. "type": "default"
  1091. }
  1092. // #endif
  1093. }
  1094. }
  1095. }
  1096. ]
  1097. },
  1098. {
  1099. "root": "pages/admin",
  1100. "name": "adminOrder",
  1101. "pages": [{
  1102. "path": "custom_date/index",
  1103. "style": {
  1104. "navigationBarTitleText": "选择日期"
  1105. }
  1106. },
  1107. {
  1108. "path": "order/index",
  1109. "style": {
  1110. "navigationBarTitleText": "订单统计",
  1111. "app-plus": {
  1112. // #ifdef APP-PLUS
  1113. "titleNView": {
  1114. "type": "default"
  1115. }
  1116. // #endif
  1117. }
  1118. }
  1119. },
  1120. {
  1121. "path": "orderList/index",
  1122. "style": {
  1123. "navigationBarTitleText": "订单列表",
  1124. "app-plus": {
  1125. // #ifdef APP-PLUS
  1126. "titleNView": {
  1127. "type": "default"
  1128. }
  1129. // #endif
  1130. }
  1131. }
  1132. },
  1133. {
  1134. "path": "orderDetail/index",
  1135. "style": {
  1136. "navigationBarTitleText": "订单详情",
  1137. "app-plus": {
  1138. // #ifdef APP-PLUS
  1139. "titleNView": {
  1140. "type": "default"
  1141. }
  1142. // #endif
  1143. }
  1144. }
  1145. },
  1146. {
  1147. "path": "delivery/index",
  1148. "style": {
  1149. "navigationBarTitleText": "订单发货",
  1150. "app-plus": {
  1151. // #ifdef APP-PLUS
  1152. "titleNView": {
  1153. "type": "default"
  1154. }
  1155. // #endif
  1156. }
  1157. }
  1158. },
  1159. {
  1160. "path": "statistics/index",
  1161. "style": {
  1162. "navigationBarTitleText": "订单数据统计",
  1163. "app-plus": {
  1164. // #ifdef APP-PLUS
  1165. "titleNView": {
  1166. "type": "default"
  1167. }
  1168. // #endif
  1169. }
  1170. }
  1171. },
  1172. {
  1173. "path": "order_cancellation/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": "store/index",
  1187. "style": {
  1188. "navigationBarTextStyle": "white",
  1189. "navigationBarBackgroundColor": "#333333",
  1190. "navigationBarTitleText": "门店中心",
  1191. "app-plus": {
  1192. // #ifdef APP-PLUS
  1193. "titleNView": {
  1194. "type": "default"
  1195. }
  1196. // #endif
  1197. }
  1198. }
  1199. },
  1200. {
  1201. "path": "store/custom_date/index",
  1202. "style": {
  1203. "navigationBarTitleText": "选择日期"
  1204. }
  1205. },
  1206. {
  1207. "path": "store/statistics/index",
  1208. "style": {
  1209. "navigationBarTitleText": "数据详情",
  1210. "app-plus": {
  1211. // #ifdef APP-PLUS
  1212. "titleNView": {
  1213. "type": "default"
  1214. }
  1215. // #endif
  1216. }
  1217. }
  1218. }, {
  1219. "path": "store/orderDetail/index",
  1220. "style": {
  1221. "navigationBarTitleText": "订单详情",
  1222. "app-plus": {
  1223. // #ifdef APP-PLUS
  1224. "titleNView": {
  1225. "type": "default"
  1226. }
  1227. // #endif
  1228. }
  1229. }
  1230. }, {
  1231. "path": "store/order/index",
  1232. "style": {
  1233. "navigationBarTitleText": "订单管理",
  1234. "app-plus": {
  1235. // #ifdef APP-PLUS
  1236. "titleNView": {
  1237. "type": "default"
  1238. }
  1239. // #endif
  1240. }
  1241. }
  1242. }, {
  1243. "path": "store/deliverGoods/index",
  1244. "style": {
  1245. "navigationBarTitleText": "订单发货",
  1246. "app-plus": {
  1247. // #ifdef APP-PLUS
  1248. "titleNView": {
  1249. "type": "default"
  1250. }
  1251. // #endif
  1252. }
  1253. }
  1254. }, {
  1255. "path": "distribution/index",
  1256. "style": {
  1257. "navigationBarTextStyle": "white",
  1258. "navigationBarBackgroundColor": "#333333",
  1259. "navigationBarTitleText": "配送员",
  1260. "app-plus": {
  1261. // #ifdef APP-PLUS
  1262. "titleNView": {
  1263. "type": "default"
  1264. }
  1265. // #endif
  1266. }
  1267. }
  1268. }, {
  1269. "path": "distribution/scanning/index",
  1270. "style": {
  1271. "navigationBarTitleText": "扫描结果",
  1272. "app-plus": {
  1273. // #ifdef APP-PLUS
  1274. "titleNView": {
  1275. "type": "default"
  1276. }
  1277. // #endif
  1278. }
  1279. }
  1280. }, {
  1281. "path": "distribution/scanning/detail/index",
  1282. "style": {
  1283. "navigationBarTitleText": "扫描结果详情",
  1284. "app-plus": {
  1285. // #ifdef APP-PLUS
  1286. "titleNView": {
  1287. "type": "default"
  1288. }
  1289. // #endif
  1290. }
  1291. }
  1292. }, {
  1293. "path": "distribution/orderDetail/index",
  1294. "style": {
  1295. "navigationBarTitleText": "配送员订单详情",
  1296. "app-plus": {
  1297. // #ifdef APP-PLUS
  1298. "titleNView": {
  1299. "type": "default"
  1300. }
  1301. // #endif
  1302. }
  1303. }
  1304. }, {
  1305. "path": "store/scanning/index",
  1306. "style": {
  1307. "navigationBarTitleText": "扫描结果",
  1308. "app-plus": {
  1309. // #ifdef APP-PLUS
  1310. "titleNView": {
  1311. "type": "default"
  1312. }
  1313. // #endif
  1314. }
  1315. }
  1316. }, {
  1317. "path": "store/scanning/detail/index",
  1318. "style": {
  1319. "navigationBarTitleText": "扫描结果详情",
  1320. "app-plus": {
  1321. // #ifdef APP-PLUS
  1322. "titleNView": {
  1323. "type": "default"
  1324. }
  1325. // #endif
  1326. }
  1327. }
  1328. }
  1329. ]
  1330. },
  1331. {
  1332. "root": "pages/columnGoods",
  1333. "name": "columnGoods",
  1334. "pages": [{
  1335. "path": "HotNewGoods/index",
  1336. "style": {
  1337. "navigationBarTitleText": "精品推荐",
  1338. "app-plus": {
  1339. // #ifdef APP-PLUS
  1340. "titleNView": {
  1341. "type": "default"
  1342. }
  1343. // #endif
  1344. }
  1345. }
  1346. },
  1347. {
  1348. "path": "live_list/index",
  1349. "style": {
  1350. "navigationBarTitleText": "推荐好货"
  1351. }
  1352. },
  1353. {
  1354. "path": "HotNewGoods/feedback",
  1355. "style": {
  1356. "navigationBarTitleText": "我的客服",
  1357. "navigationBarTextStyle": "white",
  1358. "navigationBarBackgroundColor": "#3A3A3A",
  1359. "app-plus": {
  1360. // #ifdef APP-PLUS
  1361. "titleNView": {
  1362. "type": "default"
  1363. }
  1364. // #endif
  1365. }
  1366. }
  1367. }
  1368. ]
  1369. },
  1370. {
  1371. "root": "pages/annex",
  1372. "pages": [{
  1373. "path": "web_view/index",
  1374. "style": {
  1375. "navigationBarTitleText": "",
  1376. "app-plus": {
  1377. // #ifdef APP-PLUS
  1378. "titleNView": {
  1379. "type": "default"
  1380. }
  1381. // #endif
  1382. }
  1383. }
  1384. }, {
  1385. "path": "vip_paid/index",
  1386. "style": {
  1387. "navigationBarTitleText": "SVIP会员",
  1388. "app-plus": {
  1389. // #ifdef APP-PLUS
  1390. "titleNView": {
  1391. "type": "default"
  1392. }
  1393. // #endif
  1394. }
  1395. }
  1396. },
  1397. {
  1398. "path": "vip_grade/index",
  1399. "style": {
  1400. "navigationBarTitleText": "会员中心",
  1401. "navigationBarTextStyle": "white",
  1402. "navigationBarBackgroundColor": "#302F35",
  1403. "app-plus": {
  1404. // #ifdef APP-PLUS
  1405. "titleNView": {
  1406. "type": "default"
  1407. }
  1408. // #endif
  1409. }
  1410. }
  1411. },
  1412. {
  1413. "path": "record_list/index",
  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": "vip_grade_active/index",
  1427. "style": {
  1428. "navigationBarTitleText": "会员卡激活",
  1429. "app-plus": {
  1430. // #ifdef APP-PLUS
  1431. "titleNView": {
  1432. "type": "default"
  1433. }
  1434. // #endif
  1435. }
  1436. }
  1437. },
  1438. {
  1439. "path": "vip_coupon/index",
  1440. "style": {
  1441. "navigationBarTitleText": "会员优惠券",
  1442. "app-plus": {
  1443. // #ifdef APP-PLUS
  1444. "titleNView": {
  1445. "type": "default"
  1446. }
  1447. // #endif
  1448. }
  1449. }
  1450. },
  1451. {
  1452. "path": "vip_clause/index",
  1453. "style": {
  1454. "navigationBarTitleText": "会员协议",
  1455. "app-plus": {
  1456. // #ifdef APP-PLUS
  1457. "titleNView": {
  1458. "type": "default"
  1459. }
  1460. // #endif
  1461. }
  1462. }
  1463. },
  1464. {
  1465. "path": "vip_active/index",
  1466. "style": {
  1467. "navigationBarTitleText": "激活会员",
  1468. "app-plus": {
  1469. // #ifdef APP-PLUS
  1470. "titleNView": {
  1471. "type": "default"
  1472. }
  1473. // #endif
  1474. }
  1475. }
  1476. },
  1477. {
  1478. "path": "offline_pay/index",
  1479. "style": {
  1480. "navigationBarTitleText": "支付",
  1481. "app-plus": {
  1482. // #ifdef APP-PLUS
  1483. "titleNView": {
  1484. "type": "default"
  1485. }
  1486. // #endif
  1487. }
  1488. }
  1489. },
  1490. {
  1491. "path": "offline_result/index",
  1492. "style": {
  1493. "navigationBarTitleText": "支付结果",
  1494. "app-plus": {
  1495. // #ifdef APP-PLUS
  1496. "titleNView": {
  1497. "type": "default"
  1498. }
  1499. // #endif
  1500. }
  1501. }
  1502. },
  1503. {
  1504. "path": "special/index",
  1505. "style": {
  1506. "navigationBarTitleText": "专题页",
  1507. "app-plus": {
  1508. // #ifdef APP-PLUS
  1509. "titleNView": {
  1510. "type": "default"
  1511. }
  1512. // #endif
  1513. }
  1514. }
  1515. }
  1516. ]
  1517. },
  1518. {
  1519. "root": "pages/points_mall",
  1520. "pages": [{
  1521. "path": "index",
  1522. "style": {
  1523. "navigationBarTextStyle": "white",
  1524. "navigationBarBackgroundColor": "#333333",
  1525. "navigationBarTitleText": "积分商城",
  1526. "app-plus": {
  1527. // #ifdef APP-PLUS
  1528. "titleNView": {
  1529. "type": "default"
  1530. }
  1531. // #endif
  1532. }
  1533. }
  1534. },
  1535. {
  1536. "path": "integral_goods_list",
  1537. "style": {
  1538. "navigationBarTitleText": "商品列表",
  1539. // "navigationBarTextStyle": "white",
  1540. // "navigationBarBackgroundColor": "#E93323",
  1541. "app-plus": {
  1542. // #ifdef APP-PLUS
  1543. "titleNView": {
  1544. "type": "default"
  1545. }
  1546. // #endif
  1547. }
  1548. }
  1549. },
  1550. {
  1551. "path": "integral_goods_details",
  1552. "style": {
  1553. "navigationBarTitleText": "商品详情",
  1554. "app-plus": {
  1555. // #ifdef APP-PLUS
  1556. "titleNView": {
  1557. "type": "default"
  1558. }
  1559. // #endif
  1560. }
  1561. // #ifdef MP
  1562. ,
  1563. "disableScroll": true
  1564. // #endif
  1565. }
  1566. },
  1567. {
  1568. "path": "exchange_record",
  1569. "style": {
  1570. "navigationBarTitleText": "兑换记录",
  1571. "app-plus": {
  1572. // #ifdef APP-PLUS
  1573. "titleNView": {
  1574. "type": "default"
  1575. }
  1576. // #endif
  1577. }
  1578. }
  1579. },
  1580. {
  1581. "path": "integral_order",
  1582. "style": {
  1583. "navigationBarTitleText": "积分订单",
  1584. "app-plus": {
  1585. // #ifdef APP-PLUS
  1586. "titleNView": {
  1587. "type": "default"
  1588. }
  1589. // #endif
  1590. }
  1591. }
  1592. }, {
  1593. "path": "user_address",
  1594. "style": {
  1595. "navigationBarTitleText": "选择地址",
  1596. "app-plus": {
  1597. // #ifdef APP-PLUS
  1598. "titleNView": {
  1599. "type": "default"
  1600. }
  1601. // #endif
  1602. }
  1603. }
  1604. },
  1605. {
  1606. "path": "integral_order_status",
  1607. "style": {
  1608. "navigationBarTitleText": "兑换成功",
  1609. "app-plus": {
  1610. // #ifdef APP-PLUS
  1611. "titleNView": {
  1612. "type": "default"
  1613. }
  1614. // #endif
  1615. }
  1616. }
  1617. }, {
  1618. "path": "integral_order_details",
  1619. "style": {
  1620. "navigationBarTitleText": "兑换订单详情",
  1621. "app-plus": {
  1622. // #ifdef APP-PLUS
  1623. "titleNView": {
  1624. "type": "default"
  1625. }
  1626. // #endif
  1627. }
  1628. }
  1629. }, {
  1630. "path": "logistics_details",
  1631. "style": {
  1632. "navigationBarTitleText": "兑换物流详情",
  1633. "app-plus": {
  1634. // #ifdef APP-PLUS
  1635. "titleNView": {
  1636. "type": "default"
  1637. }
  1638. // #endif
  1639. }
  1640. }
  1641. }
  1642. ]
  1643. },
  1644. {
  1645. "root": "pages/extension",
  1646. "name": "extension",
  1647. "pages": [{
  1648. "path": "invite_friend/index",
  1649. "style": {
  1650. "navigationBarTitleText": "邀请好友",
  1651. "app-plus": {
  1652. // #ifdef APP-PLUS
  1653. "titleNView": {
  1654. "type": "default"
  1655. }
  1656. // #endif
  1657. }
  1658. }
  1659. },
  1660. {
  1661. "path": "customer_list/chat",
  1662. "style": {
  1663. "navigationBarTitleText": "对话详情",
  1664. "navigationStyle": "custom",
  1665. "app-plus": {
  1666. "scrollIndicator": false //禁用原生导航栏
  1667. // #ifdef APP-PLUS
  1668. ,
  1669. "titleNView": {
  1670. "type": "default"
  1671. }
  1672. // #endif
  1673. },
  1674. "disableScroll": true
  1675. }
  1676. },
  1677. {
  1678. "path": "news_list/index",
  1679. "style": {
  1680. "navigationBarTitleText": "资讯",
  1681. "app-plus": {
  1682. // #ifdef APP-PLUS
  1683. "titleNView": {
  1684. "type": "default"
  1685. }
  1686. // #endif
  1687. }
  1688. }
  1689. },
  1690. {
  1691. "path": "news_details/index",
  1692. "style": {
  1693. "navigationBarTitleText": "资讯详情",
  1694. "app-plus": {
  1695. // #ifdef APP-PLUS
  1696. "titleNView": {
  1697. "type": "default"
  1698. }
  1699. // #endif
  1700. }
  1701. }
  1702. }
  1703. ]
  1704. },
  1705. {
  1706. "root": "pages/work",
  1707. "name": "work",
  1708. "pages": [{
  1709. "path": "userInfo/index",
  1710. "style": {
  1711. "navigationBarTitleText": "客户信息"
  1712. }
  1713. },
  1714. {
  1715. "path": "orderList/index",
  1716. "style": {
  1717. "navigationBarTitleText": "交易管理"
  1718. }
  1719. },
  1720. {
  1721. "path": "orderDetail/index",
  1722. "style": {
  1723. "navigationBarTitleText": "订单详情"
  1724. }
  1725. },
  1726. {
  1727. "path": "record/index",
  1728. "style": {
  1729. "navigationBarTitleText": "记录"
  1730. }
  1731. },
  1732. {
  1733. "path": "groupInfo/index",
  1734. "style": {
  1735. "navigationBarTitleText": ""
  1736. }
  1737. }
  1738. ]
  1739. },
  1740. {
  1741. "root": "pages/goods",
  1742. "name": "goods",
  1743. "pages": [{
  1744. "path": "goods_list/index",
  1745. "style": {
  1746. "navigationBarTitleText": "商品列表",
  1747. // #ifndef MP
  1748. "navigationBarTextStyle": "black",
  1749. // #endif
  1750. // #ifdef MP
  1751. "navigationBarTextStyle": "white",
  1752. "navigationStyle": "custom",
  1753. // #endif
  1754. "app-plus": {
  1755. // #ifdef APP-PLUS
  1756. "titleNView": {
  1757. "type": "default"
  1758. }
  1759. // #endif
  1760. }
  1761. }
  1762. },
  1763. {
  1764. "path": "goods_search/index",
  1765. "style": {
  1766. "navigationBarTitleText": "搜索商品",
  1767. "app-plus": {
  1768. // #ifdef APP-PLUS
  1769. "titleNView": {
  1770. "type": "default"
  1771. }
  1772. // #endif
  1773. }
  1774. }
  1775. },
  1776. {
  1777. "path": "order_pay_status/index",
  1778. "style": {
  1779. "navigationBarTitleText": "支付成功",
  1780. "app-plus": {
  1781. // #ifdef APP-PLUS
  1782. "titleNView": {
  1783. "type": "default"
  1784. }
  1785. // #endif
  1786. }
  1787. }
  1788. }, {
  1789. "path": "order_pay_status/payLottery",
  1790. "style": {
  1791. "navigationBarTitleText": "支付成功",
  1792. "app-plus": {
  1793. // #ifdef APP-PLUS
  1794. "titleNView": {
  1795. "type": "default"
  1796. }
  1797. // #endif
  1798. }
  1799. }
  1800. },
  1801. {
  1802. "path": "goods_comment_list/index",
  1803. "style": {
  1804. "navigationBarTitleText": "商品评分",
  1805. "app-plus": {
  1806. // #ifdef APP-PLUS
  1807. "titleNView": {
  1808. "type": "default"
  1809. }
  1810. // #endif
  1811. }
  1812. }
  1813. },
  1814. {
  1815. "path": "goods_comment_con/index",
  1816. "style": {
  1817. "navigationBarTitleText": "商品评价",
  1818. "app-plus": {
  1819. // #ifdef APP-PLUS
  1820. "titleNView": {
  1821. "type": "default"
  1822. }
  1823. // #endif
  1824. }
  1825. }
  1826. },
  1827. {
  1828. "path": "goods_comment_con/comment_con",
  1829. "style": {
  1830. "navigationBarTitleText": "评价详情",
  1831. "app-plus": {
  1832. // #ifdef APP-PLUS
  1833. "titleNView": {
  1834. "type": "default"
  1835. }
  1836. // #endif
  1837. }
  1838. }
  1839. },
  1840. {
  1841. "path": "goods_comment_con/lottery_comment",
  1842. "style": {
  1843. "navigationBarTitleText": "订单评价",
  1844. "app-plus": {
  1845. // #ifdef APP-PLUS
  1846. "titleNView": {
  1847. "type": "default"
  1848. }
  1849. // #endif
  1850. }
  1851. }
  1852. },
  1853. {
  1854. "path": "goods_logistics/index",
  1855. "style": {
  1856. "navigationBarTitleText": "物流信息",
  1857. "app-plus": {
  1858. // #ifdef APP-PLUS
  1859. "titleNView": {
  1860. "type": "default"
  1861. }
  1862. // #endif
  1863. }
  1864. }
  1865. },
  1866. {
  1867. "path": "delivery_detail/index",
  1868. "style": {
  1869. "navigationBarTitleText": "配送信息",
  1870. "app-plus": {
  1871. // #ifdef APP-PLUS
  1872. "titleNView": {
  1873. "type": "default"
  1874. }
  1875. // #endif
  1876. }
  1877. }
  1878. },
  1879. {
  1880. "path": "goods_details_store/index",
  1881. "style": {
  1882. "navigationBarTitleText": "门店列表",
  1883. "app-plus": {
  1884. // #ifdef APP-PLUS
  1885. "titleNView": {
  1886. "type": "default"
  1887. }
  1888. // #endif
  1889. }
  1890. }
  1891. },
  1892. {
  1893. "path": "goods_return_list/index",
  1894. "style": {
  1895. "navigationBarTitleText": "退货列表",
  1896. "app-plus": {
  1897. // #ifdef APP-PLUS
  1898. "titleNView": {
  1899. "type": "default"
  1900. }
  1901. // #endif
  1902. }
  1903. }
  1904. },
  1905. {
  1906. "path": "goods_return/index",
  1907. "style": {
  1908. "navigationBarTitleText": "申请退货",
  1909. "app-plus": {
  1910. // #ifdef APP-PLUS
  1911. "titleNView": {
  1912. "type": "default"
  1913. }
  1914. // #endif
  1915. }
  1916. }
  1917. },
  1918. {
  1919. "path": "order_details/index",
  1920. "style": {
  1921. "navigationBarTitleText": "订单详情",
  1922. "app-plus": {
  1923. // #ifdef APP-PLUS
  1924. "titleNView": {
  1925. "type": "default"
  1926. }
  1927. // #endif
  1928. }
  1929. }
  1930. },
  1931. {
  1932. "path": "order_list/index",
  1933. "style": {
  1934. "navigationBarTitleText": "我的订单",
  1935. "app-plus": {
  1936. // #ifdef APP-PLUS
  1937. "titleNView": {
  1938. "type": "default"
  1939. }
  1940. // #endif
  1941. }
  1942. }
  1943. },
  1944. {
  1945. "path": "order_pay/index",
  1946. "style": {
  1947. "navigationBarTitleText": "订单支付",
  1948. "app-plus": {
  1949. // #ifdef APP-PLUS
  1950. "titleNView": {
  1951. "type": "default"
  1952. }
  1953. // #endif
  1954. }
  1955. }
  1956. },
  1957. {
  1958. "path": "order_refund_goods/index",
  1959. "style": {
  1960. "navigationBarTitleText": "退回商品",
  1961. "app-plus": {
  1962. // #ifdef APP-PLUS
  1963. "titleNView": {
  1964. "type": "default"
  1965. }
  1966. // #endif
  1967. }
  1968. }
  1969. },
  1970. {
  1971. "path": "admin_order_detail/index",
  1972. "style": {
  1973. "navigationBarTitleText": "订单详情",
  1974. "app-plus": {
  1975. // #ifdef APP-PLUS
  1976. "titleNView": {
  1977. "type": "default"
  1978. }
  1979. // #endif
  1980. }
  1981. }
  1982. },
  1983. {
  1984. "path": "order_confirm/index",
  1985. "style": {
  1986. "navigationBarTitleText": "提交订单",
  1987. "app-plus": {
  1988. // #ifdef APP-PLUS
  1989. "titleNView": {
  1990. "type": "default"
  1991. }
  1992. // #endif
  1993. }
  1994. }
  1995. },
  1996. {
  1997. "path": "lottery/grids/index",
  1998. "style": {
  1999. "navigationBarTitleText": "抽奖活动",
  2000. "app-plus": {
  2001. // #ifdef APP-PLUS
  2002. "titleNView": {
  2003. "type": "default"
  2004. }
  2005. // #endif
  2006. }
  2007. }
  2008. },
  2009. {
  2010. "path": "lottery/grids/record",
  2011. "style": {
  2012. "navigationBarTitleText": "中奖记录",
  2013. "app-plus": {
  2014. // #ifdef APP-PLUS
  2015. "titleNView": {
  2016. "type": "default"
  2017. }
  2018. // #endif
  2019. }
  2020. }
  2021. },
  2022. {
  2023. "path": "lottery/grids/order",
  2024. "style": {
  2025. "navigationBarTitleText": "中奖商品",
  2026. "app-plus": {
  2027. // #ifdef APP-PLUS
  2028. "titleNView": {
  2029. "type": "default"
  2030. }
  2031. // #endif
  2032. }
  2033. }
  2034. },
  2035. {
  2036. "path": "verify_record/index",
  2037. "style": {
  2038. "navigationBarTitleText": "核销记录",
  2039. "app-plus": {
  2040. // #ifdef APP-PLUS
  2041. "titleNView": {
  2042. "type": "default"
  2043. }
  2044. // #endif
  2045. }
  2046. }
  2047. },
  2048. {
  2049. "path": "server_card/index",
  2050. "style": {
  2051. "navigationBarTitleText": "服务卡",
  2052. "app-plus": {
  2053. // #ifdef APP-PLUS
  2054. "titleNView": {
  2055. "type": "default"
  2056. }
  2057. // #endif
  2058. }
  2059. }
  2060. }
  2061. ]
  2062. }
  2063. ],
  2064. "tabBar": {
  2065. "color": "#282828",
  2066. "selectedColor": "#ff3366",
  2067. "borderStyle": "black",
  2068. "backgroundColor": "#ffffff",
  2069. "list": [{
  2070. "pagePath": "pages/index/index",
  2071. "iconPath": "static/images/1-001.png",
  2072. "selectedIconPath": "static/images/1-002.png",
  2073. "text": "首页"
  2074. },
  2075. {
  2076. "pagePath": "pages/goods_cate/goods_cate",
  2077. "iconPath": "static/images/2-001.png",
  2078. "selectedIconPath": "static/images/2-002.png",
  2079. "text": "分类"
  2080. },
  2081. {
  2082. "pagePath": "pages/store_cate/store_cate",
  2083. "iconPath": "static/images/5-001.png",
  2084. "selectedIconPath": "static/images/5-002.png",
  2085. "text": "门店"
  2086. },
  2087. {
  2088. "pagePath": "pages/order_addcart/order_addcart",
  2089. "iconPath": "static/images/3-001.png",
  2090. "selectedIconPath": "static/images/3-002.png",
  2091. "text": "购物车"
  2092. },
  2093. {
  2094. "pagePath": "pages/user/index",
  2095. "iconPath": "static/images/4-001.png",
  2096. "selectedIconPath": "static/images/4-002.png",
  2097. "text": "我的"
  2098. }
  2099. ]
  2100. },
  2101. "globalStyle": {
  2102. "navigationBarTextStyle": "black",
  2103. "navigationBarTitleText": "加载中",
  2104. "navigationBarBackgroundColor": "#fff",
  2105. "backgroundColor": "#F8F8F8",
  2106. "titleNView": false
  2107. },
  2108. "condition": { //模式配置,仅开发期间生效
  2109. "current": 0, //当前激活的模式(list 的索引项)
  2110. "list": [{
  2111. "name": "", //模式名称
  2112. "path": "", //启动页面,必选
  2113. "query": "" //启动参数,在页面的onLoad函数里面得到
  2114. }]
  2115. }
  2116. }