pages.json 52 KB

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