pages.json 26 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "祥粤云学堂",
  7. "onReachBottomDistance": 50,
  8. "app-plus": {
  9. "titleNView": false //禁用原生导航栏
  10. },
  11. "navigationStyle": "custom", // 隐藏系统导航栏
  12. "navigationBarTextStyle": "white"
  13. }
  14. }, {
  15. "path": "pages/wd/index",
  16. "style": {
  17. "navigationBarTitleText": "我的",
  18. "navigationBarTextStyle": "white",
  19. "navigationStyle": "custom", // 隐藏系统导航栏
  20. "app-plus": {
  21. "titleNView": false, //禁用原生导航栏
  22. "bounce": "none"
  23. }
  24. }
  25. },
  26. {
  27. "path": "pages/course/index",
  28. "style": {
  29. "navigationBarTitleText": "选课中心",
  30. "navigationBarTextStyle": "white",
  31. "navigationStyle": "custom", // 隐藏系统导航栏
  32. "enablePullDownRefresh":true,
  33. "app-plus": {
  34. "titleNView": false, //禁用原生导航栏
  35. "bounce": "none"
  36. }
  37. }
  38. },
  39. {
  40. "path": "pages/learn/index",
  41. "style": {
  42. "navigationBarTitleText": "学习",
  43. "navigationBarTextStyle": "white",
  44. "navigationStyle": "custom", // 隐藏系统导航栏
  45. "app-plus": {
  46. "titleNView": false, //禁用原生导航栏
  47. "bounce": "none"
  48. }
  49. }
  50. },
  51. {
  52. "path": "pages/shopping/shoppingCart",
  53. "style": {
  54. "navigationBarTitleText": "购物车",
  55. "navigationBarTextStyle": "white",
  56. "navigationStyle": "custom", // 隐藏系统导航栏
  57. "app-plus": {
  58. "titleNView": false, //禁用原生导航栏
  59. "bounce": "none"
  60. }
  61. }
  62. },
  63. {
  64. "path": "pages/webview/index",
  65. "style": {
  66. "navigationBarTitleText": "网页",
  67. "navigationStyle": "custom", // 隐藏系统导航栏
  68. "app-plus": {
  69. "titleNView": false, //禁用原生导航栏
  70. "bounce": "none"
  71. }
  72. }
  73. }
  74. ],
  75. "subPackages": [{
  76. "root": "pages2",
  77. "pages": [ {
  78. "path": "wd/info",
  79. "style": {
  80. "navigationBarTitleText": "我的资料",
  81. "navigationBarTextStyle": "white",
  82. "navigationStyle": "custom", // 隐藏系统导航栏
  83. "app-plus": {
  84. "titleNView": false, //禁用原生导航栏
  85. "bounce": "none"
  86. }
  87. }
  88. }, {
  89. "path": "wd/menu",
  90. "style": {
  91. "navigationBarTitleText": "基本资料",
  92. "navigationStyle": "custom", // 隐藏系统导航栏
  93. "app-plus": {
  94. "titleNView": false, //禁用原生导航栏
  95. "bounce": "none"
  96. }
  97. }
  98. }, {
  99. "path": "wd/edu_info",
  100. "style": {
  101. "navigationBarTitleText": "教育信息",
  102. "navigationStyle": "custom", // 隐藏系统导航栏
  103. "app-plus": {
  104. "titleNView": false, //禁用原生导航栏
  105. "bounce": "none"
  106. }
  107. }
  108. }, {
  109. "path": "register/register",
  110. "style": {
  111. "navigationBarTitleText": "注册页",
  112. "navigationBarBackgroundColor": "#0386FD",
  113. "navigationBarTextStyle": "white",
  114. "navigationStyle": "custom", // 隐藏系统导航栏
  115. "app-plus": {
  116. "titleNView": false, //禁用原生导航栏
  117. "bounce": "none"
  118. }
  119. }
  120. }, {
  121. "path": "register/forget",
  122. "style": {
  123. "navigationBarTitleText": "忘记密码",
  124. "navigationBarBackgroundColor": "#0386FD",
  125. "navigationBarTextStyle": "white",
  126. "navigationStyle": "custom", // 隐藏系统导航栏
  127. "app-plus": {
  128. "titleNView": false, //禁用原生导航栏
  129. "bounce": "none"
  130. }
  131. }
  132. }, {
  133. "path": "register/bind",
  134. "style": {
  135. "navigationBarTitleText": "关联学员身份",
  136. "navigationBarBackgroundColor": "#0386FD",
  137. "navigationBarTextStyle": "white",
  138. "navigationStyle": "custom", // 隐藏系统导航栏
  139. "app-plus": {
  140. "titleNView": false, //禁用原生导航栏
  141. "bounce": "none"
  142. }
  143. }
  144. },
  145. {
  146. "path": "wd/class",
  147. "style": {
  148. "navigationBarTitleText": "我的网课",
  149. "navigationStyle": "custom", // 隐藏系统导航栏
  150. "app-plus": {
  151. "titleNView": false, //禁用原生导航栏
  152. "bounce": "none"
  153. }
  154. }
  155. },
  156. {
  157. "path": "order/confirm_list",
  158. "style": {
  159. "navigationBarTitleText": "确认订单",
  160. "navigationStyle": "custom", // 隐藏系统导航栏
  161. "app-plus": {
  162. "titleNView": false, //禁用原生导航栏
  163. "bounce": "none"
  164. }
  165. }
  166. },
  167. {
  168. "path": "order/confirm_pay",
  169. "style": {
  170. "navigationBarTitleText": "订单支付",
  171. "navigationStyle": "custom", // 隐藏系统导航栏
  172. "app-plus": {
  173. "titleNView": false, //禁用原生导航栏
  174. "bounce": "none"
  175. }
  176. }
  177. },
  178. {
  179. "path": "order/confirm_success",
  180. "style": {
  181. "navigationBarTitleText": "支付成功",
  182. "navigationStyle": "custom", // 隐藏系统导航栏
  183. "app-plus": {
  184. "titleNView": false, //禁用原生导航栏
  185. "bounce": "none"
  186. }
  187. }
  188. },
  189. {
  190. "path": "order/index",
  191. "style": {
  192. "navigationBarTitleText": "我的订单",
  193. "navigationStyle": "custom", // 隐藏系统导航栏
  194. // "enablePullDownRefresh": true,
  195. "app-plus": {
  196. "titleNView": false, //禁用原生导航栏
  197. "bounce": "none"
  198. }
  199. }
  200. },
  201. {
  202. "path": "invoice/index",
  203. "style": {
  204. "navigationBarTitleText": "发票申请",
  205. "navigationStyle": "custom", // 隐藏系统导航栏
  206. // "enablePullDownRefresh": true,
  207. "app-plus": {
  208. "titleNView": false, //禁用原生导航栏
  209. "bounce": "none"
  210. }
  211. }
  212. },
  213. {
  214. "path": "exam/index",
  215. "style": {
  216. "navigationBarTitleText": "我的考试",
  217. "navigationStyle": "custom", // 隐藏系统导航栏
  218. "app-plus": {
  219. "titleNView": false, //禁用原生导航栏
  220. "bounce": "none"
  221. }
  222. }
  223. },
  224. {
  225. "path": "exam/exam_appointment",
  226. "style": {
  227. "navigationBarTitleText": "考试预约",
  228. "navigationStyle": "custom", // 隐藏系统导航栏
  229. "app-plus": {
  230. "titleNView": false, //禁用原生导航栏
  231. "bounce": "none"
  232. }
  233. }
  234. },
  235. {
  236. "path": "exam/exam_result",
  237. "style": {
  238. "navigationBarTitleText": "考试成绩和证书",
  239. "navigationStyle": "custom", // 隐藏系统导航栏
  240. "app-plus": {
  241. "titleNView": false, //禁用原生导航栏
  242. "bounce": "none"
  243. }
  244. }
  245. },
  246. {
  247. "path": "wd/question_bank",
  248. "style": {
  249. "navigationBarTitleText": "我的题库通",
  250. "navigationStyle": "custom", // 隐藏系统导航栏
  251. "app-plus": {
  252. "titleNView": false, //禁用原生导航栏
  253. "bounce": "none"
  254. }
  255. }
  256. },
  257. {
  258. "path": "bank/my_question",
  259. "style": {
  260. "navigationBarTitleText": "我的题库",
  261. "navigationStyle": "custom", // 隐藏系统导航栏
  262. "app-plus": {
  263. "titleNView": false, //禁用原生导航栏
  264. "bounce": "none"
  265. }
  266. }
  267. },
  268. {
  269. "path": "bank/free_question",
  270. "style": {
  271. "navigationBarTitleText": "赠送题卷",
  272. "navigationStyle": "custom", // 隐藏系统导航栏
  273. "app-plus": {
  274. "titleNView": false, //禁用原生导航栏
  275. "bounce": "none"
  276. }
  277. }
  278. },
  279. {
  280. "path": "bank/question_record",
  281. "style": {
  282. "navigationBarTitleText": "做题记录",
  283. "navigationStyle": "custom", // 隐藏系统导航栏
  284. "enablePullDownRefresh":true,
  285. "app-plus": {
  286. "titleNView": false, //禁用原生导航栏
  287. "bounce": "none"
  288. }
  289. }
  290. },
  291. {
  292. "path": "bank/question_record_list",
  293. "style": {
  294. "navigationBarTitleText": "做题记录",
  295. "navigationStyle": "custom", // 隐藏系统导航栏
  296. "enablePullDownRefresh":true,
  297. "app-plus": {
  298. "titleNView": false, //禁用原生导航栏
  299. "bounce": "none"
  300. }
  301. }
  302. },
  303. {
  304. "path": "bank/detail",
  305. "style": {
  306. "navigationBarTitleText": "题库详情",
  307. "navigationStyle": "custom", // 隐藏系统导航栏
  308. "app-plus": {
  309. "titleNView": false, //禁用原生导航栏
  310. "bounce": "none"
  311. }
  312. }
  313. },
  314. {
  315. "path": "bank/question_detail",
  316. "style": {
  317. "navigationBarTitleText": "进入刷题",
  318. "navigationStyle": "custom", // 隐藏系统导航栏
  319. "app-plus": {
  320. "titleNView": false, //禁用原生导航栏
  321. "bounce": "none"
  322. }
  323. }
  324. },
  325. {
  326. "path": "msg/index",
  327. "style": {
  328. "enablePullDownRefresh":true,
  329. "navigationBarTitleText": "我的消息",
  330. "navigationStyle": "custom", // 隐藏系统导航栏
  331. "app-plus": {
  332. "titleNView": false, //禁用原生导航栏
  333. "bounce": "none"
  334. }
  335. }
  336. },
  337. {
  338. "path": "bank/question_statistics",
  339. "style": {
  340. "navigationBarTitleText": "做题统计",
  341. "navigationStyle": "custom", // 隐藏系统导航栏
  342. "app-plus": {
  343. "titleNView": false, //禁用原生导航栏
  344. "bounce": "none"
  345. }
  346. }
  347. },
  348. {
  349. "path": "bank/question_report",
  350. "style": {
  351. "navigationBarTitleText": "试卷报告",
  352. "navigationStyle": "custom", // 隐藏系统导航栏
  353. "app-plus": {
  354. "titleNView": false, //禁用原生导航栏
  355. "bounce": "none"
  356. }
  357. }
  358. },
  359. {
  360. "path": "bank/questionBank",
  361. "style": {
  362. "navigationBarTitleText": "试卷题目",
  363. "navigationStyle": "custom", // 隐藏系统导航栏
  364. "app-plus": {
  365. "titleNView": false, //禁用原生导航栏
  366. "bounce": "none"
  367. }
  368. }
  369. },
  370. {
  371. "path": "class/questionBank",
  372. "style": {
  373. "navigationBarTitleText": "试卷题目",
  374. "navigationStyle": "custom", // 隐藏系统导航栏
  375. "app-plus": {
  376. "titleNView": false, //禁用原生导航栏
  377. "bounce": "none"
  378. }
  379. }
  380. },
  381. {
  382. "path": "bank/questionBankExplain",
  383. "style": {
  384. "navigationBarTitleText": "解析",
  385. "navigationStyle": "custom", // 隐藏系统导航栏
  386. "app-plus": {
  387. "titleNView": false, //禁用原生导航栏
  388. "bounce": "none"
  389. }
  390. }
  391. },
  392. {
  393. "path": "bank/questionBankWrongExplain",
  394. "style": {
  395. "navigationBarTitleText": "错题解析",
  396. "navigationStyle": "custom", // 隐藏系统导航栏
  397. "app-plus": {
  398. "titleNView": false, //禁用原生导航栏
  399. "bounce": "none"
  400. }
  401. }
  402. },
  403. {
  404. "path": "bank/questionBankAllExplain",
  405. "style": {
  406. "navigationBarTitleText": "全部解析",
  407. "navigationStyle": "custom", // 隐藏系统导航栏
  408. "app-plus": {
  409. "titleNView": false, //禁用原生导航栏
  410. "bounce": "none"
  411. }
  412. }
  413. },
  414. {
  415. "path": "bank/questionBankContinue",
  416. "style": {
  417. "navigationBarTitleText": "试卷题目",
  418. "navigationStyle": "custom", // 隐藏系统导航栏
  419. "app-plus": {
  420. "titleNView": false, //禁用原生导航栏
  421. "bounce": "none"
  422. }
  423. }
  424. },
  425. {
  426. "path": "bank/questionBankExplainDetail",
  427. "style": {
  428. "navigationBarTitleText": "试卷解析",
  429. "navigationStyle": "custom", // 隐藏系统导航栏
  430. "app-plus": {
  431. "titleNView": false, //禁用原生导航栏
  432. "bounce": "none"
  433. }
  434. }
  435. },
  436. {
  437. "path": "bank/questionBankTest",
  438. "style": {
  439. "navigationBarTitleText": "试卷",
  440. "navigationStyle": "custom", // 隐藏系统导航栏
  441. "app-plus": {
  442. "titleNView": false, //禁用原生导航栏
  443. "bounce": "none"
  444. }
  445. }
  446. },
  447. {
  448. "path": "msg/detail",
  449. "style": {
  450. "navigationBarTitleText": "消息详情",
  451. "navigationStyle": "custom", // 隐藏系统导航栏
  452. "app-plus": {
  453. "titleNView": false, //禁用原生导航栏
  454. "bounce": "none"
  455. }
  456. }
  457. },
  458. {
  459. "path": "plan/index",
  460. "style": {
  461. "navigationBarTitleText": "学习计划",
  462. "navigationStyle": "custom", // 隐藏系统导航栏
  463. "app-plus": {
  464. "titleNView": false, //禁用原生导航栏
  465. "bounce": "none"
  466. }
  467. }
  468. },
  469. {
  470. "path": "plan/create",
  471. "style": {
  472. "navigationBarTitleText": "创建计划",
  473. "navigationStyle": "custom", // 隐藏系统导航栏
  474. "app-plus": {
  475. "titleNView": false, //禁用原生导航栏
  476. "bounce": "none"
  477. }
  478. }
  479. },
  480. {
  481. "path": "plan/edit",
  482. "style": {
  483. "navigationBarTitleText": "修改计划",
  484. "navigationStyle": "custom", // 隐藏系统导航栏
  485. "app-plus": {
  486. "titleNView": false, //禁用原生导航栏
  487. "bounce": "none"
  488. }
  489. }
  490. },
  491. {
  492. "path": "verify/input",
  493. "style": {
  494. "navigationBarTitleText": "填写审核资料",
  495. "navigationStyle": "custom", // 隐藏系统导航栏
  496. "app-plus": {
  497. "titleNView": false, //禁用原生导航栏
  498. "bounce": "none"
  499. }
  500. }
  501. },
  502. {
  503. "path": "verify/input2",
  504. "style": {
  505. "navigationBarTitleText": "填写审核资料",
  506. "navigationStyle": "custom", // 隐藏系统导航栏
  507. "app-plus": {
  508. "titleNView": false, //禁用原生导航栏
  509. "bounce": "none"
  510. }
  511. }
  512. },
  513. {
  514. "path": "appointment/index",
  515. "style": {
  516. "navigationBarTitleText": "预约考试",
  517. "navigationStyle": "custom", // 隐藏系统导航栏
  518. "app-plus": {
  519. "titleNView": false, //禁用原生导航栏
  520. "bounce": "none"
  521. }
  522. }
  523. },
  524. {
  525. "path": "appointment/order",
  526. "style": {
  527. "navigationBarTitleText": "预约考试",
  528. "navigationStyle": "custom", // 隐藏系统导航栏
  529. "app-plus": {
  530. "titleNView": false, //禁用原生导航栏
  531. "bounce": "none"
  532. }
  533. }
  534. },
  535. {
  536. "path": "appointment/kporder",
  537. "style": {
  538. "navigationBarTitleText": "考前培训预约考试",
  539. "navigationStyle": "custom", // 隐藏系统导航栏
  540. "app-plus": {
  541. "titleNView": false, //禁用原生导航栏
  542. "bounce": "none"
  543. }
  544. }
  545. },
  546. {
  547. "path": "appointment/appointment_success",
  548. "style": {
  549. "navigationBarTitleText": "预约成功",
  550. "app-plus": {
  551. "titleNView": false, //禁用原生导航栏
  552. "bounce": "none"
  553. }
  554. }
  555. },
  556. {
  557. "path": "subject/collectBank",
  558. "style": {
  559. "navigationBarTitleText": "试卷",
  560. "navigationStyle": "custom", // 隐藏系统导航栏
  561. "app-plus": {
  562. "titleNView": false, //禁用原生导航栏
  563. "bounce": "none"
  564. }
  565. }
  566. },
  567. {
  568. "path": "subject/wrongBank",
  569. "style": {
  570. "navigationBarTitleText": "错题",
  571. "navigationStyle": "custom", // 隐藏系统导航栏
  572. "app-plus": {
  573. "titleNView": false, //禁用原生导航栏
  574. "bounce": "none"
  575. }
  576. }
  577. },
  578. {
  579. "path": "subject/collectTypeBank",
  580. "style": {
  581. "navigationBarTitleText": "试卷",
  582. "navigationStyle": "custom", // 隐藏系统导航栏
  583. "app-plus": {
  584. "titleNView": false, //禁用原生导航栏
  585. "bounce": "none"
  586. }
  587. }
  588. },
  589. {
  590. "path": "subject/wrongTypeBank",
  591. "style": {
  592. "navigationBarTitleText": "试卷",
  593. "navigationStyle": "custom", // 隐藏系统导航栏
  594. "app-plus": {
  595. "titleNView": false, //禁用原生导航栏
  596. "bounce": "none"
  597. }
  598. }
  599. },
  600. {
  601. "path": "class/question_report",
  602. "style": {
  603. "navigationBarTitleText": "试卷报告",
  604. "navigationStyle": "custom", // 隐藏系统导航栏
  605. "app-plus": {
  606. "titleNView": false, //禁用原生导航栏
  607. "bounce": "none"
  608. }
  609. }
  610. },
  611. {
  612. "path": "subject/wrong",
  613. "style": {
  614. "navigationBarTitleText": "错题集",
  615. "navigationStyle": "custom", // 隐藏系统导航栏
  616. "app-plus": {
  617. "titleNView": false, //禁用原生导航栏
  618. "bounce": "none"
  619. }
  620. }
  621. },
  622. {
  623. "path": "bank/wrongById",
  624. "style": {
  625. "navigationBarTitleText": "错题集",
  626. "navigationStyle": "custom", // 隐藏系统导航栏
  627. "app-plus": {
  628. "titleNView": false, //禁用原生导航栏
  629. "bounce": "none"
  630. }
  631. }
  632. },
  633. {
  634. "path": "bank/collectById",
  635. "style": {
  636. "navigationBarTitleText": "收藏集",
  637. "navigationStyle": "custom", // 隐藏系统导航栏
  638. "app-plus": {
  639. "titleNView": false, //禁用原生导航栏
  640. "bounce": "none"
  641. }
  642. }
  643. },
  644. {
  645. "path": "subject/collect",
  646. "style": {
  647. "navigationBarTitleText": "收藏集",
  648. "navigationStyle": "custom", // 隐藏系统导航栏
  649. "app-plus": {
  650. "titleNView": false, //禁用原生导航栏
  651. "bounce": "none"
  652. }
  653. }
  654. },
  655. {
  656. "path": "learn/my_learn",
  657. "style": {
  658. "navigationBarTitleText": "我的学时",
  659. "navigationStyle": "custom", // 隐藏系统导航栏
  660. "app-plus": {
  661. "titleNView": false, //禁用原生导航栏
  662. "bounce": "none"
  663. }
  664. }
  665. },
  666. {
  667. "path": "learn/details",
  668. "style": {
  669. "navigationBarTitleText": "详情",
  670. "navigationStyle": "custom", // 隐藏系统导航栏
  671. "app-plus": {
  672. "titleNView": false, //禁用原生导航栏
  673. "bounce": "none"
  674. }
  675. }
  676. },
  677. {
  678. "path": "learn/menu",
  679. "style": {
  680. "navigationBarTitleText": "目录",
  681. "navigationStyle": "custom", // 隐藏系统导航栏
  682. "app-plus": {
  683. "titleNView": false, //禁用原生导航栏
  684. "bounce": "none"
  685. }
  686. }
  687. },
  688. {
  689. "path": "wd/course",
  690. "style": {
  691. "navigationBarTitleText": "所有课程",
  692. "navigationStyle": "custom", // 隐藏系统导航栏
  693. "app-plus": {
  694. "titleNView": false, //禁用原生导航栏
  695. "bounce": "none"
  696. }
  697. }
  698. }
  699. ]
  700. },{
  701. "root": "pages3",
  702. "pages": [{
  703. "path": "polyv/polyv",
  704. "style": {
  705. "navigationBarTitleText": "保利威直播",
  706. "app-plus": {
  707. "bounce": "none"
  708. },
  709. "mp-weixin": {
  710. "usingComponents": {
  711. "player": "/pages3/static/polyv-sdk/components/player/player"
  712. }
  713. }
  714. }
  715. },
  716. {
  717. "path": "polyv/detail",
  718. "style": {
  719. "navigationBarTitleText": "课程详情",
  720. "navigationStyle": "custom", // 隐藏系统导航栏
  721. "app-plus": {
  722. "titleNView": false, //禁用原生导航栏
  723. "bounce": "none"
  724. },
  725. "mp-weixin": {
  726. "usingComponents": {
  727. "player": "/pages3/static/polyv-sdk/components/player/player",
  728. "polyv-player": "plugin://polyv-player/player"
  729. }
  730. }
  731. }
  732. },
  733. {
  734. "path": "course/detail",
  735. "style": {
  736. "navigationBarTitleText": "课程详情",
  737. "navigationStyle": "custom", // 隐藏系统导航栏
  738. "app-plus": {
  739. "titleNView": false, //禁用原生导航栏
  740. "bounce": "none"
  741. },
  742. "mp-weixin": {
  743. "usingComponents": {
  744. "polyv-player": "plugin://polyv-player/player"
  745. }
  746. }
  747. }
  748. },{
  749. "path": "live/detail",
  750. "style": {
  751. "navigationBarTitleText": "商品详情",
  752. "navigationBarBackgroundColor": "#0386FD",
  753. "navigationBarTextStyle": "white",
  754. "navigationStyle": "custom", // 隐藏系统导航栏
  755. "app-plus": {
  756. "titleNView": false, //禁用原生导航栏
  757. "bounce": "none"
  758. },
  759. "mp-weixin": {
  760. "usingComponents": {
  761. "polyv-player": "plugin://polyv-player/player"
  762. }
  763. }
  764. }
  765. },{
  766. "path": "live/playback",
  767. "style": {
  768. "navigationBarTitleText": "回放视频",
  769. "navigationBarBackgroundColor": "#0386FD",
  770. "navigationBarTextStyle": "white",
  771. "navigationStyle": "custom", // 隐藏系统导航栏
  772. "app-plus": {
  773. "titleNView": false, //禁用原生导航栏
  774. "bounce": "none"
  775. },
  776. "mp-weixin": {
  777. "usingComponents": {
  778. "polyv-player": "plugin://polyv-player/player"
  779. }
  780. }
  781. }
  782. }],
  783. "plugins": {
  784. "polyv-player": {
  785. "version": "0.3.0",
  786. "provider": "wx4a350a258a6f7876"
  787. }
  788. }
  789. },{
  790. "root": "pages4",
  791. "pages": [{
  792. "path": "login/login",
  793. "style": {
  794. "navigationBarTitleText": "登录页",
  795. "navigationBarBackgroundColor": "#0386FD",
  796. "navigationBarTextStyle": "white",
  797. "navigationStyle": "custom", // 隐藏系统导航栏
  798. "app-plus": {
  799. "titleNView": false, //禁用原生导航栏
  800. "bounce": "none"
  801. }
  802. }
  803. }]
  804. },{
  805. "root": "pages5",
  806. "pages": [{
  807. "path": "exam/index",
  808. "style": {
  809. "navigationBarTitleText": "我的模考",
  810. "navigationBarBackgroundColor": "#0386FD",
  811. "navigationBarTextStyle": "white",
  812. "navigationStyle": "custom", // 隐藏系统导航栏
  813. "app-plus": {
  814. "titleNView": false, //禁用原生导航栏
  815. "bounce": "none"
  816. }
  817. }
  818. },{
  819. "path": "mockRecord/mock_record",
  820. "style": {
  821. "navigationBarTitleText": "模考记录",
  822. "navigationBarBackgroundColor": "#0386FD",
  823. "navigationBarTextStyle": "white",
  824. "navigationStyle": "custom", // 隐藏系统导航栏
  825. "app-plus": {
  826. "titleNView": false, //禁用原生导航栏
  827. "bounce": "none"
  828. }
  829. }
  830. },{
  831. "path": "mockRecord/mock_record_list",
  832. "style": {
  833. "navigationBarTitleText": "模考记录",
  834. "navigationBarBackgroundColor": "#0386FD",
  835. "navigationBarTextStyle": "white",
  836. "navigationStyle": "custom", // 隐藏系统导航栏
  837. "app-plus": {
  838. "titleNView": false, //禁用原生导航栏
  839. "bounce": "none"
  840. }
  841. }
  842. },{
  843. "path": "examCount/index",
  844. "style": {
  845. "navigationBarTitleText": "模拟考试",
  846. "navigationBarBackgroundColor": "#0386FD",
  847. "navigationBarTextStyle": "white",
  848. "navigationStyle": "custom", // 隐藏系统导航栏
  849. "app-plus": {
  850. "titleNView": false, //禁用原生导航栏
  851. "bounce": "none"
  852. }
  853. }
  854. },{
  855. "path": "liveDetail/index",
  856. "style": {
  857. "navigationBarTitleText": "商品详情",
  858. "navigationBarBackgroundColor": "#0386FD",
  859. "navigationBarTextStyle": "white",
  860. "navigationStyle": "custom", // 隐藏系统导航栏
  861. "app-plus": {
  862. "titleNView": false, //禁用原生导航栏
  863. "bounce": "none"
  864. }
  865. }
  866. },{
  867. "path": "liveDetail/list",
  868. "style": {
  869. "navigationBarTitleText": "直播课列表",
  870. "navigationBarBackgroundColor": "#0386FD",
  871. "navigationBarTextStyle": "white",
  872. "navigationStyle": "custom", // 隐藏系统导航栏
  873. "app-plus": {
  874. "titleNView": false, //禁用原生导航栏
  875. "bounce": "none"
  876. }
  877. }
  878. },{
  879. "path": "liveDetail/course",
  880. "style": {
  881. "navigationBarTitleText": "课程列表",
  882. "navigationBarBackgroundColor": "#0386FD",
  883. "navigationBarTextStyle": "white",
  884. "navigationStyle": "custom", // 隐藏系统导航栏
  885. "app-plus": {
  886. "titleNView": false, //禁用原生导航栏
  887. "bounce": "none"
  888. }
  889. }
  890. },{
  891. "path": "examList/index",
  892. "style": {
  893. "navigationBarTitleText": "我的模考",
  894. "navigationBarBackgroundColor": "#0386FD",
  895. "navigationBarTextStyle": "white",
  896. "navigationStyle": "custom", // 隐藏系统导航栏
  897. "app-plus": {
  898. "titleNView": false, //禁用原生导航栏
  899. "bounce": "none"
  900. }
  901. }
  902. },{
  903. "path": "examAppointList/index",
  904. "style": {
  905. "navigationBarTitleText": "模考预约",
  906. "navigationBarBackgroundColor": "#0386FD",
  907. "navigationBarTextStyle": "white",
  908. "navigationStyle": "custom", // 隐藏系统导航栏
  909. "app-plus": {
  910. "titleNView": false, //禁用原生导航栏
  911. "bounce": "none"
  912. }
  913. }
  914. },{
  915. "path": "examReport/index",
  916. "style": {
  917. "navigationBarTitleText": "试卷报告",
  918. "navigationBarBackgroundColor": "#0386FD",
  919. "navigationBarTextStyle": "white",
  920. "navigationStyle": "custom", // 隐藏系统导航栏
  921. "app-plus": {
  922. "titleNView": false, //禁用原生导航栏
  923. "bounce": "none"
  924. }
  925. }
  926. },{
  927. "path": "examReport/questionBankAllExplain",
  928. "style": {
  929. "navigationBarTitleText": "全部解析",
  930. "navigationBarBackgroundColor": "#0386FD",
  931. "navigationBarTextStyle": "white",
  932. "navigationStyle": "custom", // 隐藏系统导航栏
  933. "app-plus": {
  934. "titleNView": false, //禁用原生导航栏
  935. "bounce": "none"
  936. }
  937. }
  938. },{
  939. "path": "examReport/questionBankWrongExplain",
  940. "style": {
  941. "navigationBarTitleText": "错题解析",
  942. "navigationBarBackgroundColor": "#0386FD",
  943. "navigationBarTextStyle": "white",
  944. "navigationStyle": "custom", // 隐藏系统导航栏
  945. "app-plus": {
  946. "titleNView": false, //禁用原生导航栏
  947. "bounce": "none"
  948. }
  949. }
  950. },{
  951. "path": "examBank/index",
  952. "style": {
  953. "navigationBarTitleText": "模考",
  954. "navigationBarBackgroundColor": "#0386FD",
  955. "navigationBarTextStyle": "white",
  956. "navigationStyle": "custom", // 隐藏系统导航栏
  957. "app-plus": {
  958. "titleNView": false, //禁用原生导航栏
  959. "bounce": "none"
  960. }
  961. }
  962. },{
  963. "path": "liveList/index",
  964. "style": {
  965. "navigationBarTitleText": "模考讲解直播",
  966. "navigationBarBackgroundColor": "#0386FD",
  967. "navigationBarTextStyle": "white",
  968. "navigationStyle": "custom", // 隐藏系统导航栏
  969. "app-plus": {
  970. "titleNView": false, //禁用原生导航栏
  971. "bounce": "none"
  972. }
  973. }
  974. }]
  975. }],
  976. "preloadRule": {
  977. "pages/index/index": {
  978. "network": "all",
  979. "packages": []
  980. }
  981. },
  982. "globalStyle": {
  983. "navigationBarTextStyle": "black",
  984. "navigationBarTitleText": "WeChat",
  985. "navigationBarBackgroundColor": "#F8F8F8",
  986. "backgroundColor": "#F8F8F8",
  987. "usingComponents": {
  988. }
  989. },
  990. "tabBar": {
  991. "color": "#AAAAAA",
  992. "selectedColor": "#007AFF",
  993. "borderStyle": "black",
  994. "backgroundColor": "#fff",
  995. "list": [{
  996. "pagePath": "pages/index/index",
  997. "iconPath": "static/nav1.png",
  998. "selectedIconPath": "static/nav1_on.png",
  999. "text": "首页"
  1000. },
  1001. {
  1002. "pagePath": "pages/course/index",
  1003. "iconPath": "static/nav2.png",
  1004. "selectedIconPath": "static/nav2_on.png",
  1005. "text": "选课"
  1006. },
  1007. {
  1008. "pagePath": "pages/learn/index",
  1009. "iconPath": "static/nav2.png",
  1010. "selectedIconPath": "static/nav2_on.png",
  1011. "text": "学习"
  1012. },
  1013. {
  1014. "pagePath": "pages/shopping/shoppingCart",
  1015. "iconPath": "static/nav3.png",
  1016. "selectedIconPath": "static/nav3_on.png",
  1017. "text": "购物车"
  1018. },
  1019. {
  1020. "pagePath": "pages/wd/index",
  1021. "iconPath": "static/nav5.png",
  1022. "selectedIconPath": "static/nav5_on.png",
  1023. "text": "我的"
  1024. }
  1025. ]
  1026. },
  1027. "navigateToMiniProgramAppIdList": [
  1028. ""
  1029. ],
  1030. "easycom": {
  1031. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  1032. }
  1033. }