Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

1204 lignes
27 KiB

  1. {
  2. // 页面配置;数组中第一项是首页
  3. // 注意:新增页面必须在这里写好配置,否则无法跳转;页面的标题、下拉刷新等均在此处配置
  4. // 注意:阿里小程序不要给导航栏设置颜色,否则无法正确显示导航栏文字
  5. "pages": [
  6. // 主页(tabBar #1)
  7. {
  8. "path": "pages/home",
  9. "style": {
  10. "navigationBarTitleText": "数字化智慧校园",
  11. // #ifndef MP-ALIPAY
  12. "navigationBarBackgroundColor": "#0c86d8",
  13. "navigationBarTextStyle": "white",
  14. // #endif
  15. "backgroundColorTop": "#0c86d8",
  16. "backgroundColorBottom": "#f3f3f3",
  17. "enablePullDownRefresh": true
  18. }
  19. },
  20. {
  21. "path": "pages/home/more",
  22. "style": {
  23. "navigationBarTitleText": "更多应用"
  24. }
  25. },
  26. {
  27. "path": "pages/home/notice",
  28. "style": {
  29. "navigationBarTitleText": "新闻与通知"
  30. }
  31. },
  32. // 示例系统表单
  33. {
  34. "path": "pages/DemoLeaveForm",
  35. "style": {
  36. "navigationBarTitleText": "请假系统表单"
  37. }
  38. },
  39. // 登录/注册页
  40. {
  41. "path": "pages/login",
  42. "style": {
  43. "navigationStyle": "custom",
  44. "disableScroll": true
  45. }
  46. },
  47. { "path": "pages/weixinLogin",
  48. "style": {
  49. "navigationStyle": "custom",
  50. "disableScroll": true
  51. }
  52. },
  53. {
  54. "path": "pages/signup",
  55. "style": {
  56. "navigationBarTitleText": "注册账号",
  57. "disableScroll": true
  58. }
  59. },
  60. // 消息(tabBar #2)
  61. {
  62. "path": "pages/msg",
  63. "style": {
  64. "navigationBarTitleText": "消息",
  65. "enablePullDownRefresh": true
  66. }
  67. },
  68. {
  69. "path": "pages/msg/chat",
  70. "style": {
  71. "navigationBarTitleText": "对话列表",
  72. "enablePullDownRefresh": true
  73. }
  74. },
  75. // 通讯录(tabBar #3)
  76. {
  77. "path": "pages/contact",
  78. "style": {
  79. "navigationBarTitleText": "通讯录"
  80. }
  81. },
  82. // 我的(tabBar #4)
  83. {
  84. "path": "pages/my",
  85. "style": {
  86. // #ifndef MP-ALIPAY
  87. "navigationBarBackgroundColor": "#0c86d8",
  88. "navigationBarTextStyle": "white",
  89. // #endif
  90. "navigationBarTitleText": "我的",
  91. "backgroundColorTop": "#0c86d8",
  92. "backgroundColorBottom": "#f3f3f3"
  93. }
  94. },
  95. {
  96. "path": "pages/my/info",
  97. "style": {
  98. "navigationBarTitleText": "我的信息"
  99. }
  100. },
  101. {
  102. "path": "pages/my/contact",
  103. "style": {
  104. "navigationBarTitleText": "我的联系方式"
  105. }
  106. },
  107. {
  108. "path": "pages/my/qrcode",
  109. "style": {
  110. "navigationBarTitleText": "我的二维码"
  111. }
  112. },
  113. {
  114. "path": "pages/my/password",
  115. "style": {
  116. "navigationBarTitleText": "更改密码"
  117. }
  118. },
  119. {
  120. "path": "pages/my/learun",
  121. "style": {
  122. "navigationBarTitleText": "关于泉江",
  123. // #ifndef MP-ALIPAY
  124. "navigationBarBackgroundColor": "#0c86d8",
  125. "navigationBarTextStyle": "white",
  126. // #endif
  127. "backgroundColor": "#FFFFFF"
  128. }
  129. },
  130. {
  131. "path": "pages/my/framework",
  132. "style": {
  133. "navigationBarTitleText": "数字化智慧校园",
  134. // #ifndef MP-ALIPAY
  135. "navigationBarBackgroundColor": "#0c86d8",
  136. "navigationBarTextStyle": "white",
  137. // #endif
  138. "backgroundColor": "#FFFFFF"
  139. }
  140. },
  141. // 通用页面
  142. {
  143. "path": "pages/common/select-organize",
  144. "style": {
  145. "navigationBarTitleText": "选择公司/部门/员工"
  146. }
  147. },
  148. {
  149. "path": "pages/common/select-organize-multiple",
  150. "style": {
  151. "navigationBarTitleText": "选择公司/部门/员工"
  152. }
  153. },
  154. {
  155. "path": "pages/common/select-layer",
  156. "style": {
  157. "navigationBarTitleText": "选择一个选项"
  158. }
  159. },
  160. // 自定义应用
  161. {
  162. "path": "pages/customapp/list",
  163. "style": {
  164. "navigationBarTitleText": "自定义应用"
  165. }
  166. },
  167. {
  168. "path": "pages/customapp/single",
  169. "style": {
  170. "navigationBarTitleText": "自定义应用详情页"
  171. }
  172. },
  173. // 工作流
  174. {
  175. "path": "pages/nworkflow/myflow/list",
  176. "style": {
  177. "navigationBarTitleText": "我的任务",
  178. "disableScroll": true
  179. }
  180. },
  181. {
  182. "path": "pages/nworkflow/myflow/single",
  183. "style": {
  184. "navigationBarTitleText": "任务详情",
  185. "backgroundColorTop": "#FFFFFF"
  186. }
  187. },
  188. {
  189. "path": "pages/nworkflow/myflow/sign",
  190. "style": {
  191. "navigationBarTitleText": "流程加签与审核",
  192. "backgroundColor": "#FFFFFF"
  193. }
  194. },
  195. {
  196. "path": "pages/nworkflow/releasetask/list",
  197. "style": {
  198. "navigationBarTitleText": "流程发起",
  199. "disableScroll": true
  200. }
  201. },
  202. {
  203. "path": "pages/nworkflow/releasetask/single",
  204. "style": {
  205. "navigationBarTitleText": "流程信息录入"
  206. }
  207. },
  208. // 组件演示
  209. {
  210. "path": "pages/demo/list",
  211. "style": {
  212. "navigationBarTitleText": "组件演示"
  213. }
  214. },
  215. {
  216. "path": "pages/demo/component/form",
  217. "style": {
  218. "navigationBarTitleText": "表单 · Form"
  219. }
  220. },
  221. {
  222. "path": "pages/demo/component/card",
  223. "style": {
  224. "navigationBarTitleText": "卡片 · Card"
  225. }
  226. },
  227. {
  228. "path": "pages/demo/component/list",
  229. "style": {
  230. "navigationBarTitleText": "列表/宫格 · List"
  231. }
  232. },
  233. {
  234. "path": "pages/demo/component/modal",
  235. "style": {
  236. "navigationBarTitleText": "弹出框 · Modal"
  237. }
  238. },
  239. {
  240. "path": "pages/demo/component/bar",
  241. "style": {
  242. "navigationBarTitleText": "操作条 · Bar"
  243. }
  244. },
  245. {
  246. "path": "pages/demo/component/timeline",
  247. "style": {
  248. "navigationBarTitleText": "时间轴 · Timeline"
  249. }
  250. },
  251. {
  252. "path": "pages/demo/component/step",
  253. "style": {
  254. "navigationBarTitleText": "步骤条 · Step"
  255. }
  256. },
  257. {
  258. "path": "pages/demo/component/nav",
  259. "style": {
  260. "navigationBarTitleText": "导航栏/页签 · Nav"
  261. }
  262. },
  263. {
  264. "path": "pages/demo/component/chat",
  265. "style": {
  266. "navigationBarTitleText": "聊天消息 · Chat"
  267. }
  268. },
  269. {
  270. "path": "pages/demo/element/layout",
  271. "style": {
  272. "navigationBarTitleText": "布局 · Layout"
  273. }
  274. },
  275. {
  276. "path": "pages/demo/element/support",
  277. "style": {
  278. "navigationBarTitleText": "辅助类 · Support"
  279. }
  280. },
  281. {
  282. "path": "pages/demo/element/button",
  283. "style": {
  284. "navigationBarTitleText": "按钮 · Button"
  285. }
  286. },
  287. {
  288. "path": "pages/demo/element/avatar",
  289. "style": {
  290. "navigationBarTitleText": "头像 · Avatar"
  291. }
  292. },
  293. {
  294. "path": "pages/demo/element/icon",
  295. "style": {
  296. "navigationBarTitleText": "图标 · Icon"
  297. }
  298. },
  299. {
  300. "path": "pages/demo/element/background",
  301. "style": {
  302. "navigationBarTitleText": "背景/底色 · Background"
  303. }
  304. },
  305. {
  306. "path": "pages/demo/element/loading",
  307. "style": {
  308. "navigationBarTitleText": "加载中动画 · Loading"
  309. }
  310. },
  311. {
  312. "path": "pages/demo/element/progress",
  313. "style": {
  314. "navigationBarTitleText": "进度条 · Progress"
  315. }
  316. },
  317. {
  318. "path": "pages/demo/element/shadow",
  319. "style": {
  320. "navigationBarTitleText": "边框/阴影 · Shadow"
  321. }
  322. },
  323. {
  324. "path": "pages/demo/element/tag",
  325. "style": {
  326. "navigationBarTitleText": "标签/角标 · Tag"
  327. }
  328. },
  329. {
  330. "path": "pages/demo/element/text",
  331. "style": {
  332. "navigationBarTitleText": "文本 · Text"
  333. }
  334. },
  335. // crm功能 (业务示例,页面均由 app 代码生成器生成)
  336. {
  337. "path": "pages/crm/invoice/list",
  338. "style": {
  339. "navigationBarTitleText": "开票管理"
  340. }
  341. },
  342. {
  343. "path": "pages/crm/invoice/single",
  344. "style": {
  345. "navigationBarTitleText": "票据详情"
  346. }
  347. },
  348. {
  349. "path": "pages/crm/order/list",
  350. "style": {
  351. "navigationBarTitleText": "订单管理"
  352. }
  353. },
  354. {
  355. "path": "pages/crm/order/single",
  356. "style": {
  357. "navigationBarTitleText": "订单详情"
  358. }
  359. },
  360. // 考勤记录
  361. {
  362. "path": "pages/LogisticsManagement/ADR_Record/list",
  363. "style": {
  364. "navigationBarTitleText": "考勤里列表"
  365. }
  366. },
  367. {
  368. "path": "pages/LogisticsManagement/ADR_Record/single",
  369. "style": {
  370. "navigationBarTitleText": "考勤详情"
  371. }
  372. },
  373. //班级自诊打卡
  374. {
  375. "path": "pages/EducationalAdministration/Thermography/list",
  376. "style": {
  377. "navigationBarTitleText": "班级自诊打卡"
  378. }
  379. },
  380. {
  381. "path": "pages/EducationalAdministration/Thermography/single",
  382. "style": {
  383. "navigationBarTitleText": "详情"
  384. }
  385. },
  386. //借阅信息
  387. {
  388. "path": "pages/EducationalAdministration/BookBorrow/list",
  389. "style": {
  390. "navigationBarTitleText": "借阅信息"
  391. }
  392. },
  393. //校长信箱
  394. {
  395. "path": "pages/EducationalAdministration/StuMail/list",
  396. "style": {
  397. "navigationBarTitleText": "校长信箱"
  398. }
  399. },
  400. {
  401. "path": "pages/EducationalAdministration/StuMail/single",
  402. "style": {
  403. "navigationBarTitleText": "详细"
  404. }
  405. },
  406. //社团管理
  407. {
  408. "path": "pages/PersonnelManagement/CommunityInfo/list",
  409. "style": {
  410. "navigationBarTitleText": "社团列表"
  411. }
  412. },
  413. {
  414. "path": "pages/PersonnelManagement/CommunityInfo/single",
  415. "style": {
  416. "navigationBarTitleText": "社团详情"
  417. }
  418. },
  419. {
  420. "path": "pages/PersonnelManagement/CommunityMember/list",
  421. "style": {
  422. "navigationBarTitleText": "我的社团"
  423. }
  424. },
  425. //个人信息
  426. {
  427. "path": "pages/EducationalAdministration/StuInfoBasic/list",
  428. "style": {
  429. "navigationBarTitleText": "个人信息"
  430. }
  431. },
  432. //学生消费记录
  433. {
  434. "path": "pages/EducationalAdministration/StuConsumption/list",
  435. "style": {
  436. "navigationBarTitleText": "消费记录"
  437. }
  438. },
  439. {
  440. "path": "pages/EducationalAdministration/StuConsumption/single",
  441. "style": {
  442. "navigationBarTitleText": "消费详情"
  443. }
  444. },
  445. //工作日志
  446. {
  447. "path": "pages/EducationalAdministration/JournalSend/list",
  448. "style": {
  449. "navigationBarTitleText": "工作日志"
  450. }
  451. },
  452. {
  453. "path": "pages/EducationalAdministration/JournalSend/single",
  454. "style": {
  455. "navigationBarTitleText": "日志详情"
  456. }
  457. },
  458. //公文查看
  459. {
  460. "path": "pages/EducationalAdministration/Sys_ReceiveFile/list",
  461. "style": {
  462. "navigationBarTitleText": "公文查看"
  463. }
  464. },
  465. {
  466. "path": "pages/EducationalAdministration/Sys_ReceiveFile/single",
  467. "style": {
  468. "navigationBarTitleText": "公文详情"
  469. }
  470. },
  471. //教师个人信息
  472. {
  473. "path": "pages/EducationalAdministration/EmpInfo/list",
  474. "style": {
  475. "navigationBarTitleText": "个人信息"
  476. }
  477. },
  478. //收件箱
  479. {
  480. "path": "pages/EducationalAdministration/SYS_ReceiveMessage/list",
  481. "style": {
  482. "navigationBarTitleText": "收件箱"
  483. }
  484. },
  485. {
  486. "path": "pages/EducationalAdministration/SYS_ReceiveMessage/single",
  487. "style": {
  488. "navigationBarTitleText": "邮件详情"
  489. }
  490. },
  491. //活动安排
  492. {
  493. "path": "pages/PersonnelManagement/ActivitySchedule/list",
  494. "style": {
  495. "navigationBarTitleText": "活动安排"
  496. }
  497. },
  498. {
  499. "path": "pages/PersonnelManagement/ActivitySchedule/single",
  500. "style": {
  501. "navigationBarTitleText": "活动详情"
  502. }
  503. },
  504. //班级活动记事
  505. {
  506. "path": "pages/PersonnelManagement/ClassWork/list",
  507. "style": {
  508. "navigationBarTitleText": "班级工作记事"
  509. }
  510. },
  511. {
  512. "path": "pages/PersonnelManagement/ClassWork/single",
  513. "style": {
  514. "navigationBarTitleText": "详情"
  515. }
  516. },
  517. //值班安排
  518. {
  519. "path": "pages/PersonnelManagement/DutySchedule/list",
  520. "style": {
  521. "navigationBarTitleText": "值班安排"
  522. }
  523. },
  524. {
  525. "path": "pages/PersonnelManagement/DutySchedule/single",
  526. "style": {
  527. "navigationBarTitleText": "详情"
  528. }
  529. },
  530. //掌上报修
  531. {
  532. "path": "pages/PersonnelManagement/EmpRepair/list",
  533. "style": {
  534. "navigationBarTitleText": "掌上报修"
  535. }
  536. },
  537. {
  538. "path": "pages/PersonnelManagement/EmpRepair/single",
  539. "style": {
  540. "navigationBarTitleText": "详情"
  541. }
  542. },
  543. //日程安排
  544. {
  545. "path": "pages/PersonnelManagement/Schedule/list",
  546. "style": {
  547. "navigationBarTitleText": "日程安排"
  548. }
  549. },
  550. {
  551. "path": "pages/PersonnelManagement/Schedule/single",
  552. "style": {
  553. "navigationBarTitleText": "详情"
  554. }
  555. },
  556. //调度信息
  557. {
  558. "path": "pages/EducationalAdministration/ArrangeLessonTermAttemper/list",
  559. "style": {
  560. "navigationBarTitleText": "调度信息"
  561. }
  562. },
  563. //请假管理
  564. {
  565. "path": "pages/EducationalAdministration/StuAttendanceLeave/list",
  566. "style": {
  567. "navigationBarTitleText": "请假管理"
  568. }
  569. },
  570. {
  571. "path": "pages/EducationalAdministration/StuAttendanceLeave/single",
  572. "style": {
  573. "navigationBarTitleText": "审核"
  574. }
  575. },
  576. //疫情详细信息
  577. {
  578. "path": "pages/PersonnelManagement/ContactsDetails/list",
  579. "style": {
  580. "navigationBarTitleText": "疫情详细信息"
  581. }
  582. },
  583. {
  584. "path": "pages/PersonnelManagement/ContactsDetails/single",
  585. "style": {
  586. "navigationBarTitleText": "详情"
  587. }
  588. },
  589. //听课记录
  590. {
  591. "path": "pages/LogisticsManagement/ListenClassRecord/list",
  592. "style": {
  593. "navigationBarTitleText": "听课记录"
  594. }
  595. },
  596. {
  597. "path": "pages/LogisticsManagement/ListenClassRecord/single",
  598. "style": {
  599. "navigationBarTitleText": "详情"
  600. }
  601. },
  602. //掌上评教
  603. {
  604. "path": "pages/EducationalAdministration/EvaluationTeach/list",
  605. "style": {
  606. "navigationBarTitleText": "课程列表"
  607. }
  608. },
  609. {
  610. "path": "pages/EducationalAdministration/EvaluationTeach/single",
  611. "style": {
  612. "navigationBarTitleText": "评教"
  613. }
  614. },
  615. //薛
  616. //在线缴费
  617. {
  618. "path": "pages/onlienpay/list",
  619. "style": {
  620. "navigationBarTitleText": "在线缴费"
  621. }
  622. },
  623. //成绩查询
  624. {
  625. "path": "pages/studentSee/list",
  626. "style": {
  627. "navigationBarTitleText": "成绩查询"
  628. }
  629. },
  630. //我的考勤
  631. {
  632. "path": "pages/studentCheck/list",
  633. "style": {
  634. "navigationBarTitleText": "我的考勤"
  635. }
  636. },
  637. //我的处分
  638. {
  639. "path": "pages/StuPunishment/list",
  640. "style": {
  641. "navigationBarTitleText": "我的处分"
  642. }
  643. },
  644. //考试安排
  645. {
  646. "path": "pages/stuExamArrangement/list",
  647. "style": {
  648. "navigationBarTitleText": "考试安排",
  649. "backgroundColor": "#ffffff"
  650. }
  651. },
  652. //奖励信息
  653. {
  654. "path": "pages/StuEncourgement/list",
  655. "style": {
  656. "navigationBarTitleText": "奖励信息"
  657. }
  658. },
  659. //我的课表
  660. {
  661. "path": "pages/timeTable/list",
  662. "style": {
  663. "navigationBarTitleText": "我的课表"
  664. }
  665. },
  666. {
  667. "path": "pages/timeTable/leaveFrom",
  668. "style": {
  669. "navigationBarTitleText": "请假"
  670. }
  671. },
  672. //选修课选课(预)
  673. {
  674. "path": "pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentPre/list",
  675. "style": {
  676. "navigationBarTitleText": "选修课选课(预)"
  677. }
  678. },
  679. {
  680. "path": "pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentPre/from",
  681. "style": {
  682. "navigationBarTitleText": "查看详情"
  683. }
  684. },
  685. //选修课选课
  686. {
  687. "path": "pages/EducationalAdministration/OpenLessonPlanOfElectiveStudent/list",
  688. "style": {
  689. "navigationBarTitleText": "选修课选课"
  690. }
  691. },
  692. {
  693. "path": "pages/EducationalAdministration/OpenLessonPlanOfElectiveStudent/from",
  694. "style": {
  695. "navigationBarTitleText": "查看详情"
  696. }
  697. },
  698. //我的选修课
  699. {
  700. "path": "pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentSelected/list",
  701. "style": {
  702. "navigationBarTitleText": "我的选修课"
  703. }
  704. },
  705. {
  706. "path": "pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentSelected/from",
  707. "style": {
  708. "navigationBarTitleText": "查看详情"
  709. }
  710. },
  711. //学费查询
  712. {
  713. "path": "pages/StuPayFee/list",
  714. "style": {
  715. "navigationBarTitleText": "学费查询"
  716. }
  717. },
  718. //自诊打卡
  719. {
  720. "path": "pages/PersonnelManagement/EpidemicSituationCopy/list",
  721. "style": {
  722. "navigationBarTitleText": "自诊打卡"
  723. }
  724. },
  725. {
  726. "path": "pages/PersonnelManagement/EpidemicSituationCopy/from",
  727. "style": {
  728. "navigationBarTitleText": "查看详情"
  729. }
  730. },
  731. //班级自诊打卡测温
  732. {
  733. "path": "pages/EducationalAdministration/Thermography/measure/list",
  734. "style": {
  735. "navigationBarTitleText": "班级自诊打卡测温"
  736. }
  737. },
  738. //报道流程
  739. {
  740. "path": "pages/notice/list",
  741. "style": {
  742. "navigationBarTitleText": "报道流程"
  743. }
  744. },
  745. //扫码入教学楼记录
  746. {
  747. "path": "pages/EducationalAdministration/R_EnterBuilding/list",
  748. "style": {
  749. "navigationBarTitleText": "扫码入教学楼记录"
  750. }
  751. },
  752. {
  753. "path": "pages/EducationalAdministration/R_EnterBuilding/from",
  754. "style": {
  755. "navigationBarTitleText": "详情"
  756. }
  757. },
  758. //量表考核
  759. {
  760. "path": "pages/Ask/list",
  761. "style": {
  762. "navigationBarTitleText": "量表考核"
  763. }
  764. },
  765. {
  766. "path": "pages/Ask/from",
  767. "style": {
  768. "navigationBarTitleText": "开始答卷"
  769. }
  770. },
  771. //社团签到
  772. {
  773. "path": "pages/PersonnelManagement/CommunityAttendance/Index/list",
  774. "style": {
  775. "navigationBarTitleText": "社团签到"
  776. }
  777. },
  778. //周末做
  779. //入校测试
  780. {
  781. "path": "pages/EducationalAdministration/StudentQRCode/list",
  782. "style": {
  783. "navigationBarTitleText": "入校测试"
  784. }
  785. },
  786. {
  787. "path": "pages/EducationalAdministration/StudentQRCode/Normal/list",
  788. "style": {
  789. "navigationBarTitleText": "正常"
  790. }
  791. },
  792. {
  793. "path": "pages/EducationalAdministration/StudentQRCode/AbNormalWeak/list",
  794. "style": {
  795. "navigationBarTitleText": "异常微弱"
  796. }
  797. },
  798. {
  799. "path": "pages/EducationalAdministration/StudentQRCode/AbNormalSerious/list",
  800. "style": {
  801. "navigationBarTitleText": "异常严重"
  802. }
  803. },
  804. //工资条
  805. {
  806. "path": "pages/wages/list",
  807. "style": {
  808. "navigationBarTitleText": "工资条"
  809. }
  810. },
  811. //监考安排
  812. {
  813. "path": "pages/examArrangement/list",
  814. "style": {
  815. "navigationBarTitleText": "监考安排"
  816. }
  817. },
  818. //教师考勤
  819. {
  820. "path": "pages/attendance/list",
  821. "style": {
  822. "navigationBarTitleText": "教师考勤"
  823. }
  824. },
  825. //学生考勤记录
  826. {
  827. "path": "pages/myAttendance/list",
  828. "style": {
  829. "navigationBarTitleText": "学生考勤记录"
  830. }
  831. },
  832. {
  833. "path": "pages/myAttendance/single",
  834. "style": {
  835. "navigationBarTitleText": "学生签到记录"
  836. }
  837. },
  838. //课堂考勤
  839. {
  840. "path": "pages/studentAttendance/list",
  841. "style": {
  842. "navigationBarTitleText": "课堂考勤"
  843. }
  844. },
  845. {
  846. "path": "pages/studentAttendance/single",
  847. "style": {
  848. "navigationBarTitleText": "学生签到"
  849. }
  850. },
  851. //教学工作量
  852. {
  853. "path": "pages/TeacherWorkload/list",
  854. "style": {
  855. "navigationBarTitleText": "教学工作量"
  856. }
  857. },
  858. //实盘结果录入
  859. {
  860. "path": "pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryList/list",
  861. "style": {
  862. "navigationBarTitleText": "实盘结果录入"
  863. }
  864. },
  865. {
  866. "path": "pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryItemList/list",
  867. "style": {
  868. "navigationBarTitleText": "盘点单"
  869. }
  870. },
  871. {
  872. "path": "pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryItemList/from",
  873. "style": {
  874. "navigationBarTitleText": "实盘结果录入"
  875. }
  876. },
  877. //新生信息完善
  878. {
  879. "path": "pages/welcome/list",
  880. "style": {
  881. "navigationBarTitleText": "新生信息完善"
  882. }
  883. },
  884. //新生入校流程
  885. {
  886. "path": "pages/notice2/list",
  887. "style": {
  888. "navigationBarTitleText": "新生入校流程"
  889. }
  890. },
  891. //填写贷款回执码 /EducationalAdministration/StuInfoFresh/StudentLoan
  892. {
  893. "path": "pages/EducationalAdministration/StuInfoFresh/StudentLoan/list",
  894. "style": {
  895. "navigationBarTitleText": "填写贷款回执码"
  896. }
  897. },
  898. //生成报到二维码
  899. {
  900. "path": "pages/EducationalAdministration/StuInfoFresh/RegisterQRCode/list",
  901. "style": {
  902. "navigationBarTitleText": "生成报到二维码"
  903. }
  904. },
  905. //新生缴费管理
  906. {
  907. "path": "pages/EducationalAdministration/StuInfoFresh/PayFee/list",
  908. "style": {
  909. "navigationBarTitleText": "新生缴费管理"
  910. }
  911. },
  912. {
  913. "path": "pages/EducationalAdministration/StuInfoFresh/PayFee/single",
  914. "style": {
  915. "navigationBarTitleText": "缴费详情"
  916. }
  917. },
  918. //扫码报到
  919. {
  920. "path": "pages/WelcomNewStudents/ConfirmStudentsCheckIn/list",
  921. "style": {
  922. "navigationBarTitleText": "扫码报到"
  923. }
  924. },
  925. {
  926. "path": "pages/WelcomNewStudents/ConfirmStudentsCheckIn/from",
  927. "style": {
  928. "navigationBarTitleText": "确认报到"
  929. }
  930. },
  931. //扫码入校记录
  932. {
  933. "path": "pages/EducationalAdministration/R_EnterSchool/list",
  934. "style": {
  935. "navigationBarTitleText": "扫码入校记录"
  936. }
  937. },
  938. //通知公告
  939. {
  940. "path": "pages/LR_OAModule/list",
  941. "style": {
  942. "navigationBarTitleText": "通知公告"
  943. }
  944. },
  945. //会议工作管理
  946. {
  947. "path": "pages/PersonnelManagement/MeetingManagement/list",
  948. "style": {
  949. "navigationBarTitleText": "会议工作管理"
  950. }
  951. },
  952. {
  953. "path": "pages/PersonnelManagement/MeetingManagement/single",
  954. "style": {
  955. "navigationBarTitleText": "详情"
  956. }
  957. },
  958. //会议纪要
  959. {
  960. "path": "pages/PersonnelManagement/MeetingMinutes/list",
  961. "style": {
  962. "navigationBarTitleText": "会议纪要"
  963. }
  964. },
  965. {
  966. "path": "pages/PersonnelManagement/MeetingMinutes/single",
  967. "style": {
  968. "navigationBarTitleText": "详情"
  969. }
  970. },
  971. //会议签到记录
  972. {
  973. "path": "pages/PersonnelManagement/MeetingSignInRecord/list",
  974. "style": {
  975. "navigationBarTitleText": "会议签到记录"
  976. }
  977. },
  978. {
  979. "path": "pages/PersonnelManagement/MeetingSignInRecord/single",
  980. "style": {
  981. "navigationBarTitleText": "详情"
  982. }
  983. },
  984. {
  985. "path": "pages/PersonnelManagement/MeetingMy/list",
  986. "style": {
  987. "navigationBarTitleText": "我的会议"
  988. }
  989. },
  990. {
  991. "path": "pages/PersonnelManagement/MeetingMy/single",
  992. "style": {
  993. "navigationBarTitleText": "详情"
  994. }
  995. },
  996. {
  997. "path": "pages/PersonnelManagement/MeetingSignInScan/list",
  998. "style": {
  999. "navigationBarTitleText": "会议扫码签到"
  1000. }
  1001. },
  1002. {
  1003. "path": "pages/MealCardRunTab/list",
  1004. "style": {
  1005. "navigationBarTitleText": "一卡通流水"
  1006. }
  1007. },
  1008. {
  1009. "path" : "pages/LR_OAModule/noticeExamine",
  1010. "style" :
  1011. {
  1012. "navigationBarTitleText": "通知公告",
  1013. "enablePullDownRefresh": false
  1014. }
  1015. },
  1016. //寝室日常考核管理
  1017. {
  1018. "path": "pages/LogisticsManagement/Acc_DailyAssess/list",
  1019. "style": {
  1020. "navigationBarTitleText": "寝室日常考核管理"
  1021. }
  1022. },
  1023. {
  1024. "path": "pages/LogisticsManagement/Acc_DailyAssess/single",
  1025. "style": {
  1026. "navigationBarTitleText": "详情"
  1027. }
  1028. },
  1029. //公共区域卫生管理
  1030. {
  1031. "path": "pages/LogisticsManagement/Acc_PublicAreaHealth/list",
  1032. "style": {
  1033. "navigationBarTitleText": "公共区域卫生管理"
  1034. }
  1035. },
  1036. {
  1037. "path": "pages/LogisticsManagement/Acc_PublicAreaHealth/single",
  1038. "style": {
  1039. "navigationBarTitleText": "详情"
  1040. }
  1041. },
  1042. //学生日常规管理
  1043. {
  1044. "path": "pages/LogisticsManagement/Acc_StuDayRoutine/list",
  1045. "style": {
  1046. "navigationBarTitleText": "学生日常规管理"
  1047. }
  1048. },
  1049. {
  1050. "path": "pages/LogisticsManagement/Acc_StuDayRoutine/single",
  1051. "style": {
  1052. "navigationBarTitleText": "详情"
  1053. }
  1054. },
  1055. //宿舍物品损坏上报
  1056. {
  1057. "path": "pages/LogisticsManagement/Acc_GoodsDemage/list",
  1058. "style": {
  1059. "navigationBarTitleText": "宿舍物品损坏上报"
  1060. }
  1061. },
  1062. {
  1063. "path": "pages/LogisticsManagement/Acc_GoodsDemage/single",
  1064. "style": {
  1065. "navigationBarTitleText": "详情"
  1066. }
  1067. },
  1068. //毕业信息统计
  1069. {
  1070. "path": "pages/EducationalAdministration/StuGraduateStatistic/list",
  1071. "style": {
  1072. "navigationBarTitleText": "毕业信息统计"
  1073. }
  1074. },
  1075. {
  1076. "path": "pages/EducationalAdministration/StuGraduateStatistic/single",
  1077. "style": {
  1078. "navigationBarTitleText": "详情"
  1079. }
  1080. }
  1081. ],
  1082. // 全局样式
  1083. "globalStyle": {
  1084. "navigationBarTextStyle": "white", //导航栏标题颜色及状态栏前景颜色
  1085. "enablePullDownRefresh": false, //是否开启下拉刷新
  1086. "navigationBarBackgroundColor": "#0C86D8", //导航栏背景颜色
  1087. "backgroundColor": "#f3f3f3", //窗口背景色
  1088. "navigationBarTitleText": "数字化校园", //导航栏标题文字内容
  1089. "mp-alipay": {
  1090. "allowsBounceVertical": "NO"
  1091. }
  1092. },
  1093. // 底边栏
  1094. "tabBar": {
  1095. "color": "#8c8c8c",
  1096. "selectedColor": "#3398DC",
  1097. "borderStyle": "black",
  1098. "backgroundColor": "#f5f5f5",
  1099. "list": [{
  1100. "pagePath": "pages/home",
  1101. "iconPath": "static/img-bar/tab-home.png",
  1102. "selectedIconPath": "static/img-bar/tab-home-active.png",
  1103. "text": "首页"
  1104. // }, {
  1105. // "pagePath": "pages/msg",
  1106. // "iconPath": "static/img-bar/tab-msg.png",
  1107. // "selectedIconPath": "static/img-bar/tab-msg-active.png",
  1108. // "text": "消息"
  1109. },
  1110. {
  1111. "pagePath": "pages/contact",
  1112. "iconPath": "static/img-bar/tab-contact.png",
  1113. "selectedIconPath": "static/img-bar/tab-contact-active.png",
  1114. "text": "通讯录"
  1115. }, {
  1116. "pagePath": "pages/my",
  1117. "iconPath": "static/img-bar/tab-my.png",
  1118. "selectedIconPath": "static/img-bar/tab-my-active.png",
  1119. "text": "我的"
  1120. }
  1121. ]
  1122. },
  1123. // 自动引入组件配置
  1124. "easycom": {
  1125. "custom": {
  1126. // 组件演示页专用组件,用于点击展开显示组件用法
  1127. "l-demo-description": "@/components/learun-app/demo-description.vue",
  1128. // 滚动列表,支持下拉刷新/上拉加载
  1129. "l-scroll-list": "@/components/learun-app/scroll-list.vue",
  1130. // 动态表单
  1131. "l-customform-table": "@/components/learun-app/customform-table.vue",
  1132. "l-customform": "@/components/learun-app/customform.vue",
  1133. // 扩展表单选项
  1134. "l-layer-picker": "@/components/learun-app/layer-picker.vue",
  1135. "l-organize-picker": "@/components/learun-app/organize-picker.vue",
  1136. "l-upload-file": "@/components/learun-app/upload-file.vue",
  1137. "l-organize-tree": "@/components/learun-app/organize-tree.vue",
  1138. "l-organize-single-item": "@/components/learun-app/organize-single-item.vue",
  1139. // 工作流页面专用
  1140. "l-workflow-action": "@/components/learun-app/workflow-action.vue",
  1141. "l-workflow-timeline": "@/components/learun-app/workflow-timeline.vue",
  1142. // 自定义业务页面专用
  1143. "l-customlist-banner": "@/components/learun-app/customlist-banner.vue",
  1144. "l-customlist-add": "@/components/learun-app/customlist-add.vue",
  1145. "l-customlist-action": "@/components/learun-app/customlist-action.vue",
  1146. "l-customlist-sidepage-datefilter": "@/components/learun-app/customlist-sidepage-datefilter.vue",
  1147. "l-customlist": "@/components/learun-app/customlist.vue",
  1148. // jshint ignore:start
  1149. // LearunMPUI 小程序 UI 库基础组件
  1150. // 引入分为阿里小程序版和非阿里小程序版,因为阿里小程序需要单独适配
  1151. // #ifdef MP-ALIPAY
  1152. "l-(.*)": "@/components/learun-mpui/learun-ui-ali/$1.vue",
  1153. // #endif
  1154. // #ifndef MP-ALIPAY
  1155. "l-(.*)": "@/components/learun-mpui/learun-ui-mp/$1.vue",
  1156. // #endif
  1157. // jshint ignore:end
  1158. // 第三方组件
  1159. "tki-qrcode": "@/components/tki-qrcode/tki-qrcode.vue",
  1160. "u-parse": "@/components/u-parse/u-parse.vue"
  1161. }
  1162. }
  1163. }
  1164. // "condition" : { //模式配置,仅开发期间生效
  1165. // "current": 0, //当前激活的模式(list 的索引项)
  1166. // "list": [
  1167. // {
  1168. // "name": "", //模式名称
  1169. // "path": "", //启动页面,必选
  1170. // "query": "" //启动参数,在页面的onLoad函数里面得到
  1171. // }
  1172. // ]
  1173. // }
  1174. // }