pages.json 31 KB

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