pages.json 28 KB

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