项目结构
12114
└─ 15-lms-notice├─ .get-weixin-code.html├─ README.md├─ app│ ├─ common│ │ ├─ PKCS7.js│ │ ├─ README.md│ │ └─ wechatUtil.js│ ├─ constant│ │ ├─ README.md│ │ ├─ constant.js│ │ └─ error.js│ ├─ controller│ │ ├─ README.md│ │ ├─ boc.js│ │ └─ wechat.js│ ├─ public│ │ ├─ README.md│ │ ├─ font│ │ │ ├─ songti.ttf│ │ │ ├─ songtiBold.ttf│ │ │ └─ yahei.ttf│ │ ├─ image│ │ │ ├─ banner-1.jpeg│ │ │ ├─ banner-2.jpeg│ │ │ ├─ banner-3.jpeg│ │ │ ├─ bindStudent-local.png│ │ │ ├─ bindStudent-prod.png│ │ │ ├─ empty.png│ │ │ ├─ messageList-local.png│ │ │ ├─ messageList-prod.png│ │ │ ├─ student-avatar.png│ │ │ └─ 已缴费.png│ │ ├─ logo-circle.png│ │ ├─ logo-full.png│ │ └─ plugin│ │ ├─ jsoneditor│ │ │ ├─ img│ │ │ │ └─ jsoneditor-icons.svg│ │ │ ├─ jsoneditor.css│ │ │ └─ jsoneditor.js│ │ └─ vant│ │ ├─ index.css│ │ └─ vant.min.js│ ├─ router.js│ ├─ schedule│ │ ├─ access_token.js│ │ ├─ collectTaskFromExam.js│ │ ├─ collectTaskFromMentor.js│ │ ├─ noticeTask.js│ │ └─ paymentOrder.js│ ├─ service│ │ ├─ boc.js│ │ ├─ message.js│ │ ├─ notice.js│ │ ├─ noticeTask.js│ │ ├─ noticeTemplate.js│ │ ├─ tuition.js│ │ └─ wechat.js│ └─ view│ ├─ component│ │ ├─ mobile│ │ │ ├─ adSwipe.html│ │ │ ├─ footer.html│ │ │ ├─ header.html│ │ │ └─ links.html│ │ └─ vueJsonEditor.html│ ├─ page│ │ ├─ bindStudent.html│ │ ├─ messageList.html│ │ ├─ noticeManagement.html│ │ ├─ noticeTaskManagement.html│ │ ├─ noticeTaskPushManagement.html│ │ ├─ noticeTemplate│ │ │ ├─ appraisal.html│ │ │ ├─ commendation.html│ │ │ ├─ examResultViewer.html│ │ │ ├─ invitation.html│ │ │ ├─ letter.html│ │ │ ├─ paymentBill.html│ │ │ ├─ paymentDetail.html│ │ │ └─ welcomeLetter.html│ │ └─ otherBrowser.html│ ├─ pageDoc│ │ ├─ _404.md│ │ ├─ _sidebar.md│ │ ├─ development.md│ │ ├─ image│ │ │ └─ development│ │ │ ├─ 1680076786552.png│ │ │ └─ 1680076881342.png│ │ └─ upload│ │ ├─ 微信公众平台1.png│ │ ├─ 微信公众平台2.png│ │ ├─ 微信公众平台3.png│ │ ├─ 微信沙箱1.png│ │ └─ 微信沙箱2.png│ └─ template│ ├─ jhTemplate.html│ └─ vantTemplate.html├─ app.js├─ config│ ├─ config.default.js│ ├─ config.env.example.js│ ├─ config.local.example.js│ ├─ config.local.js│ ├─ config.prod.example.js│ └─ plugin.js├─ jsconfig.json├─ package-lock.json├─ package.json└─ sql├─ ddl.sql├─ exam_viewer.sql├─ init.sql└─ mock.sql