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