pages.json 39 KB

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