pages.json 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240
  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": false,
  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/information/index",
  66. "style": {
  67. "navigationBarTitleText": "资料",
  68. "navigationStyle": "custom", // 隐藏系统导航栏
  69. "app-plus": {
  70. "titleNView": false, //禁用原生导航栏
  71. "bounce": "none"
  72. }
  73. }
  74. }
  75. ],
  76. "subPackages": [{
  77. "root": "pages2",
  78. "pages": [{
  79. "path": "wd/info",
  80. "style": {
  81. "navigationBarTitleText": "我的资料",
  82. "navigationStyle": "custom", // 隐藏系统导航栏
  83. "app-plus": {
  84. "titleNView": false, //禁用原生导航栏
  85. "bounce": "none"
  86. }
  87. }
  88. },
  89. {
  90. "path": "wd/menu", //没有用到
  91. "style": {
  92. "navigationBarTitleText": "基本资料",
  93. "navigationStyle": "custom", // 隐藏系统导航栏
  94. "app-plus": {
  95. "titleNView": false, //禁用原生导航栏
  96. "bounce": "none"
  97. }
  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. {
  112. "path": "register/register",
  113. "style": {
  114. "navigationBarTitleText": "注册页",
  115. "navigationBarBackgroundColor": "#0386FD",
  116. "navigationStyle": "custom", // 隐藏系统导航栏
  117. "app-plus": {
  118. "titleNView": false, //禁用原生导航栏
  119. "bounce": "none"
  120. }
  121. }
  122. },
  123. {
  124. "path": "register/forget",
  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": "wd/class", //暂时不用
  137. "style": {
  138. "navigationBarTitleText": "我的网课",
  139. "navigationStyle": "custom", // 隐藏系统导航栏
  140. "app-plus": {
  141. "titleNView": false, //禁用原生导航栏
  142. "bounce": "none"
  143. }
  144. }
  145. },
  146. {
  147. "path": "order/confirm_list",
  148. "style": {
  149. "navigationBarTitleText": "确认订单",
  150. "navigationStyle": "custom", // 隐藏系统导航栏
  151. "app-plus": {
  152. "titleNView": false, //禁用原生导航栏
  153. "bounce": "none"
  154. }
  155. }
  156. },
  157. {
  158. "path": "order/confirm_pay",
  159. "style": {
  160. "navigationBarTitleText": "订单支付",
  161. "navigationStyle": "custom", // 隐藏系统导航栏
  162. "app-plus": {
  163. "titleNView": false, //禁用原生导航栏
  164. "bounce": "none"
  165. }
  166. }
  167. },
  168. {
  169. "path": "order/confirm_success",
  170. "style": {
  171. "navigationBarTitleText": "支付成功",
  172. "navigationStyle": "custom", // 隐藏系统导航栏
  173. "app-plus": {
  174. "titleNView": false, //禁用原生导航栏
  175. "bounce": "none"
  176. }
  177. }
  178. },
  179. {
  180. "path": "order/index",
  181. "style": {
  182. "navigationBarTitleText": "我的订单",
  183. "navigationStyle": "custom", // 隐藏系统导航栏
  184. // "enablePullDownRefresh": true,
  185. "app-plus": {
  186. "titleNView": false, //禁用原生导航栏
  187. "bounce": "none"
  188. }
  189. }
  190. },
  191. {
  192. "path": "invoice/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": "exam/index", // 暂时不用
  205. "style": {
  206. "navigationBarTitleText": "我的考试",
  207. "navigationStyle": "custom", // 隐藏系统导航栏
  208. "app-plus": {
  209. "titleNView": false, //禁用原生导航栏
  210. "bounce": "none"
  211. }
  212. }
  213. },
  214. {
  215. "path": "exam/exam_appointment",
  216. "style": {
  217. "navigationBarTitleText": "考试预约",
  218. "navigationStyle": "custom", // 隐藏系统导航栏
  219. "app-plus": {
  220. "titleNView": false, //禁用原生导航栏
  221. "bounce": "none"
  222. }
  223. }
  224. },
  225. {
  226. "path": "exam/signCommit",
  227. "style": {
  228. "navigationBarTitleText": "签署承诺书",
  229. "navigationStyle": "custom", // 隐藏系统导航栏
  230. "app-plus": {
  231. "titleNView": false, //禁用原生导航栏
  232. "bounce": "none"
  233. }
  234. }
  235. },
  236. {
  237. "path": "exam/exam_result",
  238. "style": {
  239. "navigationBarTitleText": "考试成绩和证书",
  240. "navigationStyle": "custom", // 隐藏系统导航栏
  241. "app-plus": {
  242. "titleNView": false, //禁用原生导航栏
  243. "bounce": "none"
  244. }
  245. }
  246. },
  247. {
  248. "path": "wd/question_bank",
  249. "style": {
  250. "navigationBarTitleText": "我的题库通",
  251. "navigationStyle": "custom", // 隐藏系统导航栏
  252. "app-plus": {
  253. "titleNView": false, //禁用原生导航栏
  254. "bounce": "none"
  255. }
  256. }
  257. },
  258. {
  259. "path": "wd/stuff",
  260. "style": {
  261. "navigationBarTitleText": "我的资料",
  262. "navigationStyle": "custom", // 隐藏系统导航栏
  263. "app-plus": {
  264. "titleNView": false, //禁用原生导航栏
  265. "bounce": "none"
  266. }
  267. }
  268. },
  269. {
  270. "path": "bank/my_question",
  271. "style": {
  272. "navigationBarTitleText": "我的题库",
  273. "navigationStyle": "custom", // 隐藏系统导航栏
  274. "app-plus": {
  275. "titleNView": false, //禁用原生导航栏
  276. "bounce": "none"
  277. }
  278. }
  279. },
  280. {
  281. "path": "bank/free_question",
  282. "style": {
  283. "navigationBarTitleText": "赠送题卷",
  284. "navigationStyle": "custom", // 隐藏系统导航栏
  285. "app-plus": {
  286. "titleNView": false, //禁用原生导航栏
  287. "bounce": "none"
  288. }
  289. }
  290. },
  291. {
  292. "path": "bank/question_record",
  293. "style": {
  294. "navigationBarTitleText": "做题记录",
  295. "navigationStyle": "custom", // 隐藏系统导航栏
  296. "enablePullDownRefresh": true,
  297. "app-plus": {
  298. "titleNView": false, //禁用原生导航栏
  299. "bounce": "none"
  300. }
  301. }
  302. },
  303. {
  304. "path": "bank/question_record_list",
  305. "style": {
  306. "navigationBarTitleText": "做题记录",
  307. "navigationStyle": "custom", // 隐藏系统导航栏
  308. "enablePullDownRefresh": true,
  309. "app-plus": {
  310. "titleNView": false, //禁用原生导航栏
  311. "bounce": "none"
  312. }
  313. }
  314. },
  315. {
  316. "path": "bank/detail",
  317. "style": {
  318. "navigationBarTitleText": "题库详情",
  319. "navigationStyle": "custom", // 隐藏系统导航栏
  320. "app-plus": {
  321. "titleNView": false, //禁用原生导航栏
  322. "bounce": "none"
  323. }
  324. }
  325. },
  326. {
  327. "path": "bank/question_detail",
  328. "style": {
  329. "navigationBarTitleText": "进入刷题",
  330. "navigationStyle": "custom", // 隐藏系统导航栏
  331. "app-plus": {
  332. "titleNView": false, //禁用原生导航栏
  333. "bounce": "none"
  334. }
  335. }
  336. },
  337. {
  338. "path": "msg/index",
  339. "style": {
  340. "enablePullDownRefresh": true,
  341. "navigationBarTitleText": "我的消息",
  342. "navigationStyle": "custom", // 隐藏系统导航栏
  343. "app-plus": {
  344. "titleNView": false, //禁用原生导航栏
  345. "bounce": "none"
  346. }
  347. }
  348. },
  349. {
  350. "path": "bank/question_statistics",
  351. "style": {
  352. "navigationBarTitleText": "做题统计",
  353. "navigationStyle": "custom", // 隐藏系统导航栏
  354. "app-plus": {
  355. "titleNView": false, //禁用原生导航栏
  356. "bounce": "none"
  357. }
  358. }
  359. },
  360. {
  361. "path": "bank/question_report",
  362. "style": {
  363. "navigationBarTitleText": "试卷报告",
  364. "navigationStyle": "custom", // 隐藏系统导航栏
  365. "app-plus": {
  366. "titleNView": false, //禁用原生导航栏
  367. "bounce": "none"
  368. }
  369. }
  370. },
  371. {
  372. "path": "bank/questionBank",
  373. "style": {
  374. "navigationBarTitleText": "试卷题目",
  375. "navigationStyle": "custom", // 隐藏系统导航栏
  376. "app-plus": {
  377. "titleNView": false, //禁用原生导航栏
  378. "bounce": "none"
  379. }
  380. }
  381. },
  382. {
  383. "path": "class/questionBank",
  384. "style": {
  385. "navigationBarTitleText": "试卷题目",
  386. "navigationStyle": "custom", // 隐藏系统导航栏
  387. "app-plus": {
  388. "titleNView": false, //禁用原生导航栏
  389. "bounce": "none"
  390. }
  391. }
  392. },
  393. {
  394. "path": "bank/questionBankExplain",
  395. "style": {
  396. "navigationBarTitleText": "解析",
  397. "navigationStyle": "custom", // 隐藏系统导航栏
  398. "app-plus": {
  399. "titleNView": false, //禁用原生导航栏
  400. "bounce": "none"
  401. }
  402. }
  403. },
  404. {
  405. "path": "bank/questionBankWrongExplain",
  406. "style": {
  407. "navigationBarTitleText": "错题解析",
  408. "navigationStyle": "custom", // 隐藏系统导航栏
  409. "app-plus": {
  410. "titleNView": false, //禁用原生导航栏
  411. "bounce": "none"
  412. }
  413. }
  414. },
  415. {
  416. "path": "bank/questionBankAllExplain",
  417. "style": {
  418. "navigationBarTitleText": "全部解析",
  419. "navigationStyle": "custom", // 隐藏系统导航栏
  420. "app-plus": {
  421. "titleNView": false, //禁用原生导航栏
  422. "bounce": "none"
  423. }
  424. }
  425. },
  426. {
  427. "path": "bank/questionBankContinue",
  428. "style": {
  429. "navigationBarTitleText": "试卷题目",
  430. "navigationStyle": "custom", // 隐藏系统导航栏
  431. "app-plus": {
  432. "titleNView": false, //禁用原生导航栏
  433. "bounce": "none"
  434. }
  435. }
  436. },
  437. {
  438. "path": "bank/questionBankExplainDetail",
  439. "style": {
  440. "navigationBarTitleText": "试卷解析",
  441. "navigationStyle": "custom", // 隐藏系统导航栏
  442. "app-plus": {
  443. "titleNView": false, //禁用原生导航栏
  444. "bounce": "none"
  445. }
  446. }
  447. },
  448. {
  449. "path": "bank/questionBankTest",
  450. "style": {
  451. "navigationBarTitleText": "试卷",
  452. "navigationStyle": "custom", // 隐藏系统导航栏
  453. "app-plus": {
  454. "titleNView": false, //禁用原生导航栏
  455. "bounce": "none"
  456. }
  457. }
  458. },
  459. {
  460. "path": "msg/detail",
  461. "style": {
  462. "navigationBarTitleText": "消息详情",
  463. "navigationStyle": "custom", // 隐藏系统导航栏
  464. "app-plus": {
  465. "titleNView": false, //禁用原生导航栏
  466. "bounce": "none"
  467. }
  468. }
  469. },
  470. {
  471. "path": "plan/index",
  472. "style": {
  473. "navigationBarTitleText": "学习计划",
  474. "navigationStyle": "custom", // 隐藏系统导航栏
  475. "app-plus": {
  476. "titleNView": false, //禁用原生导航栏
  477. "bounce": "none"
  478. }
  479. }
  480. },
  481. {
  482. "path": "plan/create",
  483. "style": {
  484. "navigationBarTitleText": "创建计划",
  485. "navigationStyle": "custom", // 隐藏系统导航栏
  486. "app-plus": {
  487. "titleNView": false, //禁用原生导航栏
  488. "bounce": "none"
  489. }
  490. }
  491. },
  492. {
  493. "path": "plan/edit",
  494. "style": {
  495. "navigationBarTitleText": "修改计划",
  496. "navigationStyle": "custom", // 隐藏系统导航栏
  497. "app-plus": {
  498. "titleNView": false, //禁用原生导航栏
  499. "bounce": "none"
  500. }
  501. }
  502. },
  503. {
  504. "path": "verify/input",
  505. "style": {
  506. "navigationBarTitleText": "填写审核资料",
  507. "navigationStyle": "custom", // 隐藏系统导航栏
  508. "app-plus": {
  509. "titleNView": false, //禁用原生导航栏
  510. "bounce": "none"
  511. }
  512. }
  513. },
  514. {
  515. "path": "verify/input2",
  516. "style": {
  517. "navigationBarTitleText": "填写审核资料",
  518. "navigationStyle": "custom", // 隐藏系统导航栏
  519. "app-plus": {
  520. "titleNView": false, //禁用原生导航栏
  521. "bounce": "none"
  522. }
  523. }
  524. },
  525. {
  526. "path": "verify/info_fill",
  527. "style": {
  528. "navigationBarTitleText": "填写资料",
  529. "navigationStyle": "custom", // 隐藏系统导航栏
  530. "app-plus": {
  531. "titleNView": false, //禁用原生导航栏
  532. "bounce": "none"
  533. }
  534. }
  535. },
  536. {
  537. "path": "appointment/index",
  538. "style": {
  539. "navigationBarTitleText": "预约考试",
  540. "navigationStyle": "custom", // 隐藏系统导航栏
  541. "app-plus": {
  542. "titleNView": false, //禁用原生导航栏
  543. "bounce": "none"
  544. }
  545. }
  546. },
  547. {
  548. "path": "appointment/order",
  549. "style": {
  550. "navigationBarTitleText": "预约考试",
  551. "navigationStyle": "custom", // 隐藏系统导航栏
  552. "app-plus": {
  553. "titleNView": false, //禁用原生导航栏
  554. "bounce": "none"
  555. }
  556. }
  557. },
  558. {
  559. "path": "appointment/kporder",
  560. "style": {
  561. "navigationBarTitleText": "考前培训预约考试",
  562. "navigationStyle": "custom", // 隐藏系统导航栏
  563. "app-plus": {
  564. "titleNView": false, //禁用原生导航栏
  565. "bounce": "none"
  566. }
  567. }
  568. },
  569. {
  570. "path": "appointment/appointment_success",
  571. "style": {
  572. "navigationBarTitleText": "预约成功",
  573. "app-plus": {
  574. "titleNView": false, //禁用原生导航栏
  575. "bounce": "none"
  576. }
  577. }
  578. },
  579. {
  580. "path": "subject/collectBank",
  581. "style": {
  582. "navigationBarTitleText": "试卷",
  583. "navigationStyle": "custom", // 隐藏系统导航栏
  584. "app-plus": {
  585. "titleNView": false, //禁用原生导航栏
  586. "bounce": "none"
  587. }
  588. }
  589. },
  590. {
  591. "path": "subject/wrongBank",
  592. "style": {
  593. "navigationBarTitleText": "错题",
  594. "navigationStyle": "custom", // 隐藏系统导航栏
  595. "app-plus": {
  596. "titleNView": false, //禁用原生导航栏
  597. "bounce": "none"
  598. }
  599. }
  600. },
  601. {
  602. "path": "subject/collectTypeBank",
  603. "style": {
  604. "navigationBarTitleText": "试卷",
  605. "navigationStyle": "custom", // 隐藏系统导航栏
  606. "app-plus": {
  607. "titleNView": false, //禁用原生导航栏
  608. "bounce": "none"
  609. }
  610. }
  611. },
  612. {
  613. "path": "subject/wrongTypeBank",
  614. "style": {
  615. "navigationBarTitleText": "试卷",
  616. "navigationStyle": "custom", // 隐藏系统导航栏
  617. "app-plus": {
  618. "titleNView": false, //禁用原生导航栏
  619. "bounce": "none"
  620. }
  621. }
  622. },
  623. {
  624. "path": "class/question_report",
  625. "style": {
  626. "navigationBarTitleText": "试卷报告",
  627. "navigationStyle": "custom", // 隐藏系统导航栏
  628. "app-plus": {
  629. "titleNView": false, //禁用原生导航栏
  630. "bounce": "none"
  631. }
  632. }
  633. },
  634. {
  635. "path": "subject/wrong",
  636. "style": {
  637. "navigationBarTitleText": "错题集",
  638. "navigationStyle": "custom", // 隐藏系统导航栏
  639. "app-plus": {
  640. "titleNView": false, //禁用原生导航栏
  641. "bounce": "none"
  642. }
  643. }
  644. },
  645. {
  646. "path": "bank/wrongById",
  647. "style": {
  648. "navigationBarTitleText": "错题集",
  649. "navigationStyle": "custom", // 隐藏系统导航栏
  650. "app-plus": {
  651. "titleNView": false, //禁用原生导航栏
  652. "bounce": "none"
  653. }
  654. }
  655. },
  656. {
  657. "path": "bank/collectById",
  658. "style": {
  659. "navigationBarTitleText": "收藏集",
  660. "navigationStyle": "custom", // 隐藏系统导航栏
  661. "app-plus": {
  662. "titleNView": false, //禁用原生导航栏
  663. "bounce": "none"
  664. }
  665. }
  666. },
  667. {
  668. "path": "subject/collect",
  669. "style": {
  670. "navigationBarTitleText": "收藏集",
  671. "navigationStyle": "custom", // 隐藏系统导航栏
  672. "app-plus": {
  673. "titleNView": false, //禁用原生导航栏
  674. "bounce": "none"
  675. }
  676. }
  677. },
  678. {
  679. "path": "learn/my_learn",
  680. "style": {
  681. "navigationBarTitleText": "我的学时",
  682. "navigationStyle": "custom", // 隐藏系统导航栏
  683. "app-plus": {
  684. "titleNView": false, //禁用原生导航栏
  685. "bounce": "none"
  686. }
  687. }
  688. },
  689. {
  690. "path": "learn/details",
  691. "style": {
  692. "navigationBarTitleText": "详情",
  693. "navigationStyle": "custom", // 隐藏系统导航栏
  694. "app-plus": {
  695. "titleNView": false, //禁用原生导航栏
  696. "bounce": "none"
  697. }
  698. }
  699. },
  700. {
  701. "path": "learn/menu",
  702. "style": {
  703. "navigationBarTitleText": "目录",
  704. "navigationStyle": "custom", // 隐藏系统导航栏
  705. "app-plus": {
  706. "titleNView": false, //禁用原生导航栏
  707. "bounce": "none"
  708. }
  709. }
  710. },
  711. {
  712. "path": "wd/course",
  713. "style": {
  714. "navigationBarTitleText": "所有课程",
  715. "navigationStyle": "custom", // 隐藏系统导航栏
  716. "app-plus": {
  717. "titleNView": false, //禁用原生导航栏
  718. "bounce": "none"
  719. }
  720. }
  721. },
  722. {
  723. "path": "dailyPractice/index",
  724. "style": {
  725. "navigationBarTitleText": "每日一练",
  726. "navigationStyle": "custom", // 隐藏系统导航栏
  727. "app-plus": {
  728. "titleNView": false, //禁用原生导航栏
  729. "bounce": "none"
  730. }
  731. }
  732. },
  733. {
  734. "path": "randomPractice/index",
  735. "style": {
  736. "navigationBarTitleText": "随机练习",
  737. "navigationStyle": "custom", // 隐藏系统导航栏
  738. "app-plus": {
  739. "titleNView": false, //禁用原生导航栏
  740. "bounce": "none"
  741. }
  742. }
  743. }
  744. ]
  745. },
  746. {
  747. "root": "pages3",
  748. "pages": [{
  749. "path": "polyv/polyv", // 没用用到
  750. "style": {
  751. "navigationBarTitleText": "保利威直播",
  752. "app-plus": {
  753. "bounce": "none"
  754. },
  755. "mp-weixin": {
  756. "usingComponents": {
  757. "player": "/pages3/static/polyv-sdk/components/player/player"
  758. }
  759. }
  760. }
  761. },
  762. {
  763. "path": "polyv/detail",
  764. "style": {
  765. "navigationBarTitleText": "课程详情",
  766. "navigationStyle": "custom", // 隐藏系统导航栏
  767. "app-plus": {
  768. "titleNView": false, //禁用原生导航栏
  769. "bounce": "none"
  770. },
  771. "mp-weixin": {
  772. "usingComponents": {
  773. "player": "/pages3/static/polyv-sdk/components/player/player",
  774. "polyv-player": "plugin://polyv-player/player"
  775. }
  776. }
  777. }
  778. },
  779. {
  780. "path": "polyv/preference",
  781. "style": {
  782. "navigationBarTitleText": "课程内容选择",
  783. "navigationStyle": "custom", // 隐藏系统导航栏
  784. "app-plus": {
  785. "titleNView": false, //禁用原生导航栏
  786. "bounce": "none"
  787. }
  788. }
  789. },
  790. {
  791. "path": "course/detail",
  792. "style": {
  793. "navigationBarTitleText": "课程详情",
  794. "navigationStyle": "custom", // 隐藏系统导航栏
  795. "app-plus": {
  796. "titleNView": false, //禁用原生导航栏
  797. "bounce": "none"
  798. },
  799. "mp-weixin": {
  800. "usingComponents": {
  801. "polyv-player": "plugin://polyv-player/player"
  802. }
  803. }
  804. }
  805. },
  806. {
  807. "path": "course/jydetail",
  808. "style": {
  809. "navigationBarTitleText": "祥粤云学堂",
  810. "navigationStyle": "custom", // 隐藏系统导航栏
  811. "app-plus": {
  812. "titleNView": false, //禁用原生导航栏
  813. "bounce": "none"
  814. },
  815. "mp-weixin": {
  816. "usingComponents": {
  817. "polyv-player": "plugin://polyv-player/player"
  818. }
  819. }
  820. }
  821. },
  822. {
  823. "path": "live/detail",
  824. "style": {
  825. "navigationBarTitleText": "商品详情",
  826. "navigationBarBackgroundColor": "#0386FD",
  827. "navigationStyle": "custom", // 隐藏系统导航栏
  828. "app-plus": {
  829. "titleNView": false, //禁用原生导航栏
  830. "bounce": "none"
  831. },
  832. "mp-weixin": {
  833. "usingComponents": {
  834. "polyv-player": "plugin://polyv-player/player"
  835. }
  836. }
  837. }
  838. },
  839. {
  840. "path": "live/playback",
  841. "style": {
  842. "navigationBarTitleText": "回放视频",
  843. "navigationBarBackgroundColor": "#0386FD",
  844. "navigationStyle": "custom", // 隐藏系统导航栏
  845. "app-plus": {
  846. "titleNView": false, //禁用原生导航栏
  847. "bounce": "none"
  848. },
  849. "mp-weixin": {
  850. "usingComponents": {
  851. "polyv-player": "plugin://polyv-player/player"
  852. }
  853. }
  854. }
  855. }
  856. ],
  857. "plugins": {
  858. "polyv-player": {
  859. "version": "0.3.0",
  860. "provider": "wx4a350a258a6f7876"
  861. }
  862. }
  863. },
  864. {
  865. "root": "pages4",
  866. "pages": [{
  867. "path": "login/login",
  868. "style": {
  869. "navigationBarTitleText": "登录页",
  870. "navigationBarBackgroundColor": "#0386FD",
  871. "navigationStyle": "custom", // 隐藏系统导航栏
  872. "app-plus": {
  873. "titleNView": false, //禁用原生导航栏
  874. "bounce": "none"
  875. }
  876. }
  877. },
  878. {
  879. "path": "login/pcLogin",
  880. "style": {
  881. "navigationBarTitleText": "pc登录页",
  882. "navigationBarBackgroundColor": "#0386FD",
  883. "navigationStyle": "custom", // 隐藏系统导航栏
  884. "app-plus": {
  885. "titleNView": false, //禁用原生导航栏
  886. "bounce": "none"
  887. }
  888. }
  889. },
  890. {
  891. "path": "login/pcLoginSuccess",
  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. "path": "exam/index",
  919. "style": {
  920. "navigationBarTitleText": "我的模考",
  921. "navigationBarBackgroundColor": "#0386FD",
  922. "navigationStyle": "custom", // 隐藏系统导航栏
  923. "app-plus": {
  924. "titleNView": false, //禁用原生导航栏
  925. "bounce": "none"
  926. }
  927. }
  928. },
  929. {
  930. "path": "counselor/index",
  931. "style": {
  932. "navigationBarTitleText": "课程顾问",
  933. "navigationBarBackgroundColor": "#007aff",
  934. "navigationBarTextStyle": "white",
  935. "navigationStyle": "default" // 隐藏系统导航栏
  936. // "app-plus": {
  937. // "titleNView": false, //禁用原生导航栏
  938. // "bounce": "none"
  939. // }
  940. }
  941. },
  942. {
  943. "path": "webview/index",
  944. "style": {
  945. "navigationBarTitleText": "网页",
  946. "navigationStyle": "custom", // 隐藏系统导航栏
  947. "app-plus": {
  948. "titleNView": false, //禁用原生导航栏
  949. "bounce": "none"
  950. }
  951. }
  952. },
  953. {
  954. "path": "webview/sdlink",
  955. "style": {
  956. "navigationBarTitleText": "网页",
  957. "navigationStyle": "custom", // 隐藏系统导航栏
  958. "app-plus": {
  959. "titleNView": false, //禁用原生导航栏
  960. "bounce": "none"
  961. }
  962. }
  963. },
  964. {
  965. "path": "webview/detaillink",
  966. "style": {
  967. "navigationBarTitleText": "课程详情",
  968. "navigationStyle": "custom", // 隐藏系统导航栏
  969. "app-plus": {
  970. "titleNView": false, //禁用原生导航栏
  971. "bounce": "none"
  972. },
  973. "mp-weixin": {
  974. "pageOrientation": "auto"
  975. } //横屏
  976. }
  977. },
  978. {
  979. "path": "mockRecord/mock_record",
  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": "mockRecord/mock_record_list", // 没有用到
  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": "examCount/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": "liveDetail/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": "liveDetail/list", // 暂时不用
  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": "liveDetail/course",
  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": "examList/index",
  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": "examAppointList/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": "examReport/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": "examReport/questionBankAllExplain",
  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": "examReport/questionBankWrongExplain",
  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": "examBank/index",
  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": "liveList/index",
  1124. "style": {
  1125. "navigationBarTitleText": "模考讲解直播",
  1126. "navigationBarBackgroundColor": "#0386FD",
  1127. "navigationStyle": "custom", // 隐藏系统导航栏
  1128. "app-plus": {
  1129. "titleNView": false, //禁用原生导航栏
  1130. "bounce": "none"
  1131. }
  1132. }
  1133. },
  1134. {
  1135. "path": "mockExam/examApply",
  1136. "style": {
  1137. "navigationBarTitleText": "模考报名",
  1138. "navigationBarBackgroundColor": "#0386FD",
  1139. "navigationStyle": "custom", // 隐藏系统导航栏
  1140. "app-plus": {
  1141. "titleNView": false, //禁用原生导航栏
  1142. "bounce": "none"
  1143. }
  1144. }
  1145. },
  1146. {
  1147. "path": "mockExam/registrationSuccess",
  1148. "style": {
  1149. "navigationBarTitleText": "模考报名成功",
  1150. "navigationBarBackgroundColor": "#0386FD",
  1151. "navigationStyle": "custom", // 隐藏系统导航栏
  1152. "app-plus": {
  1153. "titleNView": false, //禁用原生导航栏
  1154. "bounce": "none"
  1155. }
  1156. }
  1157. },
  1158. {
  1159. "path": "scan/recommen",
  1160. "style": {
  1161. "navigationBarTitleText": "课程列表",
  1162. "navigationBarBackgroundColor": "#0386FD",
  1163. "navigationStyle": "custom", // 隐藏系统导航栏
  1164. "app-plus": {
  1165. "titleNView": false, //禁用原生导航栏
  1166. "bounce": "none"
  1167. }
  1168. }
  1169. },
  1170. {
  1171. "path": "scan/retailact",
  1172. "style": {
  1173. "navigationBarTitleText": "课程列表",
  1174. "navigationBarBackgroundColor": "#0386FD",
  1175. "navigationStyle": "custom", // 隐藏系统导航栏
  1176. "app-plus": {
  1177. "titleNView": false, //禁用原生导航栏
  1178. "bounce": "none"
  1179. }
  1180. }
  1181. },
  1182. {
  1183. "path": "scan/packPage",
  1184. "style": {
  1185. "navigationBarTitleText": "活动",
  1186. "navigationBarBackgroundColor": "#0386FD",
  1187. "navigationStyle": "custom", // 隐藏系统导航栏
  1188. "app-plus": {
  1189. "titleNView": false, //禁用原生导航栏
  1190. "bounce": "none"
  1191. }
  1192. }
  1193. }
  1194. ]
  1195. }
  1196. ],
  1197. "preloadRule": {
  1198. "pages/index/index": {
  1199. "network": "all",
  1200. "packages": []
  1201. }
  1202. },
  1203. "globalStyle": {
  1204. "navigationBarTextStyle": "black",
  1205. "navigationBarTitleText": "WeChat",
  1206. "navigationBarBackgroundColor": "#F8F8F8",
  1207. "backgroundColor": "#F8F8F8",
  1208. "usingComponents": {
  1209. // #ifdef MP-WEIXIN
  1210. "polyv-player": "plugin://polyv-player/player"
  1211. // #endif
  1212. }
  1213. },
  1214. "tabBar": {
  1215. "color": "#AAAAAA",
  1216. "selectedColor": "#222",
  1217. "borderStyle": "black",
  1218. "backgroundColor": "#fff",
  1219. "list": [{
  1220. "pagePath": "pages/index/index"
  1221. },
  1222. {
  1223. "pagePath": "pages/course/index"
  1224. },
  1225. {
  1226. "pagePath": "pages/learn/index"
  1227. },
  1228. {
  1229. "pagePath": "pages/questionBank/index"
  1230. },
  1231. {
  1232. "pagePath": "pages/wd/index"
  1233. }
  1234. ]
  1235. },
  1236. "navigateToMiniProgramAppIdList": [""],
  1237. "easycom": {
  1238. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  1239. }
  1240. }