pages.json 51 KB

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