pages.json 52 KB

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