pages.json 52 KB

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