pages.json 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193
  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": "course/jydetail",
  811. "style": {
  812. "navigationBarTitleText": "祥粤云学堂",
  813. "navigationStyle": "custom", // 隐藏系统导航栏
  814. "app-plus": {
  815. "titleNView": false, //禁用原生导航栏
  816. "bounce": "none"
  817. },
  818. "mp-weixin": {
  819. "usingComponents": {
  820. "polyv-player": "plugin://polyv-player/player"
  821. }
  822. }
  823. }
  824. },
  825. {
  826. "path": "live/detail",
  827. "style": {
  828. "navigationBarTitleText": "商品详情",
  829. "navigationBarBackgroundColor": "#0386FD",
  830. "navigationStyle": "custom", // 隐藏系统导航栏
  831. "app-plus": {
  832. "titleNView": false, //禁用原生导航栏
  833. "bounce": "none"
  834. },
  835. "mp-weixin": {
  836. "usingComponents": {
  837. "polyv-player": "plugin://polyv-player/player"
  838. }
  839. }
  840. }
  841. },
  842. {
  843. "path": "live/playback",
  844. "style": {
  845. "navigationBarTitleText": "回放视频",
  846. "navigationBarBackgroundColor": "#0386FD",
  847. "navigationStyle": "custom", // 隐藏系统导航栏
  848. "app-plus": {
  849. "titleNView": false, //禁用原生导航栏
  850. "bounce": "none"
  851. },
  852. "mp-weixin": {
  853. "usingComponents": {
  854. "polyv-player": "plugin://polyv-player/player"
  855. }
  856. }
  857. }
  858. }
  859. ],
  860. "plugins": {
  861. "polyv-player": {
  862. "version": "0.3.0",
  863. "provider": "wx4a350a258a6f7876"
  864. }
  865. }
  866. },
  867. {
  868. "root": "pages4",
  869. "pages": [
  870. {
  871. "path": "login/login",
  872. "style": {
  873. "navigationBarTitleText": "登录页",
  874. "navigationBarBackgroundColor": "#0386FD",
  875. "navigationStyle": "custom", // 隐藏系统导航栏
  876. "app-plus": {
  877. "titleNView": false, //禁用原生导航栏
  878. "bounce": "none"
  879. }
  880. }
  881. },
  882. {
  883. "path": "login/pcLogin",
  884. "style": {
  885. "navigationBarTitleText": "pc登录页",
  886. "navigationBarBackgroundColor": "#0386FD",
  887. "navigationStyle": "custom", // 隐藏系统导航栏
  888. "app-plus": {
  889. "titleNView": false, //禁用原生导航栏
  890. "bounce": "none"
  891. }
  892. }
  893. },
  894. {
  895. "path": "login/pcLoginSuccess",
  896. "style": {
  897. "navigationBarTitleText": "登录成功",
  898. "navigationBarBackgroundColor": "#0386FD",
  899. "navigationStyle": "custom", // 隐藏系统导航栏
  900. "app-plus": {
  901. "titleNView": false, //禁用原生导航栏
  902. "bounce": "none"
  903. }
  904. }
  905. },
  906. {
  907. "path": "shopping/shoppingCart",
  908. "style": {
  909. "navigationBarTitleText": "购物车",
  910. "navigationStyle": "custom", // 隐藏系统导航栏
  911. "app-plus": {
  912. "titleNView": false, //禁用原生导航栏
  913. "bounce": "none"
  914. }
  915. }
  916. }
  917. ]
  918. },
  919. {
  920. "root": "pages5",
  921. "pages": [
  922. {
  923. "path": "exam/index",
  924. "style": {
  925. "navigationBarTitleText": "我的模考",
  926. "navigationBarBackgroundColor": "#0386FD",
  927. "navigationStyle": "custom", // 隐藏系统导航栏
  928. "app-plus": {
  929. "titleNView": false, //禁用原生导航栏
  930. "bounce": "none"
  931. }
  932. }
  933. },
  934. {
  935. "path": "mockRecord/mock_record",
  936. "style": {
  937. "navigationBarTitleText": "模考记录",
  938. "navigationBarBackgroundColor": "#0386FD",
  939. "navigationStyle": "custom", // 隐藏系统导航栏
  940. "app-plus": {
  941. "titleNView": false, //禁用原生导航栏
  942. "bounce": "none"
  943. }
  944. }
  945. },
  946. {
  947. "path": "mockRecord/mock_record_list", // 没有用到
  948. "style": {
  949. "navigationBarTitleText": "模考记录",
  950. "navigationBarBackgroundColor": "#0386FD",
  951. "navigationStyle": "custom", // 隐藏系统导航栏
  952. "app-plus": {
  953. "titleNView": false, //禁用原生导航栏
  954. "bounce": "none"
  955. }
  956. }
  957. },
  958. {
  959. "path": "examCount/index",
  960. "style": {
  961. "navigationBarTitleText": "模拟考试",
  962. "navigationBarBackgroundColor": "#0386FD",
  963. "navigationStyle": "custom", // 隐藏系统导航栏
  964. "app-plus": {
  965. "titleNView": false, //禁用原生导航栏
  966. "bounce": "none"
  967. }
  968. }
  969. },
  970. {
  971. "path": "liveDetail/index",
  972. "style": {
  973. "navigationBarTitleText": "商品详情",
  974. "navigationBarBackgroundColor": "#0386FD",
  975. "navigationStyle": "custom", // 隐藏系统导航栏
  976. "app-plus": {
  977. "titleNView": false, //禁用原生导航栏
  978. "bounce": "none"
  979. }
  980. }
  981. },
  982. {
  983. "path": "liveDetail/list", // 暂时不用
  984. "style": {
  985. "navigationBarTitleText": "直播课列表",
  986. "navigationBarBackgroundColor": "#0386FD",
  987. "navigationStyle": "custom", // 隐藏系统导航栏
  988. "app-plus": {
  989. "titleNView": false, //禁用原生导航栏
  990. "bounce": "none"
  991. }
  992. }
  993. },
  994. {
  995. "path": "liveDetail/course",
  996. "style": {
  997. "navigationBarTitleText": "课程列表",
  998. "navigationBarBackgroundColor": "#0386FD",
  999. "navigationStyle": "custom", // 隐藏系统导航栏
  1000. "app-plus": {
  1001. "titleNView": false, //禁用原生导航栏
  1002. "bounce": "none"
  1003. }
  1004. }
  1005. },
  1006. {
  1007. "path": "examList/index",
  1008. "style": {
  1009. "navigationBarTitleText": "我的模考",
  1010. "navigationBarBackgroundColor": "#0386FD",
  1011. "navigationStyle": "custom", // 隐藏系统导航栏
  1012. "app-plus": {
  1013. "titleNView": false, //禁用原生导航栏
  1014. "bounce": "none"
  1015. }
  1016. }
  1017. },
  1018. {
  1019. "path": "examAppointList/index",
  1020. "style": {
  1021. "navigationBarTitleText": "模考预约",
  1022. "navigationBarBackgroundColor": "#0386FD",
  1023. "navigationStyle": "custom", // 隐藏系统导航栏
  1024. "app-plus": {
  1025. "titleNView": false, //禁用原生导航栏
  1026. "bounce": "none"
  1027. }
  1028. }
  1029. },
  1030. {
  1031. "path": "examReport/index",
  1032. "style": {
  1033. "navigationBarTitleText": "试卷报告",
  1034. "navigationBarBackgroundColor": "#0386FD",
  1035. "navigationStyle": "custom", // 隐藏系统导航栏
  1036. "app-plus": {
  1037. "titleNView": false, //禁用原生导航栏
  1038. "bounce": "none"
  1039. }
  1040. }
  1041. },
  1042. {
  1043. "path": "examReport/questionBankAllExplain",
  1044. "style": {
  1045. "navigationBarTitleText": "全部解析",
  1046. "navigationBarBackgroundColor": "#0386FD",
  1047. "navigationStyle": "custom", // 隐藏系统导航栏
  1048. "app-plus": {
  1049. "titleNView": false, //禁用原生导航栏
  1050. "bounce": "none"
  1051. }
  1052. }
  1053. },
  1054. {
  1055. "path": "examReport/questionBankWrongExplain",
  1056. "style": {
  1057. "navigationBarTitleText": "错题解析",
  1058. "navigationBarBackgroundColor": "#0386FD",
  1059. "navigationStyle": "custom", // 隐藏系统导航栏
  1060. "app-plus": {
  1061. "titleNView": false, //禁用原生导航栏
  1062. "bounce": "none"
  1063. }
  1064. }
  1065. },
  1066. {
  1067. "path": "examBank/index",
  1068. "style": {
  1069. "navigationBarTitleText": "模考",
  1070. "navigationBarBackgroundColor": "#0386FD",
  1071. "navigationStyle": "custom", // 隐藏系统导航栏
  1072. "app-plus": {
  1073. "titleNView": false, //禁用原生导航栏
  1074. "bounce": "none"
  1075. }
  1076. }
  1077. },
  1078. {
  1079. "path": "liveList/index",
  1080. "style": {
  1081. "navigationBarTitleText": "模考讲解直播",
  1082. "navigationBarBackgroundColor": "#0386FD",
  1083. "navigationStyle": "custom", // 隐藏系统导航栏
  1084. "app-plus": {
  1085. "titleNView": false, //禁用原生导航栏
  1086. "bounce": "none"
  1087. }
  1088. }
  1089. },
  1090. {
  1091. "path": "mockExam/examApply",
  1092. "style": {
  1093. "navigationBarTitleText": "模考报名",
  1094. "navigationBarBackgroundColor": "#0386FD",
  1095. "navigationStyle": "custom", // 隐藏系统导航栏
  1096. "app-plus": {
  1097. "titleNView": false, //禁用原生导航栏
  1098. "bounce": "none"
  1099. }
  1100. }
  1101. },
  1102. {
  1103. "path": "mockExam/registrationSuccess",
  1104. "style": {
  1105. "navigationBarTitleText": "模考报名成功",
  1106. "navigationBarBackgroundColor": "#0386FD",
  1107. "navigationStyle": "custom", // 隐藏系统导航栏
  1108. "app-plus": {
  1109. "titleNView": false, //禁用原生导航栏
  1110. "bounce": "none"
  1111. }
  1112. }
  1113. },
  1114. {
  1115. "path": "scan/recommen",
  1116. "style": {
  1117. "navigationBarTitleText": "课程列表",
  1118. "navigationBarBackgroundColor": "#0386FD",
  1119. "navigationStyle": "custom", // 隐藏系统导航栏
  1120. "app-plus": {
  1121. "titleNView": false, //禁用原生导航栏
  1122. "bounce": "none"
  1123. }
  1124. }
  1125. },
  1126. {
  1127. "path": "scan/retailact",
  1128. "style": {
  1129. "navigationBarTitleText": "课程列表",
  1130. "navigationBarBackgroundColor": "#0386FD",
  1131. "navigationStyle": "custom", // 隐藏系统导航栏
  1132. "app-plus": {
  1133. "titleNView": false, //禁用原生导航栏
  1134. "bounce": "none"
  1135. }
  1136. }
  1137. },
  1138. {
  1139. "path": "scan/packPage",
  1140. "style": {
  1141. "navigationBarTitleText": "活动",
  1142. "navigationBarBackgroundColor": "#0386FD",
  1143. "navigationStyle": "custom", // 隐藏系统导航栏
  1144. "app-plus": {
  1145. "titleNView": false, //禁用原生导航栏
  1146. "bounce": "none"
  1147. }
  1148. }
  1149. }
  1150. ]
  1151. }
  1152. ],
  1153. "preloadRule": {
  1154. "pages/index/index": {
  1155. "network": "all",
  1156. "packages": []
  1157. }
  1158. },
  1159. "globalStyle": {
  1160. "navigationBarTextStyle": "black",
  1161. "navigationBarTitleText": "WeChat",
  1162. "navigationBarBackgroundColor": "#F8F8F8",
  1163. "backgroundColor": "#F8F8F8",
  1164. "usingComponents": {}
  1165. },
  1166. "tabBar": {
  1167. "color": "#AAAAAA",
  1168. "selectedColor": "#222",
  1169. "borderStyle": "black",
  1170. "backgroundColor": "#fff",
  1171. "list": [
  1172. {
  1173. "pagePath": "pages/index/index"
  1174. },
  1175. {
  1176. "pagePath": "pages/course/index"
  1177. },
  1178. {
  1179. "pagePath": "pages/learn/index"
  1180. },
  1181. {
  1182. "pagePath": "pages/questionBank/index"
  1183. },
  1184. {
  1185. "pagePath": "pages/wd/index"
  1186. }
  1187. ]
  1188. },
  1189. "navigateToMiniProgramAppIdList": [""],
  1190. "easycom": {
  1191. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  1192. }
  1193. }