pages.json 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814
  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. "path": "pages/login/login",
  27. "style": {
  28. "navigationBarTitleText": "登录页",
  29. "navigationBarBackgroundColor": "#0386FD",
  30. "navigationBarTextStyle": "white",
  31. "navigationStyle": "custom", // 隐藏系统导航栏
  32. "app-plus": {
  33. "titleNView": false, //禁用原生导航栏
  34. "bounce": "none"
  35. }
  36. }
  37. }, {
  38. "path": "pages/recruitment/index",
  39. "style": {
  40. "navigationBarTitleText": "求职中心",
  41. "app-plus": {
  42. "titleNView": false //禁用原生导航栏
  43. }
  44. }
  45. },
  46. {
  47. "path": "pages/course/index",
  48. "style": {
  49. "navigationBarTitleText": "选课中心",
  50. "navigationBarTextStyle": "white",
  51. "navigationStyle": "custom", // 隐藏系统导航栏
  52. "enablePullDownRefresh":true,
  53. "app-plus": {
  54. "titleNView": false, //禁用原生导航栏
  55. "bounce": "none"
  56. }
  57. }
  58. },
  59. {
  60. "path": "pages/shopping/shoppingCart",
  61. "style": {
  62. "navigationBarTitleText": "购物车",
  63. "navigationBarTextStyle": "white",
  64. "navigationStyle": "custom", // 隐藏系统导航栏
  65. "app-plus": {
  66. "titleNView": false, //禁用原生导航栏
  67. "bounce": "none"
  68. }
  69. }
  70. },
  71. {
  72. "path": "pages/webview/index",
  73. "style": {
  74. "navigationBarTitleText": "网页",
  75. "navigationStyle": "custom", // 隐藏系统导航栏
  76. "app-plus": {
  77. "titleNView": false, //禁用原生导航栏
  78. "bounce": "none"
  79. }
  80. }
  81. }
  82. ],
  83. "subPackages": [{
  84. "root": "pages2",
  85. "pages": [{
  86. "path": "wd/info",
  87. "style": {
  88. "navigationBarTitleText": "我的资料",
  89. "navigationBarTextStyle": "white",
  90. "navigationStyle": "custom", // 隐藏系统导航栏
  91. "app-plus": {
  92. "titleNView": false, //禁用原生导航栏
  93. "bounce": "none"
  94. }
  95. }
  96. }, {
  97. "path": "wd/menu",
  98. "style": {
  99. "navigationBarTitleText": "基本资料",
  100. "navigationStyle": "custom", // 隐藏系统导航栏
  101. "app-plus": {
  102. "titleNView": false, //禁用原生导航栏
  103. "bounce": "none"
  104. }
  105. }
  106. }, {
  107. "path": "wd/edu_info",
  108. "style": {
  109. "navigationBarTitleText": "教育信息",
  110. "navigationStyle": "custom", // 隐藏系统导航栏
  111. "app-plus": {
  112. "titleNView": false, //禁用原生导航栏
  113. "bounce": "none"
  114. }
  115. }
  116. }, {
  117. "path": "register/register",
  118. "style": {
  119. "navigationBarTitleText": "注册页",
  120. "navigationBarBackgroundColor": "#0386FD",
  121. "navigationBarTextStyle": "white",
  122. "navigationStyle": "custom", // 隐藏系统导航栏
  123. "app-plus": {
  124. "titleNView": false, //禁用原生导航栏
  125. "bounce": "none"
  126. }
  127. }
  128. }, {
  129. "path": "register/forget",
  130. "style": {
  131. "navigationBarTitleText": "忘记密码",
  132. "navigationBarBackgroundColor": "#0386FD",
  133. "navigationBarTextStyle": "white",
  134. "navigationStyle": "custom", // 隐藏系统导航栏
  135. "app-plus": {
  136. "titleNView": false, //禁用原生导航栏
  137. "bounce": "none"
  138. }
  139. }
  140. }, {
  141. "path": "register/bind",
  142. "style": {
  143. "navigationBarTitleText": "关联学员身份",
  144. "navigationBarBackgroundColor": "#0386FD",
  145. "navigationBarTextStyle": "white",
  146. "navigationStyle": "custom", // 隐藏系统导航栏
  147. "app-plus": {
  148. "titleNView": false, //禁用原生导航栏
  149. "bounce": "none"
  150. }
  151. }
  152. },
  153. {
  154. "path": "wd/class",
  155. "style": {
  156. "navigationBarTitleText": "我的网课",
  157. "navigationStyle": "custom", // 隐藏系统导航栏
  158. "app-plus": {
  159. "titleNView": false, //禁用原生导航栏
  160. "bounce": "none"
  161. }
  162. }
  163. },
  164. {
  165. "path": "order/confirm_list",
  166. "style": {
  167. "navigationBarTitleText": "确认订单",
  168. "navigationStyle": "custom", // 隐藏系统导航栏
  169. "app-plus": {
  170. "titleNView": false, //禁用原生导航栏
  171. "bounce": "none"
  172. }
  173. }
  174. },
  175. {
  176. "path": "order/confirm_pay",
  177. "style": {
  178. "navigationBarTitleText": "订单支付",
  179. "navigationStyle": "custom", // 隐藏系统导航栏
  180. "app-plus": {
  181. "titleNView": false, //禁用原生导航栏
  182. "bounce": "none"
  183. }
  184. }
  185. },
  186. {
  187. "path": "order/confirm_success",
  188. "style": {
  189. "navigationBarTitleText": "支付成功",
  190. "navigationStyle": "custom", // 隐藏系统导航栏
  191. "app-plus": {
  192. "titleNView": false, //禁用原生导航栏
  193. "bounce": "none"
  194. }
  195. }
  196. },
  197. {
  198. "path": "order/index",
  199. "style": {
  200. "navigationBarTitleText": "我的订单",
  201. "navigationStyle": "custom", // 隐藏系统导航栏
  202. // "enablePullDownRefresh": true,
  203. "app-plus": {
  204. "titleNView": false, //禁用原生导航栏
  205. "bounce": "none"
  206. }
  207. }
  208. },
  209. {
  210. "path": "invoice/index",
  211. "style": {
  212. "navigationBarTitleText": "发票申请",
  213. "navigationStyle": "custom", // 隐藏系统导航栏
  214. // "enablePullDownRefresh": true,
  215. "app-plus": {
  216. "titleNView": false, //禁用原生导航栏
  217. "bounce": "none"
  218. }
  219. }
  220. },
  221. {
  222. "path": "exam/index",
  223. "style": {
  224. "navigationBarTitleText": "我的考试",
  225. "navigationStyle": "custom", // 隐藏系统导航栏
  226. "app-plus": {
  227. "titleNView": false, //禁用原生导航栏
  228. "bounce": "none"
  229. }
  230. }
  231. },
  232. {
  233. "path": "exam/exam_appointment",
  234. "style": {
  235. "navigationBarTitleText": "考试预约",
  236. "navigationStyle": "custom", // 隐藏系统导航栏
  237. "app-plus": {
  238. "titleNView": false, //禁用原生导航栏
  239. "bounce": "none"
  240. }
  241. }
  242. },
  243. {
  244. "path": "exam/exam_result",
  245. "style": {
  246. "navigationBarTitleText": "考试成绩和证书",
  247. "navigationStyle": "custom", // 隐藏系统导航栏
  248. "app-plus": {
  249. "titleNView": false, //禁用原生导航栏
  250. "bounce": "none"
  251. }
  252. }
  253. },
  254. {
  255. "path": "wd/question_bank",
  256. "style": {
  257. "navigationBarTitleText": "我的题库通",
  258. "navigationStyle": "custom", // 隐藏系统导航栏
  259. "app-plus": {
  260. "titleNView": false, //禁用原生导航栏
  261. "bounce": "none"
  262. }
  263. }
  264. },
  265. {
  266. "path": "bank/my_question",
  267. "style": {
  268. "navigationBarTitleText": "我的题库",
  269. "navigationStyle": "custom", // 隐藏系统导航栏
  270. "app-plus": {
  271. "titleNView": false, //禁用原生导航栏
  272. "bounce": "none"
  273. }
  274. }
  275. },
  276. {
  277. "path": "bank/question_record",
  278. "style": {
  279. "navigationBarTitleText": "做题记录",
  280. "navigationStyle": "custom", // 隐藏系统导航栏
  281. "enablePullDownRefresh":true,
  282. "app-plus": {
  283. "titleNView": false, //禁用原生导航栏
  284. "bounce": "none"
  285. }
  286. }
  287. },
  288. {
  289. "path": "bank/detail",
  290. "style": {
  291. "navigationBarTitleText": "题库详情",
  292. "navigationStyle": "custom", // 隐藏系统导航栏
  293. "app-plus": {
  294. "titleNView": false, //禁用原生导航栏
  295. "bounce": "none"
  296. }
  297. }
  298. },
  299. {
  300. "path": "bank/question_detail",
  301. "style": {
  302. "navigationBarTitleText": "进入刷题",
  303. "navigationStyle": "custom", // 隐藏系统导航栏
  304. "app-plus": {
  305. "titleNView": false, //禁用原生导航栏
  306. "bounce": "none"
  307. }
  308. }
  309. },
  310. {
  311. "path": "msg/index",
  312. "style": {
  313. "enablePullDownRefresh":true,
  314. "navigationBarTitleText": "我的消息",
  315. "navigationStyle": "custom", // 隐藏系统导航栏
  316. "app-plus": {
  317. "titleNView": false, //禁用原生导航栏
  318. "bounce": "none"
  319. }
  320. }
  321. },
  322. {
  323. "path": "bank/question_statistics",
  324. "style": {
  325. "navigationBarTitleText": "做题统计",
  326. "navigationStyle": "custom", // 隐藏系统导航栏
  327. "app-plus": {
  328. "titleNView": false, //禁用原生导航栏
  329. "bounce": "none"
  330. }
  331. }
  332. },
  333. {
  334. "path": "bank/question_report",
  335. "style": {
  336. "navigationBarTitleText": "试卷报告",
  337. "navigationStyle": "custom", // 隐藏系统导航栏
  338. "app-plus": {
  339. "titleNView": false, //禁用原生导航栏
  340. "bounce": "none"
  341. }
  342. }
  343. },
  344. {
  345. "path": "bank/questionBank",
  346. "style": {
  347. "navigationBarTitleText": "试卷题目",
  348. "navigationStyle": "custom", // 隐藏系统导航栏
  349. "app-plus": {
  350. "titleNView": false, //禁用原生导航栏
  351. "bounce": "none"
  352. }
  353. }
  354. },
  355. {
  356. "path": "class/questionBank",
  357. "style": {
  358. "navigationBarTitleText": "试卷题目",
  359. "navigationStyle": "custom", // 隐藏系统导航栏
  360. "app-plus": {
  361. "titleNView": false, //禁用原生导航栏
  362. "bounce": "none"
  363. }
  364. }
  365. },
  366. {
  367. "path": "bank/questionBankExplain",
  368. "style": {
  369. "navigationBarTitleText": "解析",
  370. "navigationStyle": "custom", // 隐藏系统导航栏
  371. "app-plus": {
  372. "titleNView": false, //禁用原生导航栏
  373. "bounce": "none"
  374. }
  375. }
  376. },
  377. {
  378. "path": "bank/questionBankWrongExplain",
  379. "style": {
  380. "navigationBarTitleText": "错题解析",
  381. "navigationStyle": "custom", // 隐藏系统导航栏
  382. "app-plus": {
  383. "titleNView": false, //禁用原生导航栏
  384. "bounce": "none"
  385. }
  386. }
  387. },
  388. {
  389. "path": "bank/questionBankAllExplain",
  390. "style": {
  391. "navigationBarTitleText": "全部解析",
  392. "navigationStyle": "custom", // 隐藏系统导航栏
  393. "app-plus": {
  394. "titleNView": false, //禁用原生导航栏
  395. "bounce": "none"
  396. }
  397. }
  398. },
  399. {
  400. "path": "bank/questionBankContinue",
  401. "style": {
  402. "navigationBarTitleText": "试卷题目",
  403. "navigationStyle": "custom", // 隐藏系统导航栏
  404. "app-plus": {
  405. "titleNView": false, //禁用原生导航栏
  406. "bounce": "none"
  407. }
  408. }
  409. },
  410. {
  411. "path": "bank/questionBankExplainDetail",
  412. "style": {
  413. "navigationBarTitleText": "试卷解析",
  414. "navigationStyle": "custom", // 隐藏系统导航栏
  415. "app-plus": {
  416. "titleNView": false, //禁用原生导航栏
  417. "bounce": "none"
  418. }
  419. }
  420. },
  421. {
  422. "path": "bank/questionBankTest",
  423. "style": {
  424. "navigationBarTitleText": "试卷",
  425. "navigationStyle": "custom", // 隐藏系统导航栏
  426. "app-plus": {
  427. "titleNView": false, //禁用原生导航栏
  428. "bounce": "none"
  429. }
  430. }
  431. },
  432. {
  433. "path": "msg/detail",
  434. "style": {
  435. "navigationBarTitleText": "消息详情",
  436. "navigationStyle": "custom", // 隐藏系统导航栏
  437. "app-plus": {
  438. "titleNView": false, //禁用原生导航栏
  439. "bounce": "none"
  440. }
  441. }
  442. },
  443. {
  444. "path": "plan/index",
  445. "style": {
  446. "navigationBarTitleText": "学习计划",
  447. "navigationStyle": "custom", // 隐藏系统导航栏
  448. "app-plus": {
  449. "titleNView": false, //禁用原生导航栏
  450. "bounce": "none"
  451. }
  452. }
  453. },
  454. {
  455. "path": "plan/create",
  456. "style": {
  457. "navigationBarTitleText": "创建计划",
  458. "navigationStyle": "custom", // 隐藏系统导航栏
  459. "app-plus": {
  460. "titleNView": false, //禁用原生导航栏
  461. "bounce": "none"
  462. }
  463. }
  464. },
  465. {
  466. "path": "plan/edit",
  467. "style": {
  468. "navigationBarTitleText": "修改计划",
  469. "navigationStyle": "custom", // 隐藏系统导航栏
  470. "app-plus": {
  471. "titleNView": false, //禁用原生导航栏
  472. "bounce": "none"
  473. }
  474. }
  475. },
  476. {
  477. "path": "verify/input",
  478. "style": {
  479. "navigationBarTitleText": "填写审核资料",
  480. "navigationStyle": "custom", // 隐藏系统导航栏
  481. "app-plus": {
  482. "titleNView": false, //禁用原生导航栏
  483. "bounce": "none"
  484. }
  485. }
  486. },
  487. {
  488. "path": "verify/input2",
  489. "style": {
  490. "navigationBarTitleText": "填写审核资料",
  491. "navigationStyle": "custom", // 隐藏系统导航栏
  492. "app-plus": {
  493. "titleNView": false, //禁用原生导航栏
  494. "bounce": "none"
  495. }
  496. }
  497. },
  498. {
  499. "path": "appointment/index",
  500. "style": {
  501. "navigationBarTitleText": "预约考试",
  502. "navigationStyle": "custom", // 隐藏系统导航栏
  503. "app-plus": {
  504. "titleNView": false, //禁用原生导航栏
  505. "bounce": "none"
  506. }
  507. }
  508. },
  509. {
  510. "path": "appointment/order",
  511. "style": {
  512. "navigationBarTitleText": "预约考试",
  513. "navigationStyle": "custom", // 隐藏系统导航栏
  514. "app-plus": {
  515. "titleNView": false, //禁用原生导航栏
  516. "bounce": "none"
  517. }
  518. }
  519. },
  520. {
  521. "path": "appointment/kporder",
  522. "style": {
  523. "navigationBarTitleText": "考前培训预约考试",
  524. "navigationStyle": "custom", // 隐藏系统导航栏
  525. "app-plus": {
  526. "titleNView": false, //禁用原生导航栏
  527. "bounce": "none"
  528. }
  529. }
  530. },
  531. {
  532. "path": "appointment/appointment_success",
  533. "style": {
  534. "navigationBarTitleText": "预约成功",
  535. "app-plus": {
  536. "titleNView": false, //禁用原生导航栏
  537. "bounce": "none"
  538. }
  539. }
  540. },
  541. {
  542. "path": "subject/collectBank",
  543. "style": {
  544. "navigationBarTitleText": "试卷",
  545. "navigationStyle": "custom", // 隐藏系统导航栏
  546. "app-plus": {
  547. "titleNView": false, //禁用原生导航栏
  548. "bounce": "none"
  549. }
  550. }
  551. },
  552. {
  553. "path": "subject/wrongBank",
  554. "style": {
  555. "navigationBarTitleText": "错题",
  556. "navigationStyle": "custom", // 隐藏系统导航栏
  557. "app-plus": {
  558. "titleNView": false, //禁用原生导航栏
  559. "bounce": "none"
  560. }
  561. }
  562. },
  563. {
  564. "path": "subject/collectTypeBank",
  565. "style": {
  566. "navigationBarTitleText": "试卷",
  567. "navigationStyle": "custom", // 隐藏系统导航栏
  568. "app-plus": {
  569. "titleNView": false, //禁用原生导航栏
  570. "bounce": "none"
  571. }
  572. }
  573. },
  574. {
  575. "path": "subject/wrongTypeBank",
  576. "style": {
  577. "navigationBarTitleText": "试卷",
  578. "navigationStyle": "custom", // 隐藏系统导航栏
  579. "app-plus": {
  580. "titleNView": false, //禁用原生导航栏
  581. "bounce": "none"
  582. }
  583. }
  584. },
  585. {
  586. "path": "class/question_report",
  587. "style": {
  588. "navigationBarTitleText": "试卷报告",
  589. "navigationStyle": "custom", // 隐藏系统导航栏
  590. "app-plus": {
  591. "titleNView": false, //禁用原生导航栏
  592. "bounce": "none"
  593. }
  594. }
  595. },
  596. {
  597. "path": "subject/wrong",
  598. "style": {
  599. "navigationBarTitleText": "错题集",
  600. "navigationStyle": "custom", // 隐藏系统导航栏
  601. "app-plus": {
  602. "titleNView": false, //禁用原生导航栏
  603. "bounce": "none"
  604. }
  605. }
  606. },
  607. {
  608. "path": "bank/wrongById",
  609. "style": {
  610. "navigationBarTitleText": "错题集",
  611. "navigationStyle": "custom", // 隐藏系统导航栏
  612. "app-plus": {
  613. "titleNView": false, //禁用原生导航栏
  614. "bounce": "none"
  615. }
  616. }
  617. },
  618. {
  619. "path": "bank/collectById",
  620. "style": {
  621. "navigationBarTitleText": "收藏集",
  622. "navigationStyle": "custom", // 隐藏系统导航栏
  623. "app-plus": {
  624. "titleNView": false, //禁用原生导航栏
  625. "bounce": "none"
  626. }
  627. }
  628. },
  629. {
  630. "path": "subject/collect",
  631. "style": {
  632. "navigationBarTitleText": "收藏集",
  633. "navigationStyle": "custom", // 隐藏系统导航栏
  634. "app-plus": {
  635. "titleNView": false, //禁用原生导航栏
  636. "bounce": "none"
  637. }
  638. }
  639. },
  640. {
  641. "path": "learn/my_learn",
  642. "style": {
  643. "navigationBarTitleText": "我的学时",
  644. "navigationStyle": "custom", // 隐藏系统导航栏
  645. "app-plus": {
  646. "titleNView": false, //禁用原生导航栏
  647. "bounce": "none"
  648. }
  649. }
  650. },
  651. {
  652. "path": "learn/details",
  653. "style": {
  654. "navigationBarTitleText": "详情",
  655. "navigationStyle": "custom", // 隐藏系统导航栏
  656. "app-plus": {
  657. "titleNView": false, //禁用原生导航栏
  658. "bounce": "none"
  659. }
  660. }
  661. },
  662. {
  663. "path": "learn/menu",
  664. "style": {
  665. "navigationBarTitleText": "目录",
  666. "navigationStyle": "custom", // 隐藏系统导航栏
  667. "app-plus": {
  668. "titleNView": false, //禁用原生导航栏
  669. "bounce": "none"
  670. }
  671. }
  672. },
  673. {
  674. "path": "wd/course",
  675. "style": {
  676. "navigationBarTitleText": "所有课程",
  677. "navigationStyle": "custom", // 隐藏系统导航栏
  678. "app-plus": {
  679. "titleNView": false, //禁用原生导航栏
  680. "bounce": "none"
  681. }
  682. }
  683. }
  684. ]
  685. },{
  686. "root": "pages3",
  687. "pages": [{
  688. "path": "polyv/polyv",
  689. "style": {
  690. "navigationBarTitleText": "保利威直播",
  691. "app-plus": {
  692. "bounce": "none"
  693. },
  694. "mp-weixin": {
  695. "usingComponents": {
  696. "player": "/pages3/static/polyv-sdk/components/player/player"
  697. }
  698. }
  699. }
  700. },
  701. {
  702. "path": "polyv/detail",
  703. "style": {
  704. "navigationBarTitleText": "课程详情",
  705. "navigationStyle": "custom", // 隐藏系统导航栏
  706. "app-plus": {
  707. "titleNView": false, //禁用原生导航栏
  708. "bounce": "none"
  709. },
  710. "mp-weixin": {
  711. "usingComponents": {
  712. "player": "/pages3/static/polyv-sdk/components/player/player",
  713. "polyv-player": "plugin://polyv-player/player"
  714. }
  715. }
  716. }
  717. },
  718. {
  719. "path": "course/detail",
  720. "style": {
  721. "navigationBarTitleText": "课程详情",
  722. "navigationStyle": "custom", // 隐藏系统导航栏
  723. "app-plus": {
  724. "titleNView": false, //禁用原生导航栏
  725. "bounce": "none"
  726. },
  727. "mp-weixin": {
  728. "usingComponents": {
  729. "polyv-player": "plugin://polyv-player/player"
  730. }
  731. }
  732. }
  733. },{
  734. "path": "imgCompare/index",
  735. "style": {
  736. "navigationBarTitleText": "身份证",
  737. "navigationStyle": "custom", // 隐藏系统导航栏
  738. "app-plus": {
  739. "titleNView": false, //禁用原生导航栏
  740. "bounce": "none"
  741. }
  742. }
  743. }],
  744. "plugins": {
  745. "polyv-player": {
  746. "version": "0.3.0",
  747. "provider": "wx4a350a258a6f7876"
  748. }
  749. }
  750. }],
  751. "preloadRule": {
  752. "pages/index/index": {
  753. "network": "all",
  754. "packages": []
  755. }
  756. },
  757. "globalStyle": {
  758. "navigationBarTextStyle": "black",
  759. "navigationBarTitleText": "WeChat",
  760. "navigationBarBackgroundColor": "#F8F8F8",
  761. "backgroundColor": "#F8F8F8",
  762. "usingComponents": {
  763. }
  764. },
  765. "tabBar": {
  766. "color": "#AAAAAA",
  767. "selectedColor": "#007AFF",
  768. "borderStyle": "black",
  769. "backgroundColor": "#fff",
  770. "list": [{
  771. "pagePath": "pages/index/index",
  772. "iconPath": "static/nav1.png",
  773. "selectedIconPath": "static/nav1_on.png",
  774. "text": "首页"
  775. },
  776. {
  777. "pagePath": "pages/course/index",
  778. "iconPath": "static/nav2.png",
  779. "selectedIconPath": "static/nav2_on.png",
  780. "text": "选课"
  781. },
  782. {
  783. "pagePath": "pages/shopping/shoppingCart",
  784. "iconPath": "static/nav3.png",
  785. "selectedIconPath": "static/nav3_on.png",
  786. "text": "购物车"
  787. },
  788. /* {
  789. "pagePath": "pages/recruitment/index",
  790. "iconPath": "static/nav4.png",
  791. "selectedIconPath": "static/nav4_on.png",
  792. "text": "招聘"
  793. }, */
  794. {
  795. "pagePath": "pages/wd/index",
  796. "iconPath": "static/nav5.png",
  797. "selectedIconPath": "static/nav5_on.png",
  798. "text": "我的"
  799. }
  800. ]
  801. },
  802. "navigateToMiniProgramAppIdList": [
  803. ""
  804. ],
  805. "easycom": {
  806. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  807. }
  808. }