pages.json 29 KB

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