You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

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