pages.json 42 KB

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