pages.json 32 KB

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