pages.json 52 KB

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