pages.json 35 KB

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