pages.json 35 KB

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