Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

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