pages.json 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^empty$": "@/components/empty/empty.vue",
  6. "^wanl-empty$": "@/components/empty/empty.vue",
  7. "^uni-load-more$": "@/components/uni-load-more/uni-load-more.vue",
  8. "^wanl-live-(.*)$": "@/components/live-room/$1.vue",
  9. "^uni-popup$": "@/components/uni-popup/uni-popup.vue",
  10. "^uni-transition$": "@/components/uni-transition/uni-transition.vue",
  11. "^mall-(.*)$": "@/components/mall/mall-$1.vue",
  12. "^address-picker$": "@/components/address-picker/address-picker.vue"
  13. }
  14. },
  15. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  16. {
  17. "path": "pages/index/index",
  18. "style": {
  19. "navigationBarTitleText": "%index.title%",
  20. "navigationStyle": "custom",
  21. "enablePullDownRefresh": false,
  22. "app-plus": {
  23. "titleNView": false
  24. }
  25. }
  26. },
  27. {
  28. "path": "pages/index/video-list",
  29. "style": {
  30. "navigationStyle": "custom",
  31. "navigationBarTitleText": "%home.video%",
  32. "backgroundColor": "#f7f8fc",
  33. "app-plus": {
  34. "titleNView": false,
  35. "bounce": "vertical"
  36. }
  37. }
  38. },
  39. {
  40. "path": "pages/index/scenic-list",
  41. "style": {
  42. "navigationStyle": "custom",
  43. "navigationBarTitleText": "%scenic.listTitle%",
  44. "backgroundColor": "#f7f8fc",
  45. "app-plus": {
  46. "titleNView": false,
  47. "bounce": "vertical"
  48. }
  49. }
  50. },
  51. {
  52. "path": "pages/index/scenic-detail",
  53. "style": {
  54. "navigationStyle": "custom",
  55. "navigationBarTitleText": "%scenic.detailTitle%",
  56. "backgroundColor": "#f7f8fc",
  57. "app-plus": {
  58. "titleNView": false,
  59. "bounce": "vertical"
  60. }
  61. }
  62. },
  63. {
  64. "path": "pages/search/index",
  65. "style": {
  66. "navigationStyle": "custom",
  67. "navigationBarTitleText": "%search.pageTitle%",
  68. "backgroundColor": "#eef3fb",
  69. "app-plus": {
  70. "titleNView": false,
  71. "bounce": "vertical"
  72. }
  73. }
  74. },
  75. {
  76. "path": "pages/search/result",
  77. "style": {
  78. "navigationStyle": "custom",
  79. "navigationBarTitleText": "%search.resultTitle%",
  80. "backgroundColor": "#eef3fb",
  81. "enablePullDownRefresh": true,
  82. "onReachBottomDistance": 120,
  83. "app-plus": {
  84. "titleNView": false,
  85. "bounce": "vertical"
  86. }
  87. }
  88. },
  89. {
  90. "path": "pages/profile/show",
  91. "style": {
  92. "navigationStyle": "custom",
  93. "navigationBarTitleText": "%findUser.pageTitle%",
  94. "backgroundColor": "#f4f6fb",
  95. "enablePullDownRefresh": true,
  96. "onReachBottomDistance": 120,
  97. "app-plus": {
  98. "titleNView": false,
  99. "bounce": "vertical"
  100. }
  101. }
  102. },
  103. {
  104. "path": "pages/feed/reel",
  105. "style": {
  106. "navigationStyle": "custom",
  107. "navigationBarTitleText": "%home.video%",
  108. "backgroundColor": "#000000",
  109. "app-plus": {
  110. "titleNView": false,
  111. "bounce": "none",
  112. "scrollIndicator": "none"
  113. }
  114. }
  115. },
  116. {
  117. "path": "pages/feed/series-reel",
  118. "style": {
  119. "navigationStyle": "custom",
  120. "navigationBarTitleText": "%mine.tabSeries%",
  121. "backgroundColor": "#000000",
  122. "app-plus": {
  123. "titleNView": false,
  124. "bounce": "none",
  125. "scrollIndicator": "none"
  126. }
  127. }
  128. },
  129. {
  130. "path": "pages/favorite/index",
  131. "style": {
  132. "navigationBarTitleText": "%pagesNav.myFavorites%",
  133. "navigationStyle": "custom",
  134. "app-plus": {
  135. "titleNView": false
  136. }
  137. }
  138. },
  139. {
  140. "path": "pages/component/component",
  141. "style": {
  142. "navigationBarTitleText": "%index.component%",
  143. "enablePullDownRefresh": false
  144. }
  145. },
  146. {
  147. "path": "pages/feed/index",
  148. "style": {
  149. "navigationBarTitleText": "%index.api%",
  150. "navigationStyle": "custom",
  151. "enablePullDownRefresh": false,
  152. "app-plus": {
  153. "scrollIndicator": "none",
  154. "bounce": "none"
  155. }
  156. }
  157. },
  158. {
  159. "path": "pages/mine/index",
  160. "style": {
  161. "navigationBarTitleText": "%index.schema%",
  162. "navigationStyle": "custom",
  163. "enablePullDownRefresh": false,
  164. "onReachBottomDistance": 120
  165. }
  166. },
  167. {
  168. "path": "pages/user/collect",
  169. "style": {
  170. "navigationStyle": "custom",
  171. "navigationBarTitleText": "%pagesNav.myFavorites%",
  172. "disableScroll": true
  173. }
  174. },
  175. {
  176. "path": "pages/user/follow",
  177. "style": {
  178. "navigationBarTitleText": "%mine.followShop%",
  179. "enablePullDownRefresh": true,
  180. "onReachBottomDistance": 150,
  181. "app-plus": {
  182. "bounce": "vertical"
  183. }
  184. }
  185. },
  186. {
  187. "path": "pages/user/footprint",
  188. "style": {
  189. "navigationStyle": "custom",
  190. "navigationBarTitleText": "%footprint.my%",
  191. "disableScroll": true
  192. }
  193. },
  194. {
  195. "path": "pages/mine/fans",
  196. "style": {
  197. "navigationStyle": "custom",
  198. "navigationBarTitleText": "%relation.fansTitle%",
  199. "enablePullDownRefresh": true,
  200. "backgroundColor": "#f4f6fb",
  201. "app-plus": {
  202. "bounce": "vertical"
  203. }
  204. }
  205. },
  206. {
  207. "path": "pages/mine/follow",
  208. "style": {
  209. "navigationStyle": "custom",
  210. "navigationBarTitleText": "%relation.followTitle%",
  211. "enablePullDownRefresh": true,
  212. "backgroundColor": "#f4f6fb",
  213. "app-plus": {
  214. "bounce": "vertical"
  215. }
  216. }
  217. },
  218. {
  219. "path": "pages/myuser/myuser",
  220. "style": {
  221. "navigationBarTitleText": "%mall.mine%",
  222. "navigationStyle": "custom",
  223. "enablePullDownRefresh": true,
  224. "onReachBottomDistance": 120,
  225. "app-plus": {
  226. "scrollIndicator": "none"
  227. }
  228. }
  229. },
  230. {
  231. "path": "pages/live/hall",
  232. "style": {
  233. "navigationStyle": "custom",
  234. "enablePullDownRefresh": false,
  235. "backgroundColor": "#eef3fb",
  236. "app-plus": {
  237. "titleNView": false,
  238. "bounce": "vertical"
  239. }
  240. }
  241. },
  242. {
  243. "path": "pages/live/search",
  244. "style": {
  245. "navigationStyle": "custom",
  246. "navigationBarTitleText": "%live.searchPageTitle%",
  247. "backgroundColor": "#eef3fb",
  248. "enablePullDownRefresh": false,
  249. "onReachBottomDistance": 120,
  250. "app-plus": {
  251. "titleNView": false,
  252. "bounce": "vertical"
  253. }
  254. }
  255. },
  256. {
  257. "path": "pages/dynamics/index",
  258. "style": {
  259. "navigationBarTitleText": "%dynamics.title%",
  260. "navigationStyle": "custom",
  261. "enablePullDownRefresh": false,
  262. "onReachBottomDistance": 120,
  263. "app-plus": {
  264. "titleNView": false
  265. }
  266. }
  267. },
  268. {
  269. "path": "pages/dynamics/detail",
  270. "style": {
  271. "navigationBarTitleText": "%dynamics.detailTitle%",
  272. "navigationStyle": "custom",
  273. "enablePullDownRefresh": false,
  274. "onReachBottomDistance": 120,
  275. "app-plus": {
  276. "titleNView": false
  277. }
  278. }
  279. },
  280. {
  281. "path": "pages/dynamics/publish",
  282. "style": {
  283. "navigationBarTitleText": "%dynamics.publishTitle%",
  284. "navigationStyle": "custom",
  285. "enablePullDownRefresh": false,
  286. "app-plus": {
  287. "titleNView": false
  288. }
  289. }
  290. },
  291. {
  292. "path": "pages/live/watch",
  293. "style": {
  294. "navigationBarTextStyle": "white",
  295. "navigationStyle": "custom",
  296. "navigationBarTitleText": "%pagesNav.liveRoom%",
  297. "app-plus": {
  298. "titleNView": false,
  299. "scrollIndicator": "none"
  300. }
  301. }
  302. },
  303. {
  304. "path": "pages/live/broadcast",
  305. "style": {
  306. "navigationBarTextStyle": "white",
  307. "navigationStyle": "custom",
  308. "navigationBarTitleText": "%live.broadcastPageTitle%",
  309. "backgroundColor": "#0c0d2b",
  310. "app-plus": {
  311. "titleNView": false,
  312. "scrollIndicator": "none",
  313. "popGesture": "none",
  314. "background": "transparent"
  315. }
  316. }
  317. },
  318. {
  319. "path": "pages/live/end",
  320. "style": {
  321. "navigationStyle": "custom",
  322. "navigationBarTitleText": "%live.broadcastEndTitle%",
  323. "backgroundColor": "#1a1d26",
  324. "app-plus": {
  325. "titleNView": false
  326. }
  327. }
  328. },
  329. {
  330. "path": "pages/passport/lobby",
  331. "style": {
  332. "navigationBarTextStyle": "white",
  333. "navigationStyle": "custom",
  334. "navigationBarTitleText": "%pagesNav.loginEntry%",
  335. "backgroundColor": "#0e1230",
  336. "app-plus": {
  337. "titleNView": false,
  338. "scrollIndicator": "none",
  339. "bounce": "none"
  340. }
  341. }
  342. },
  343. {
  344. "path": "pages/passport/signin",
  345. "style": {
  346. "navigationBarTextStyle": "white",
  347. "navigationStyle": "custom",
  348. "navigationBarTitleText": "%pagesNav.login%",
  349. "backgroundColor": "#0e1230",
  350. "app-plus": {
  351. "titleNView": false,
  352. "scrollIndicator": "none",
  353. "bounce": "none"
  354. }
  355. }
  356. },
  357. {
  358. "path": "pages/passport/enroll",
  359. "style": {
  360. "navigationBarTextStyle": "white",
  361. "navigationStyle": "custom",
  362. "navigationBarTitleText": "%pagesNav.register%",
  363. "backgroundColor": "#0e1230",
  364. "app-plus": {
  365. "titleNView": false,
  366. "scrollIndicator": "none",
  367. "bounce": "none"
  368. }
  369. }
  370. },
  371. {
  372. "path": "pages/passport/recover-phone",
  373. "style": {
  374. "navigationBarTextStyle": "white",
  375. "navigationStyle": "custom",
  376. "navigationBarTitleText": "%pagesNav.recoverPassword%",
  377. "backgroundColor": "#0e1230",
  378. "app-plus": {
  379. "titleNView": false,
  380. "scrollIndicator": "none",
  381. "bounce": "none"
  382. }
  383. }
  384. },
  385. {
  386. "path": "pages/dev/ijk-test",
  387. "style": {
  388. "navigationBarTitleText": "%pagesNav.playerTest%",
  389. "navigationBarTextStyle": "white",
  390. "navigationBarBackgroundColor": "#1a1f4a",
  391. "backgroundColor": "#0e1230"
  392. }
  393. },
  394. {
  395. "path": "pages/account/security",
  396. "style": {
  397. "navigationStyle": "custom",
  398. "navigationBarTitleText": "%user.securityTitle%",
  399. "backgroundColor": "#f4f6fb",
  400. "app-plus": {
  401. "titleNView": false,
  402. "bounce": "vertical"
  403. }
  404. }
  405. },
  406. {
  407. "path": "pages/account/profile-edit",
  408. "style": {
  409. "navigationStyle": "custom",
  410. "navigationBarTitleText": "%profileEdit.title%",
  411. "backgroundColor": "#f4f6fb",
  412. "app-plus": {
  413. "titleNView": false,
  414. "bounce": "vertical"
  415. }
  416. }
  417. },
  418. {
  419. "path": "pages/account/reset-password",
  420. "style": {
  421. "navigationStyle": "custom",
  422. "navigationBarTitleText": "%user.resetPwdTitle%",
  423. "backgroundColor": "#f4f6fb",
  424. "app-plus": {
  425. "titleNView": false,
  426. "bounce": "vertical"
  427. }
  428. }
  429. },
  430. {
  431. "path": "pages/account/sms-verify",
  432. "style": {
  433. "navigationStyle": "custom",
  434. "navigationBarTitleText": "%pagesNav.smsVerify%",
  435. "backgroundColor": "#f4f6fb",
  436. "app-plus": {
  437. "titleNView": false,
  438. "bounce": "vertical"
  439. }
  440. }
  441. },
  442. {
  443. "path": "pages/account/reset-secret",
  444. "style": {
  445. "navigationStyle": "custom",
  446. "navigationBarTitleText": "%user.resetSecretHeroTitle%",
  447. "backgroundColor": "#f4f6fb",
  448. "app-plus": {
  449. "titleNView": false,
  450. "bounce": "vertical"
  451. }
  452. }
  453. },
  454. {
  455. "path": "pages/account/realname-add",
  456. "style": {
  457. "navigationStyle": "custom",
  458. "navigationBarTitleText": "%user.realnamePageAdd%",
  459. "backgroundColor": "#f4f6fb",
  460. "app-plus": {
  461. "titleNView": false,
  462. "bounce": "vertical"
  463. }
  464. }
  465. },
  466. {
  467. "path": "pages/account/realname-info",
  468. "style": {
  469. "navigationStyle": "custom",
  470. "navigationBarTitleText": "%user.realnamePageInfo%",
  471. "backgroundColor": "#f4f6fb",
  472. "app-plus": {
  473. "titleNView": false,
  474. "bounce": "vertical"
  475. }
  476. }
  477. },
  478. {
  479. "path": "pages/account/language",
  480. "style": {
  481. "navigationStyle": "custom",
  482. "navigationBarTitleText": "%user.panelLanguage%",
  483. "backgroundColor": "#f4f6fb",
  484. "app-plus": {
  485. "titleNView": false,
  486. "bounce": "vertical"
  487. }
  488. }
  489. },
  490. {
  491. "path": "pages/user/settings/general",
  492. "style": {
  493. "navigationStyle": "custom",
  494. "navigationBarTitleText": "%user.panelGeneral%",
  495. "backgroundColor": "#f4f6fb",
  496. "app-plus": {
  497. "titleNView": false,
  498. "bounce": "vertical"
  499. }
  500. }
  501. },
  502. {
  503. "path": "pages/user/settings/teen-mode",
  504. "style": {
  505. "navigationStyle": "custom",
  506. "navigationBarTitleText": "%user.teenModeTitle%",
  507. "backgroundColor": "#f4f6fb",
  508. "app-plus": {
  509. "titleNView": false,
  510. "bounce": "vertical"
  511. }
  512. }
  513. },
  514. {
  515. "path": "pages/user/settings/teen-mode-lock",
  516. "style": {
  517. "navigationStyle": "custom",
  518. "navigationBarTitleText": "%user.teenModeTitle%",
  519. "backgroundColor": "#f4f6fb",
  520. "disableSwipeBack": true,
  521. "app-plus": {
  522. "titleNView": false,
  523. "bounce": "none"
  524. }
  525. }
  526. },
  527. {
  528. "path": "pages/account/notice",
  529. "style": {
  530. "navigationStyle": "custom",
  531. "navigationBarTitleText": "%user.panelNewMessage%",
  532. "backgroundColor": "#f4f6fb",
  533. "app-plus": {
  534. "titleNView": false,
  535. "bounce": "vertical"
  536. }
  537. }
  538. },
  539. {
  540. "path": "pages/account/complaint",
  541. "style": {
  542. "navigationStyle": "custom",
  543. "navigationBarTitleText": "%user.panelReport%",
  544. "backgroundColor": "#f4f6fb",
  545. "app-plus": {
  546. "titleNView": false,
  547. "bounce": "vertical"
  548. }
  549. }
  550. },
  551. {
  552. "path": "pages/account/complaint-lists",
  553. "style": {
  554. "navigationStyle": "custom",
  555. "navigationBarTitleText": "%mine.actionComplaint%",
  556. "backgroundColor": "#f4f6fb",
  557. "enablePullDownRefresh": true,
  558. "app-plus": {
  559. "titleNView": false,
  560. "bounce": "vertical"
  561. }
  562. }
  563. },
  564. {
  565. "path": "pages/account/blocked",
  566. "style": {
  567. "navigationStyle": "custom",
  568. "navigationBarTitleText": "%pagesNav.blacklist%",
  569. "backgroundColor": "#f4f6fb",
  570. "app-plus": {
  571. "titleNView": false,
  572. "bounce": "vertical"
  573. }
  574. }
  575. },
  576. {
  577. "path": "pages/account/about",
  578. "style": {
  579. "navigationStyle": "custom",
  580. "navigationBarTitleText": "%user.panelAbout%",
  581. "backgroundColor": "#f4f6fb",
  582. "app-plus": {
  583. "titleNView": false,
  584. "bounce": "vertical",
  585. "animationType": "pop-in",
  586. "animationDuration": 200
  587. }
  588. }
  589. },
  590. {
  591. "path": "pages/account/contact",
  592. "style": {
  593. "navigationStyle": "custom",
  594. "navigationBarTitleText": "%about.contactTitle%",
  595. "backgroundColor": "#f4f6fb",
  596. "app-plus": {
  597. "titleNView": false,
  598. "bounce": "vertical"
  599. }
  600. }
  601. },
  602. {
  603. "path": "pages/account/feedback",
  604. "style": {
  605. "navigationStyle": "custom",
  606. "navigationBarTitleText": "%pagesNav.feedback%",
  607. "backgroundColor": "#f4f6fb",
  608. "app-plus": {
  609. "titleNView": false,
  610. "bounce": "vertical"
  611. }
  612. }
  613. },
  614. {
  615. "path": "pages/account/feedback-lists",
  616. "style": {
  617. "navigationStyle": "custom",
  618. "navigationBarTitleText": "%feedback.myList%",
  619. "backgroundColor": "#f4f6fb",
  620. "enablePullDownRefresh": true,
  621. "app-plus": {
  622. "titleNView": false,
  623. "bounce": "vertical"
  624. }
  625. }
  626. },
  627. {
  628. "path": "pages/passport/sms-verify",
  629. "style": {
  630. "navigationBarTextStyle": "white",
  631. "navigationStyle": "custom",
  632. "navigationBarTitleText": "%pagesNav.smsVerify%",
  633. "backgroundColor": "#0e1230",
  634. "app-plus": {
  635. "titleNView": false,
  636. "scrollIndicator": "none",
  637. "bounce": "none"
  638. }
  639. }
  640. },
  641. {
  642. "path": "pages/passport/reset-secret",
  643. "style": {
  644. "navigationBarTextStyle": "white",
  645. "navigationStyle": "custom",
  646. "navigationBarTitleText": "%pagesNav.resetPassword%",
  647. "backgroundColor": "#0e1230",
  648. "app-plus": {
  649. "titleNView": false,
  650. "scrollIndicator": "none",
  651. "bounce": "none"
  652. }
  653. }
  654. },
  655. {
  656. "path": "pages/notice/notice",
  657. "style": {
  658. "navigationBarTitleText": "",
  659. "backgroundColor": "#f5f5f5",
  660. "app-plus": {
  661. "bounce": "vertical"
  662. }
  663. }
  664. },
  665. {
  666. "path": "pages/notice/sys-notice/index",
  667. "style": {
  668. "navigationStyle": "custom",
  669. "navigationBarTitleText": "%notice.system%",
  670. "backgroundColor": "#eef3fb",
  671. "enablePullDownRefresh": true,
  672. "onReachBottomDistance": 120,
  673. "app-plus": {
  674. "titleNView": false,
  675. "bounce": "vertical"
  676. }
  677. }
  678. },
  679. {
  680. "path": "pages/notice/mall-notice/index",
  681. "style": {
  682. "navigationStyle": "custom",
  683. "navigationBarTitleText": "%notice.headTitle%",
  684. "backgroundColor": "#f5f5f5",
  685. "app-plus": {
  686. "titleNView": false,
  687. "bounce": "vertical"
  688. }
  689. }
  690. },
  691. {
  692. "path": "pages/notice/chat",
  693. "style": {
  694. "navigationBarTitleText": "%pagesNav.chatConnecting%",
  695. "backgroundColor": "#ececec",
  696. "app-plus": {
  697. "titleNView": {
  698. "buttons": [
  699. {
  700. "text": "\ue66f",
  701. "fontSrc": "/static/style/iconfont.ttf",
  702. "fontSize": "21px",
  703. "color": "#333",
  704. "float": "right"
  705. }
  706. ]
  707. },
  708. "bounce": "vertical"
  709. }
  710. }
  711. },
  712. {
  713. "path": "pages/article/details",
  714. "style": {
  715. "navigationStyle": "custom",
  716. "navigationBarTitleText": "%common.webViewTitle%",
  717. "backgroundColor": "#f4f6fb",
  718. "app-plus": {
  719. "titleNView": false,
  720. "bounce": "vertical"
  721. }
  722. }
  723. },
  724. {
  725. "path": "pages/article/advert",
  726. "style": {
  727. "navigationStyle": "custom",
  728. "navigationBarTitleText": "%pagesNav.activity%",
  729. "backgroundColor": "#f4f6fb",
  730. "app-plus": {
  731. "titleNView": false,
  732. "bounce": "vertical"
  733. }
  734. }
  735. },
  736. {
  737. "path": "pages/article/list",
  738. "style": {
  739. "navigationStyle": "custom",
  740. "navigationBarTitleText": "%pagesNav.news%",
  741. "backgroundColor": "#f4f6fb",
  742. "enablePullDownRefresh": true,
  743. "onReachBottomDistance": 120,
  744. "app-plus": {
  745. "titleNView": false,
  746. "bounce": "vertical"
  747. }
  748. }
  749. },
  750. {
  751. "path": "pages/common/webview",
  752. "style": {
  753. "navigationStyle": "custom",
  754. "navigationBarTitleText": "%common.webViewTitle%",
  755. "backgroundColor": "#ffffff",
  756. "app-plus": {
  757. "titleNView": false
  758. }
  759. }
  760. },
  761. {
  762. "path": "pages/mall/index",
  763. "style": {
  764. "navigationStyle": "custom",
  765. "navigationBarTitleText": "%pagesNav.mall%",
  766. "backgroundColor": "#f5f5f5",
  767. "enablePullDownRefresh": true,
  768. "onReachBottomDistance": 120,
  769. "app-plus": {
  770. "titleNView": false,
  771. "bounce": "vertical"
  772. }
  773. }
  774. },
  775. {
  776. "path": "pages/product/goods",
  777. "style": {
  778. "navigationStyle": "custom",
  779. "navigationBarTitleText": "%mall.productDetail%",
  780. "backgroundColor": "#f5f5f5",
  781. "app-plus": {
  782. "titleNView": false,
  783. "bounce": "vertical"
  784. }
  785. }
  786. },
  787. {
  788. "path": "pages/page/search",
  789. "style": {
  790. "navigationStyle": "custom",
  791. "navigationBarTitleText": "%search.pageTitle%",
  792. "backgroundColor": "#ffffff",
  793. "app-plus": {
  794. "titleNView": false,
  795. "bounce": "vertical"
  796. }
  797. }
  798. },
  799. {
  800. "path": "pages/product/list",
  801. "style": {
  802. "navigationStyle": "custom",
  803. "navigationBarTitleText": "%pagesNav.productList%",
  804. "backgroundColor": "#f5f5f5",
  805. "app-plus": {
  806. "titleNView": false,
  807. "bounce": "vertical"
  808. }
  809. }
  810. },
  811. {
  812. "path": "pages/product/comment",
  813. "style": {
  814. "navigationBarTitleText": "%pagesNav.productComment%",
  815. "enablePullDownRefresh": true
  816. }
  817. },
  818. {
  819. "path": "pages/shop/index",
  820. "style": {
  821. "navigationStyle": "custom",
  822. "navigationBarTitleText": "%pagesNav.shop%",
  823. "enablePullDownRefresh": false
  824. }
  825. },
  826. {
  827. "path": "pages/shop/product/list",
  828. "style": {
  829. "navigationStyle": "custom",
  830. "navigationBarTitleText": "%pagesNav.shopGoods%",
  831. "backgroundColor": "#f5f5f5",
  832. "enablePullDownRefresh": true,
  833. "onReachBottomDistance": 120,
  834. "app-plus": {
  835. "titleNView": false,
  836. "bounce": "vertical"
  837. }
  838. }
  839. },
  840. {
  841. "path": "pages/shop/info",
  842. "style": {
  843. "navigationBarTitleText": "%pagesNav.shopInfo%",
  844. "backgroundColor": "#f5f5f5",
  845. "app-plus": {
  846. "bounce": "vertical"
  847. }
  848. }
  849. },
  850. {
  851. "path": "pages/cart/index",
  852. "style": {
  853. "navigationStyle": "custom",
  854. "navigationBarTitleText": "%cart.title%",
  855. "backgroundColor": "#f5f5f5",
  856. "app-plus": {
  857. "titleNView": false,
  858. "bounce": "vertical"
  859. }
  860. }
  861. },
  862. {
  863. "path": "pages/order/confirm",
  864. "style": {
  865. "navigationBarTitleText": "%pagesNav.confirmOrder%",
  866. "backgroundColor": "#f3f5f7",
  867. "app-plus": {
  868. "bounce": "vertical"
  869. }
  870. }
  871. },
  872. {
  873. "path": "pages/order/list",
  874. "style": {
  875. "navigationStyle": "custom",
  876. "navigationBarTitleText": "%pagesNav.myOrders%",
  877. "backgroundColor": "#f3f5f7",
  878. "app-plus": {
  879. "titleNView": false,
  880. "bounce": "vertical"
  881. }
  882. }
  883. },
  884. {
  885. "path": "pages/order/details",
  886. "style": {
  887. "navigationBarTitleText": "%order.orderDetail%",
  888. "backgroundColor": "#f3f5f7",
  889. "app-plus": {
  890. "bounce": "vertical"
  891. }
  892. }
  893. },
  894. {
  895. "path": "pages/order/logistics",
  896. "style": {
  897. "navigationStyle": "custom",
  898. "navigationBarTitleText": "%pagesNav.logisticsDetail%",
  899. "backgroundColor": "#f3f5f7",
  900. "app-plus": {
  901. "titleNView": false,
  902. "bounce": "vertical"
  903. }
  904. }
  905. },
  906. {
  907. "path": "pages/order/comment",
  908. "style": {
  909. "navigationStyle": "custom",
  910. "navigationBarTitleText": "%pagesNav.reviewOrder%",
  911. "backgroundColor": "#f3f5f7",
  912. "app-plus": {
  913. "titleNView": false,
  914. "bounce": "vertical"
  915. }
  916. }
  917. },
  918. {
  919. "path": "pages/page/success",
  920. "style": {
  921. "navigationStyle": "custom",
  922. "navigationBarTitleText": "%pagesNav.paySuccess%",
  923. "backgroundColor": "#ffffff",
  924. "app-plus": {
  925. "titleNView": false,
  926. "bounce": "vertical"
  927. }
  928. }
  929. },
  930. {
  931. "path": "pages/user/address/addressManage",
  932. "style": {
  933. "navigationBarTitleText": "%pagesNav.addressManage%",
  934. "backgroundColor": "#ffffff",
  935. "app-plus": {
  936. "bounce": "vertical"
  937. }
  938. }
  939. },
  940. {
  941. "path": "pages/user/address/address",
  942. "style": {
  943. "navigationBarTitleText": "%pagesNav.shippingAddress%",
  944. "backgroundColor": "#f5f5f5",
  945. "app-plus": {
  946. "bounce": "vertical"
  947. }
  948. }
  949. },
  950. {
  951. "path": "pages/user/comment/comment",
  952. "style": {
  953. "navigationBarTitleText": "%comment.title%",
  954. "backgroundColor": "#f5f5f5",
  955. "app-plus": {
  956. "bounce": "vertical"
  957. }
  958. }
  959. },
  960. {
  961. "path": "pages/user/refund/lists",
  962. "style": {
  963. "navigationBarTitleText": "%pagesNav.refundList%",
  964. "backgroundColor": "#f3f5f7",
  965. "enablePullDownRefresh": true,
  966. "onReachBottomDistance": 120,
  967. "app-plus": {
  968. "bounce": "vertical"
  969. }
  970. }
  971. },
  972. {
  973. "path": "pages/user/refund/details",
  974. "style": {
  975. "navigationStyle": "custom",
  976. "navigationBarTitleText": "%pagesNav.refundDetail%",
  977. "backgroundColor": "#f3f5f7",
  978. "app-plus": {
  979. "titleNView": false,
  980. "bounce": "vertical"
  981. }
  982. }
  983. },
  984. {
  985. "path": "pages/user/refund/apply",
  986. "style": {
  987. "navigationBarTitleText": "",
  988. "backgroundColor": "#f3f5f7",
  989. "app-plus": {
  990. "bounce": "vertical"
  991. }
  992. }
  993. },
  994. {
  995. "path": "pages/user/refund/edit",
  996. "style": {
  997. "navigationStyle": "custom",
  998. "navigationBarTitleText": "%pagesNav.refundEdit%",
  999. "backgroundColor": "#f3f5f7",
  1000. "app-plus": {
  1001. "titleNView": false,
  1002. "bounce": "vertical"
  1003. }
  1004. }
  1005. },
  1006. {
  1007. "path": "pages/user/refund/log",
  1008. "style": {
  1009. "navigationStyle": "custom",
  1010. "navigationBarTitleText": "%pagesNav.refundLog%",
  1011. "backgroundColor": "#f3f5f7",
  1012. "app-plus": {
  1013. "titleNView": false,
  1014. "bounce": "vertical"
  1015. }
  1016. }
  1017. },
  1018. {
  1019. "path": "pages/user/coupon/mycard",
  1020. "style": {
  1021. "navigationBarTitleText": "%mine.myCoupon%",
  1022. "backgroundColor": "#f3f5f7",
  1023. "enablePullDownRefresh": false,
  1024. "app-plus": {
  1025. "bounce": "vertical"
  1026. }
  1027. }
  1028. },
  1029. {
  1030. "path": "pages/user/coupon/list",
  1031. "style": {
  1032. "navigationBarTitleText": "%mine.receiveCoupon%",
  1033. "backgroundColor": "#f3f5f7",
  1034. "enablePullDownRefresh": false,
  1035. "app-plus": {
  1036. "bounce": "vertical"
  1037. }
  1038. }
  1039. },
  1040. {
  1041. "path": "pages/user/coupon/details",
  1042. "style": {
  1043. "navigationBarTitleText": "%pagesNav.couponDetail%",
  1044. "backgroundColor": "#f3f5f7",
  1045. "app-plus": {
  1046. "bounce": "vertical"
  1047. }
  1048. }
  1049. },
  1050. {
  1051. "path": "pages/user/coupon/apply",
  1052. "style": {
  1053. "navigationStyle": "custom",
  1054. "navigationBarTitleText": "%pagesNav.couponUse%",
  1055. "backgroundColor": "#f3f5f7",
  1056. "enablePullDownRefresh": true,
  1057. "onReachBottomDistance": 120,
  1058. "app-plus": {
  1059. "titleNView": false,
  1060. "bounce": "vertical"
  1061. }
  1062. }
  1063. },
  1064. {
  1065. "path": "pages/user/money/pay",
  1066. "style": {
  1067. "navigationBarTitleText": "%pagesNav.pay%",
  1068. "app-plus": {
  1069. "titleNView": {
  1070. "type": "float",
  1071. "blurEffect": "light"
  1072. }
  1073. }
  1074. }
  1075. },
  1076. {
  1077. "path": "pages/user/money/pay-webview",
  1078. "style": {
  1079. "navigationStyle": "custom",
  1080. "navigationBarTitleText": "%pagesNav.paying%",
  1081. "backgroundColor": "#ffffff",
  1082. "app-plus": {
  1083. "titleNView": false
  1084. }
  1085. }
  1086. },
  1087. {
  1088. "path": "pages/user/money/google-pay-success",
  1089. "style": {
  1090. "navigationBarTitleText": "%pagesNav.googlePay%"
  1091. }
  1092. },
  1093. {
  1094. "path": "pages/user/money/diamond-top-up",
  1095. "style": {
  1096. "navigationBarTitleText": "",
  1097. "navigationBarBackgroundColor": "#ffffff",
  1098. "navigationStyle": "custom"
  1099. }
  1100. },
  1101. {
  1102. "path": "pages/user/money/diamond-log",
  1103. "style": {
  1104. "navigationBarTitleText": "%money.queryDetail%",
  1105. "enablePullDownRefresh": true
  1106. }
  1107. },
  1108. {
  1109. "path": "pages/user/money/details",
  1110. "style": {
  1111. "navigationBarTitleText": "",
  1112. "enablePullDownRefresh": true
  1113. }
  1114. },
  1115. {
  1116. "path": "pages/user/service",
  1117. "style": {
  1118. "navigationBarTitleText": "%user.smartAssistant%",
  1119. "enablePullDownRefresh": false
  1120. }
  1121. },
  1122. {
  1123. "path": "pages/user/help/help",
  1124. "style": {
  1125. "navigationBarTitleText": "%help.title%",
  1126. "enablePullDownRefresh": true,
  1127. "backgroundColor": "#f5f5f5",
  1128. "app-plus": {
  1129. "bounce": "vertical"
  1130. }
  1131. }
  1132. },
  1133. {
  1134. "path": "pages/travel/hotel/index",
  1135. "style": {
  1136. "navigationStyle": "custom",
  1137. "navigationBarTitleText": "%pagesNav.hotel%",
  1138. "backgroundColor": "#f7f8fc",
  1139. "app-plus": {
  1140. "titleNView": false,
  1141. "bounce": "vertical"
  1142. }
  1143. }
  1144. }
  1145. ],
  1146. "tabBar": {
  1147. "color": "#8a8d9e",
  1148. "selectedColor": "#4a8cff",
  1149. "borderStyle": "white",
  1150. "backgroundColor": "#ffffff",
  1151. "list": [
  1152. {
  1153. "pagePath": "pages/index/index",
  1154. "text": "%tabbar.home%",
  1155. "iconPath": "static/tabbar/home.png",
  1156. "selectedIconPath": "static/tabbar/home-active.png"
  1157. },
  1158. {
  1159. "pagePath": "pages/feed/index",
  1160. "text": "%tabbar.video%",
  1161. "iconPath": "static/tabbar/favorite.png",
  1162. "selectedIconPath": "static/tabbar/favorite-active.png"
  1163. },
  1164. {
  1165. "pagePath": "pages/live/hall",
  1166. "text": "%tabbar.live%",
  1167. "iconPath": "static/tabbar/live.png",
  1168. "selectedIconPath": "static/tabbar/live-active.png"
  1169. },
  1170. {
  1171. "pagePath": "pages/dynamics/index",
  1172. "text": "%tabbar.dynamics%",
  1173. "iconPath": "static/tabbar/bell.png",
  1174. "selectedIconPath": "static/tabbar/bell-active.png"
  1175. },
  1176. {
  1177. "pagePath": "pages/mine/index",
  1178. "text": "%tabbar.mine%",
  1179. "iconPath": "static/tabbar/mine.png",
  1180. "selectedIconPath": "static/tabbar/mine-active.png"
  1181. }
  1182. ]
  1183. },
  1184. "globalStyle": {
  1185. "navigationBarTextStyle": "black",
  1186. "navigationBarTitleText": "%passport.app-name%",
  1187. "navigationBarBackgroundColor": "#F8F8F8",
  1188. "backgroundColor": "#F8F8F8"
  1189. }
  1190. }