pages.json 27 KB

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