pages.json 52 KB

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