pages.json 34 KB

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