├── .DS_Store ├── .gitattributes ├── README.md ├── pom.xml └── src └── main ├── java └── com │ ├── annotation │ ├── APPLoginUser.java │ ├── IgnoreAuth.java │ └── LoginUser.java │ ├── config │ ├── AlipayConfig.java │ └── MyMetaObjectHandler.java │ ├── controller │ ├── CommonController.java │ ├── ConfigController.java │ ├── FileController.java │ ├── GongzuofenpeiController.java │ ├── GongzuotijiaoController.java │ ├── JinjitongzhiController.java │ ├── PiyaozhuanquController.java │ ├── QiuzhuleixingController.java │ ├── QiuzhuxinxiController.java │ ├── StoreupController.java │ ├── UserController.java │ ├── WuzifenpeiController.java │ ├── WuzishenqingController.java │ ├── WuzixinxiController.java │ ├── WuzizhongleiController.java │ ├── XinlizhishiController.java │ ├── YiliaojiuzhuController.java │ ├── YonghuController.java │ ├── ZhaomubaomingController.java │ ├── ZhaomuxinxiController.java │ ├── ZhiyuanzheController.java │ └── ZhiyuanzheshenqingController.java │ ├── dao │ ├── CommonDao.java │ ├── ConfigDao.java │ ├── GongzuofenpeiDao.java │ ├── GongzuotijiaoDao.java │ ├── JinjitongzhiDao.java │ ├── PiyaozhuanquDao.java │ ├── QiuzhuleixingDao.java │ ├── QiuzhuxinxiDao.java │ ├── StoreupDao.java │ ├── TokenDao.java │ ├── UserDao.java │ ├── WuzifenpeiDao.java │ ├── WuzishenqingDao.java │ ├── WuzixinxiDao.java │ ├── WuzizhongleiDao.java │ ├── XinlizhishiDao.java │ ├── YiliaojiuzhuDao.java │ ├── YonghuDao.java │ ├── ZhaomubaomingDao.java │ ├── ZhaomuxinxiDao.java │ ├── ZhiyuanzheDao.java │ └── ZhiyuanzheshenqingDao.java │ ├── entity │ ├── ConfigEntity.java │ ├── EIException.java │ ├── GongzuofenpeiEntity.java │ ├── GongzuotijiaoEntity.java │ ├── JinjitongzhiEntity.java │ ├── PiyaozhuanquEntity.java │ ├── QiuzhuleixingEntity.java │ ├── QiuzhuxinxiEntity.java │ ├── StoreupEntity.java │ ├── TokenEntity.java │ ├── UserEntity.java │ ├── WuzifenpeiEntity.java │ ├── WuzishenqingEntity.java │ ├── WuzixinxiEntity.java │ ├── WuzizhongleiEntity.java │ ├── XinlizhishiEntity.java │ ├── YiliaojiuzhuEntity.java │ ├── YonghuEntity.java │ ├── ZhaomubaomingEntity.java │ ├── ZhaomuxinxiEntity.java │ ├── ZhiyuanzheEntity.java │ ├── ZhiyuanzheshenqingEntity.java │ ├── model │ │ ├── GongzuofenpeiModel.java │ │ ├── GongzuotijiaoModel.java │ │ ├── JinjitongzhiModel.java │ │ ├── PiyaozhuanquModel.java │ │ ├── QiuzhuleixingModel.java │ │ ├── QiuzhuxinxiModel.java │ │ ├── StoreupModel.java │ │ ├── WuzifenpeiModel.java │ │ ├── WuzishenqingModel.java │ │ ├── WuzixinxiModel.java │ │ ├── WuzizhongleiModel.java │ │ ├── XinlizhishiModel.java │ │ ├── YiliaojiuzhuModel.java │ │ ├── YonghuModel.java │ │ ├── ZhaomubaomingModel.java │ │ ├── ZhaomuxinxiModel.java │ │ ├── ZhiyuanzheModel.java │ │ └── ZhiyuanzheshenqingModel.java │ ├── view │ │ ├── GongzuofenpeiView.java │ │ ├── GongzuotijiaoView.java │ │ ├── JinjitongzhiView.java │ │ ├── PiyaozhuanquView.java │ │ ├── QiuzhuleixingView.java │ │ ├── QiuzhuxinxiView.java │ │ ├── StoreupView.java │ │ ├── WuzifenpeiView.java │ │ ├── WuzishenqingView.java │ │ ├── WuzixinxiView.java │ │ ├── WuzizhongleiView.java │ │ ├── XinlizhishiView.java │ │ ├── YiliaojiuzhuView.java │ │ ├── YonghuView.java │ │ ├── ZhaomubaomingView.java │ │ ├── ZhaomuxinxiView.java │ │ ├── ZhiyuanzheView.java │ │ └── ZhiyuanzheshenqingView.java │ └── vo │ │ ├── GongzuofenpeiVO.java │ │ ├── GongzuotijiaoVO.java │ │ ├── JinjitongzhiVO.java │ │ ├── PiyaozhuanquVO.java │ │ ├── QiuzhuleixingVO.java │ │ ├── QiuzhuxinxiVO.java │ │ ├── StoreupVO.java │ │ ├── WuzifenpeiVO.java │ │ ├── WuzishenqingVO.java │ │ ├── WuzixinxiVO.java │ │ ├── WuzizhongleiVO.java │ │ ├── XinlizhishiVO.java │ │ ├── YiliaojiuzhuVO.java │ │ ├── YonghuVO.java │ │ ├── ZhaomubaomingVO.java │ │ ├── ZhaomuxinxiVO.java │ │ ├── ZhiyuanzheVO.java │ │ └── ZhiyuanzheshenqingVO.java │ ├── interceptor │ └── AuthorizationInterceptor.java │ ├── model │ └── enums │ │ └── TypeEnum.java │ ├── service │ ├── CommonService.java │ ├── ConfigService.java │ ├── GongzuofenpeiService.java │ ├── GongzuotijiaoService.java │ ├── JinjitongzhiService.java │ ├── PiyaozhuanquService.java │ ├── QiuzhuleixingService.java │ ├── QiuzhuxinxiService.java │ ├── StoreupService.java │ ├── TokenService.java │ ├── UserService.java │ ├── WuzifenpeiService.java │ ├── WuzishenqingService.java │ ├── WuzixinxiService.java │ ├── WuzizhongleiService.java │ ├── XinlizhishiService.java │ ├── YiliaojiuzhuService.java │ ├── YonghuService.java │ ├── ZhaomubaomingService.java │ ├── ZhaomuxinxiService.java │ ├── ZhiyuanzheService.java │ ├── ZhiyuanzheshenqingService.java │ └── impl │ │ ├── CommonServiceImpl.java │ │ ├── ConfigServiceImpl.java │ │ ├── GongzuofenpeiServiceImpl.java │ │ ├── GongzuotijiaoServiceImpl.java │ │ ├── JinjitongzhiServiceImpl.java │ │ ├── PiyaozhuanquServiceImpl.java │ │ ├── QiuzhuleixingServiceImpl.java │ │ ├── QiuzhuxinxiServiceImpl.java │ │ ├── StoreupServiceImpl.java │ │ ├── TokenServiceImpl.java │ │ ├── UserServiceImpl.java │ │ ├── WuzifenpeiServiceImpl.java │ │ ├── WuzishenqingServiceImpl.java │ │ ├── WuzixinxiServiceImpl.java │ │ ├── WuzizhongleiServiceImpl.java │ │ ├── XinlizhishiServiceImpl.java │ │ ├── YiliaojiuzhuServiceImpl.java │ │ ├── YonghuServiceImpl.java │ │ ├── ZhaomubaomingServiceImpl.java │ │ ├── ZhaomuxinxiServiceImpl.java │ │ ├── ZhiyuanzheServiceImpl.java │ │ └── ZhiyuanzheshenqingServiceImpl.java │ └── utils │ ├── BaiduUtil.java │ ├── CommonUtil.java │ ├── FileUtil.java │ ├── HttpClientUtils.java │ ├── JQPageInfo.java │ ├── MD5Util.java │ ├── MPUtil.java │ ├── PageUtils.java │ ├── Query.java │ ├── R.java │ ├── SQLFilter.java │ ├── SpringContextUtils.java │ └── ValidatorUtils.java ├── resources ├── config.properties ├── log4j.properties ├── mapper │ ├── CommonDao.xml │ ├── ConfigDao.xml │ ├── GongzuofenpeiDao.xml │ ├── GongzuotijiaoDao.xml │ ├── JinjitongzhiDao.xml │ ├── PiyaozhuanquDao.xml │ ├── QiuzhuleixingDao.xml │ ├── QiuzhuxinxiDao.xml │ ├── StoreupDao.xml │ ├── TokenDao.xml │ ├── UserDao.xml │ ├── WuzifenpeiDao.xml │ ├── WuzishenqingDao.xml │ ├── WuzixinxiDao.xml │ ├── WuzizhongleiDao.xml │ ├── XinlizhishiDao.xml │ ├── YiliaojiuzhuDao.xml │ ├── YonghuDao.xml │ ├── ZhaomubaomingDao.xml │ ├── ZhaomuxinxiDao.xml │ ├── ZhiyuanzheDao.xml │ └── ZhiyuanzheshenqingDao.xml ├── mybatis │ └── mybatis-config.xml └── spring │ ├── spring-mvc.xml │ ├── spring-mybatis.xml │ └── spring.xml └── webapp ├── WEB-INF └── web.xml ├── admin ├── 1-install.bat ├── 2-run.bat ├── 3-build.bat ├── babel.config.js ├── dist │ ├── css │ │ ├── app.0d07be7a.css │ │ └── chunk-vendors.a72b0961.css │ ├── favicon.ico │ ├── fonts │ │ ├── element-icons.535877f5.woff │ │ └── element-icons.732389de.ttf │ ├── img │ │ ├── 404.3648f234.png │ │ └── zhongguo.20798bfa.png │ ├── index.html │ └── js │ │ ├── app.097b3bee.js │ │ ├── app.097b3bee.js.map │ │ ├── chunk-vendors.46bca91a.js │ │ └── chunk-vendors.46bca91a.js.map ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ ├── css │ │ │ ├── canvas-bg-1.css │ │ │ ├── canvas-bg-2.css │ │ │ ├── canvas-bg-3.css │ │ │ ├── element-variables.scss │ │ │ └── style.scss │ │ ├── img │ │ │ ├── 404.png │ │ │ ├── avator.png │ │ │ ├── bg.jpg │ │ │ ├── captcha.jpg │ │ │ ├── login.png │ │ │ ├── logo.png │ │ │ ├── password.png │ │ │ ├── role.png │ │ │ ├── test │ │ │ │ ├── jianshe.png │ │ │ │ ├── jiaotong.png │ │ │ │ ├── nongye.png │ │ │ │ ├── weixin.png │ │ │ │ ├── zhifubao.png │ │ │ │ └── zhongguo.png │ │ │ └── username.png │ │ └── js │ │ │ ├── canvas-bg-1.js │ │ │ ├── canvas-bg-2.js │ │ │ ├── canvas-bg-3.js │ │ │ ├── canvas-bg-4.js │ │ │ └── canvas-bg-5.js │ ├── components │ │ ├── SvgIcon │ │ │ └── index.vue │ │ ├── common │ │ │ ├── BreadCrumbs.vue │ │ │ ├── BreadCrumbs.vue.bak │ │ │ ├── Editor.vue │ │ │ ├── ExcelFileUpload.vue │ │ │ └── FileUpload.vue │ │ ├── home │ │ │ ├── HomeCard.vue │ │ │ ├── HomeChart.vue │ │ │ ├── HomeComment.vue │ │ │ └── HomeProgress.vue │ │ └── index │ │ │ ├── IndexAside.vue │ │ │ ├── IndexAsideStatic.vue │ │ │ ├── IndexAsideStatic.vue.bak │ │ │ ├── IndexAsideSub.vue │ │ │ ├── IndexHeader.vue │ │ │ ├── IndexHeader.vue.bak │ │ │ ├── IndexMain.vue │ │ │ └── IndexMain.vue.bak │ ├── icons │ │ ├── index.js │ │ ├── svg │ │ │ ├── 404.svg │ │ │ ├── articleEdit.svg │ │ │ ├── banner.svg │ │ │ ├── bug.svg │ │ │ ├── build.svg │ │ │ ├── cfg.svg │ │ │ ├── channel.svg │ │ │ ├── chart.svg │ │ │ ├── clipboard.svg │ │ │ ├── code.svg │ │ │ ├── component.svg │ │ │ ├── contacts.svg │ │ │ ├── dashboard.svg │ │ │ ├── date.svg │ │ │ ├── dept.svg │ │ │ ├── dict.svg │ │ │ ├── documentation.svg │ │ │ ├── download.svg │ │ │ ├── drag.svg │ │ │ ├── druid.svg │ │ │ ├── edit.svg │ │ │ ├── education.svg │ │ │ ├── email.svg │ │ │ ├── excel.svg │ │ │ ├── exit-fullscreen.svg │ │ │ ├── eye-open.svg │ │ │ ├── file.svg │ │ │ ├── form.svg │ │ │ ├── fullscreen.svg │ │ │ ├── icon.svg │ │ │ ├── international.svg │ │ │ ├── job.svg │ │ │ ├── language.svg │ │ │ ├── link.svg │ │ │ ├── list.svg │ │ │ ├── lock.svg │ │ │ ├── log.svg │ │ │ ├── logininfor.svg │ │ │ ├── menu.svg │ │ │ ├── message.svg │ │ │ ├── money.svg │ │ │ ├── monitor.svg │ │ │ ├── nested.svg │ │ │ ├── nested0.svg │ │ │ ├── online.svg │ │ │ ├── operation.svg │ │ │ ├── password.svg │ │ │ ├── password0.svg │ │ │ ├── pdf.svg │ │ │ ├── people.svg │ │ │ ├── peoples.svg │ │ │ ├── phone.svg │ │ │ ├── post.svg │ │ │ ├── qq.svg │ │ │ ├── search.svg │ │ │ ├── sender.svg │ │ │ ├── server.svg │ │ │ ├── shopping.svg │ │ │ ├── shoppingCard.svg │ │ │ ├── size.svg │ │ │ ├── skill.svg │ │ │ ├── star.svg │ │ │ ├── svg │ │ │ │ ├── AI.svg │ │ │ │ ├── AIDeviceLayout.svg │ │ │ │ ├── EIM.svg │ │ │ │ ├── VIP.svg │ │ │ │ ├── agricultureRegister.svg │ │ │ │ ├── area.svg │ │ │ │ ├── base.svg │ │ │ │ ├── batch.svg │ │ │ │ ├── board.svg │ │ │ │ ├── board1.svg │ │ │ │ ├── boardConfig.svg │ │ │ │ ├── cfg.svg │ │ │ │ ├── code.svg │ │ │ │ ├── company.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── crops.svg │ │ │ │ ├── dashboard.svg │ │ │ │ ├── dataAbnormal.svg │ │ │ │ ├── dataLack.svg │ │ │ │ ├── dept.svg │ │ │ │ ├── device.svg │ │ │ │ ├── deviceMonitorData.svg │ │ │ │ ├── dict.svg │ │ │ │ ├── diseasesinsect.svg │ │ │ │ ├── diseasesinsects.svg │ │ │ │ ├── documentation.svg │ │ │ │ ├── email.svg │ │ │ │ ├── environmental.svg │ │ │ │ ├── eye-open.svg │ │ │ │ ├── farmingProject.svg │ │ │ │ ├── finance.svg │ │ │ │ ├── financeBudget.svg │ │ │ │ ├── financeReality.svg │ │ │ │ ├── firm.svg │ │ │ │ ├── firms.svg │ │ │ │ ├── harvestBatch.svg │ │ │ │ ├── harvestDetection.svg │ │ │ │ ├── harvestManage.svg │ │ │ │ ├── harvestWorks.svg │ │ │ │ ├── heavyMetalDetection.svg │ │ │ │ ├── home.svg │ │ │ │ ├── inspection.svg │ │ │ │ ├── internet.svg │ │ │ │ ├── internetActive.svg │ │ │ │ ├── log.svg │ │ │ │ ├── mainSystem.svg │ │ │ │ ├── mainSystemActive.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── monitorEquipment.svg │ │ │ │ ├── news.svg │ │ │ │ ├── order.svg │ │ │ │ ├── password.svg │ │ │ │ ├── peoples.svg │ │ │ │ ├── pest.svg │ │ │ │ ├── pestActive.svg │ │ │ │ ├── pesticideResidue.svg │ │ │ │ ├── pests.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── plant.svg │ │ │ │ ├── plants.svg │ │ │ │ ├── plantsActive.svg │ │ │ │ ├── residual.svg │ │ │ │ ├── retroactiveCoding.svg │ │ │ │ ├── scheme.svg │ │ │ │ ├── source.svg │ │ │ │ ├── sourceActive.svg │ │ │ │ ├── system.svg │ │ │ │ ├── task.svg │ │ │ │ ├── tempFarm.svg │ │ │ │ ├── traceability.svg │ │ │ │ ├── traceabilityList.svg │ │ │ │ ├── traceabilityStyle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── user0.svg │ │ │ │ ├── validCode.svg │ │ │ │ ├── video.svg │ │ │ │ ├── videoEquipment.svg │ │ │ │ ├── videoKey.svg │ │ │ │ ├── vipCustomized.svg │ │ │ │ ├── warnings.svg │ │ │ │ ├── workOrder.svg │ │ │ │ ├── ┐┤░х╣▄└э.svg │ │ │ │ └── ╓╪╜Ё╩Ї╝ь▓т╣▄└э.svg │ │ │ ├── swagger.svg │ │ │ ├── system.svg │ │ │ ├── tab.svg │ │ │ ├── table.svg │ │ │ ├── table0.svg │ │ │ ├── task.svg │ │ │ ├── template.svg │ │ │ ├── theme.svg │ │ │ ├── tool.svg │ │ │ ├── tree-table.svg │ │ │ ├── tree.svg │ │ │ ├── user.svg │ │ │ ├── user0.svg │ │ │ ├── validCode.svg │ │ │ ├── wechat.svg │ │ │ └── zip.svg │ │ └── svgo.yml │ ├── main.js │ ├── router │ │ └── router-static.js │ ├── store │ │ └── store.js │ ├── utils │ │ ├── api.js │ │ ├── base.js │ │ ├── http.js │ │ ├── i18n.js │ │ ├── menu.js │ │ ├── storage.js │ │ ├── utils.js │ │ └── validate.js │ └── views │ │ ├── 404.vue │ │ ├── center.vue │ │ ├── home.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── modules │ │ ├── config │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── gongzuofenpei │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── gongzuotijiao │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── jinjitongzhi │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── piyaozhuanqu │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── qiuzhuleixing │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── qiuzhuxinxi │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── storeup │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── users │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── wuzifenpei │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── wuzishenqing │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── wuzixinxi │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── wuzizhonglei │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── xinlizhishi │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── yiliaojiuzhu │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── yonghu │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── zhaomubaoming │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── zhaomuxinxi │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── zhiyuanzhe │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ └── zhiyuanzheshenqing │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── pay.vue │ │ ├── register.vue │ │ ├── update-password.vue │ │ └── update-password.vue.bak └── vue.config.js ├── front ├── css │ ├── bootstrap.min.css │ ├── canvas-bg-1.css │ ├── canvas-bg-2.css │ ├── canvas-bg-3.css │ ├── canvas-bg-4.css │ ├── canvas-bg-5.css │ ├── common.css │ ├── style.css │ ├── swiper.min.css │ └── theme.css ├── elementui │ ├── elementui.css │ ├── elementui.js │ └── fonts │ │ ├── element-icons.ttf │ │ └── element-icons.woff ├── img │ ├── avator.png │ ├── banner.jpg │ ├── jianshe.png │ ├── jiaotong.png │ ├── line.jpg │ ├── nongye.png │ ├── now.png │ ├── seckilling.jpg │ ├── select.png │ ├── unselect.png │ ├── weixin.png │ ├── yuan.png │ ├── zhifubao.png │ └── zhongguo.png ├── index.html ├── index.html.bak ├── js │ ├── bootstrap.AMapPositionPicker.js │ ├── bootstrap.min.js │ ├── canvas-bg-web-1.js │ ├── canvas-bg-web-2.js │ ├── canvas-bg-web-3.js │ ├── canvas-bg-web-4.js │ ├── canvas-bg-web-5.js │ ├── config.js │ ├── jquery.js │ ├── swiper.min.js │ ├── utils.js │ ├── validate.js │ └── vue.js ├── layui │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ ├── lay │ │ └── modules │ │ │ ├── carousel.js │ │ │ ├── code.js │ │ │ ├── colorpicker.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile.js │ │ │ ├── rate.js │ │ │ ├── slider.js │ │ │ ├── table.js │ │ │ ├── transfer.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ ├── layui.all.js │ └── layui.js ├── modules │ ├── config.js │ ├── http │ │ └── http.js │ ├── layarea │ │ └── layarea.js │ └── tinymce │ │ ├── index.html │ │ ├── tinymce.js │ │ └── tinymce │ │ ├── jquery.tinymce.min.js │ │ ├── langs │ │ ├── readme.md │ │ └── zh_CN.js │ │ ├── license.txt │ │ ├── plugins │ │ ├── advlist │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── code │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── js │ │ │ │ ├── emojis.js │ │ │ │ └── emojis.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── imagetools │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── indent2em │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── link │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── print │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── quickbars │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── save │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── table │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── template │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textpattern │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── toc │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── readme.md │ │ ├── skins │ │ ├── content │ │ │ ├── dark │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ │ ├── document │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ │ └── writer │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ └── ui │ │ │ ├── oxide-dark │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.min.css │ │ │ ├── content.inline.min.css.map │ │ │ ├── content.min.css │ │ │ ├── content.min.css.map │ │ │ ├── content.mobile.css │ │ │ ├── content.mobile.min.css │ │ │ ├── content.mobile.min.css.map │ │ │ ├── fonts │ │ │ │ └── tinymce-mobile.woff │ │ │ ├── skin.css │ │ │ ├── skin.min.css │ │ │ ├── skin.min.css.map │ │ │ ├── skin.mobile.css │ │ │ ├── skin.mobile.min.css │ │ │ └── skin.mobile.min.css.map │ │ │ └── oxide │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.min.css │ │ │ ├── content.inline.min.css.map │ │ │ ├── content.min.css │ │ │ ├── content.min.css.map │ │ │ ├── content.mobile.css │ │ │ ├── content.mobile.min.css │ │ │ ├── content.mobile.min.css.map │ │ │ ├── fonts │ │ │ └── tinymce-mobile.woff │ │ │ ├── skin.css │ │ │ ├── skin.min.css │ │ │ ├── skin.min.css.map │ │ │ ├── skin.mobile.css │ │ │ ├── skin.mobile.min.css │ │ │ └── skin.mobile.min.css.map │ │ ├── themes │ │ ├── mobile │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ └── silver │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── tinymce.js │ │ └── tinymce.min.js ├── pages │ ├── config │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── gongzuofenpei │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── gongzuotijiao │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── home │ │ └── home.html │ ├── jinjitongzhi │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── login │ │ └── login.html │ ├── piyaozhuanqu │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── qiuzhuleixing │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── qiuzhuxinxi │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── storeup │ │ └── list.html │ ├── users │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── wuzifenpei │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── wuzishenqing │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── wuzixinxi │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── wuzizhonglei │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── xinlizhishi │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── yiliaojiuzhu │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── yonghu │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ ├── zhaomubaoming │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── zhaomuxinxi │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── zhiyuanzhe │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ └── zhiyuanzheshenqing │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html └── xznstatic │ ├── css │ ├── common.css │ ├── login.css │ ├── public.css │ └── style.css │ ├── img │ ├── 162237296.jpg │ ├── 162240878.jpg │ ├── 19.jpg │ ├── 1_092ZZ2503138.jpg │ ├── 20.jpg │ ├── index_24.gif │ ├── index_35.gif │ ├── index_41.gif │ ├── index_44.gif │ ├── logo.png │ ├── news_list_time.jpg │ ├── service_btn.png │ ├── service_img.png │ └── service_title.png │ └── js │ ├── index.js │ ├── jquery-1.11.3.min.js │ └── jquery.SuperSlide.2.1.1.js ├── resources ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js └── jquery │ └── jquery-2.2.3.min.js └── upload ├── jinjitongzhi_fengmian1.jpg ├── jinjitongzhi_fengmian2.jpg ├── jinjitongzhi_fengmian3.jpg ├── jinjitongzhi_fengmian4.jpg ├── jinjitongzhi_fengmian5.jpg ├── jinjitongzhi_fengmian6.jpg ├── picture1.jpg ├── picture2.jpg ├── picture3.jpg ├── piyaozhuanqu_fengmian1.jpg ├── piyaozhuanqu_fengmian2.jpg ├── piyaozhuanqu_fengmian3.jpg ├── piyaozhuanqu_fengmian4.jpg ├── piyaozhuanqu_fengmian5.jpg ├── piyaozhuanqu_fengmian6.jpg ├── qiuzhuxinxi_fengmian1.jpg ├── qiuzhuxinxi_fengmian2.jpg ├── qiuzhuxinxi_fengmian3.jpg ├── qiuzhuxinxi_fengmian4.jpg ├── qiuzhuxinxi_fengmian5.jpg ├── qiuzhuxinxi_fengmian6.jpg ├── test.txt ├── wuzixinxi_tupian1.jpg ├── wuzixinxi_tupian2.jpg ├── wuzixinxi_tupian3.jpg ├── wuzixinxi_tupian4.jpg ├── wuzixinxi_tupian5.jpg ├── wuzixinxi_tupian6.jpg ├── xinlizhishi_fengmian1.jpg ├── xinlizhishi_fengmian2.jpg ├── xinlizhishi_fengmian3.jpg ├── xinlizhishi_fengmian4.jpg ├── xinlizhishi_fengmian5.jpg ├── xinlizhishi_fengmian6.jpg ├── yiliaojiuzhu_tupian1.jpg ├── yiliaojiuzhu_tupian2.jpg ├── yiliaojiuzhu_tupian3.jpg ├── yiliaojiuzhu_tupian4.jpg ├── yiliaojiuzhu_tupian5.jpg ├── yiliaojiuzhu_tupian6.jpg ├── yonghu_zhaopian1.jpg ├── yonghu_zhaopian2.jpg ├── yonghu_zhaopian3.jpg ├── yonghu_zhaopian4.jpg ├── yonghu_zhaopian5.jpg ├── yonghu_zhaopian6.jpg ├── zhaomuxinxi_fengmian1.jpg ├── zhaomuxinxi_fengmian2.jpg ├── zhaomuxinxi_fengmian3.jpg ├── zhaomuxinxi_fengmian4.jpg ├── zhaomuxinxi_fengmian5.jpg ├── zhaomuxinxi_fengmian6.jpg ├── zhiyuanzhe_zhaopian1.jpg ├── zhiyuanzhe_zhaopian2.jpg ├── zhiyuanzhe_zhaopian3.jpg ├── zhiyuanzhe_zhaopian4.jpg ├── zhiyuanzhe_zhaopian5.jpg └── zhiyuanzhe_zhaopian6.jpg /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java -------------------------------------------------------------------------------- /src/main/java/com/annotation/APPLoginUser.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | */ 11 | @Target(ElementType.PARAMETER) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | public @interface APPLoginUser { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/annotation/IgnoreAuth.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /** 6 | * 忽略Token验证 7 | */ 8 | @Target(ElementType.METHOD) 9 | @Retention(RetentionPolicy.RUNTIME) 10 | @Documented 11 | public @interface IgnoreAuth { 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/annotation/LoginUser.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | */ 11 | @Target(ElementType.PARAMETER) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | public @interface LoginUser { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/config/AlipayConfig.java: -------------------------------------------------------------------------------- 1 | package com.config; 2 | 3 | import java.io.FileWriter; 4 | import java.io.IOException; 5 | 6 | /* * 7 | *类名:AlipayConfig 8 | *功能:基础配置类 9 | *详细:设置帐户有关信息及返回路径 10 | *修改日期:2017-04-05 11 | *说明: 12 | *以下代码只是为了方便商户测试而提供的样例代码,商户可以根据自己网站的需要,按照技术文档编写,并非一定要使用该代码。 13 | *该代码仅供学习和研究支付宝接口使用,只是提供一个参考。 14 | */ 15 | 16 | public class AlipayConfig { 17 | } 18 | 19 | -------------------------------------------------------------------------------- /src/main/java/com/config/MyMetaObjectHandler.java: -------------------------------------------------------------------------------- 1 | package com.config; 2 | 3 | import java.util.Date; 4 | 5 | import org.apache.ibatis.reflection.MetaObject; 6 | 7 | import com.baomidou.mybatisplus.mapper.MetaObjectHandler; 8 | 9 | /** 10 | * 自定义填充处理器 11 | */ 12 | public class MyMetaObjectHandler extends MetaObjectHandler { 13 | 14 | @Override 15 | public void insertFill(MetaObject metaObject) { 16 | this.setFieldValByName("ctime", new Date(), metaObject); 17 | } 18 | 19 | @Override 20 | public boolean openUpdateFill() { 21 | return false; 22 | } 23 | 24 | @Override 25 | public void updateFill(MetaObject metaObject) { 26 | // 关闭更新填充、这里不执行 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/dao/CommonDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | /** 8 | * 通用接口 9 | */ 10 | public interface CommonDao{ 11 | List getOption(Map params); 12 | 13 | Map getFollowByOption(Map params); 14 | 15 | List getFollowByOption2(Map params); 16 | 17 | void sh(Map params); 18 | 19 | int remindCount(Map params); 20 | 21 | Map selectCal(Map params); 22 | 23 | List> selectGroup(Map params); 24 | 25 | List> selectValue(Map params); 26 | 27 | List> selectTimeStatValue(Map params); 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ConfigDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import com.entity.ConfigEntity; 6 | 7 | /** 8 | * 配置 9 | */ 10 | public interface ConfigDao extends BaseMapper { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/dao/StoreupDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.StoreupEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import java.util.Map; 7 | import com.baomidou.mybatisplus.mapper.Wrapper; 8 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 9 | 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.vo.StoreupVO; 12 | import com.entity.view.StoreupView; 13 | 14 | 15 | /** 16 | * 收藏表 17 | * 18 | * @author 19 | * @email 20 | * @date 2022-04-18 19:21:56 21 | */ 22 | public interface StoreupDao extends BaseMapper { 23 | 24 | List selectListVO(@Param("ew") Wrapper wrapper); 25 | 26 | StoreupVO selectVO(@Param("ew") Wrapper wrapper); 27 | 28 | List selectListView(@Param("ew") Wrapper wrapper); 29 | 30 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 31 | 32 | StoreupView selectView(@Param("ew") Wrapper wrapper); 33 | 34 | 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/com/dao/TokenDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import com.baomidou.mybatisplus.mapper.BaseMapper; 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 11 | import com.entity.TokenEntity; 12 | 13 | /** 14 | * token 15 | */ 16 | public interface TokenDao extends BaseMapper { 17 | 18 | List selectListView(@Param("ew") Wrapper wrapper); 19 | 20 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/dao/UserDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import com.baomidou.mybatisplus.mapper.BaseMapper; 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 11 | import com.entity.UserEntity; 12 | 13 | /** 14 | * 用户 15 | */ 16 | public interface UserDao extends BaseMapper { 17 | 18 | List selectListView(@Param("ew") Wrapper wrapper); 19 | 20 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/dao/YonghuDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.YonghuEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import java.util.Map; 7 | import com.baomidou.mybatisplus.mapper.Wrapper; 8 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 9 | 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.vo.YonghuVO; 12 | import com.entity.view.YonghuView; 13 | 14 | 15 | /** 16 | * 用户 17 | * 18 | * @author 19 | * @email 20 | * @date 2022-04-18 19:21:55 21 | */ 22 | public interface YonghuDao extends BaseMapper { 23 | 24 | List selectListVO(@Param("ew") Wrapper wrapper); 25 | 26 | YonghuVO selectVO(@Param("ew") Wrapper wrapper); 27 | 28 | List selectListView(@Param("ew") Wrapper wrapper); 29 | 30 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 31 | 32 | YonghuView selectView(@Param("ew") Wrapper wrapper); 33 | 34 | 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/com/entity/ConfigEntity.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | import java.io.Serializable; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableId; 6 | import com.baomidou.mybatisplus.annotations.TableName; 7 | import com.baomidou.mybatisplus.enums.IdType; 8 | 9 | /** 10 | * 类说明 : 11 | */ 12 | @TableName("config") 13 | public class ConfigEntity implements Serializable{ 14 | private static final long serialVersionUID = 1L; 15 | 16 | @TableId(type = IdType.AUTO) 17 | private Long id; 18 | 19 | /** 20 | * key 21 | */ 22 | private String name; 23 | 24 | /** 25 | * value 26 | */ 27 | private String value; 28 | 29 | public Long getId() { 30 | return id; 31 | } 32 | 33 | public void setId(Long id) { 34 | this.id = id; 35 | } 36 | 37 | public String getName() { 38 | return name; 39 | } 40 | 41 | public void setName(String name) { 42 | this.name = name; 43 | } 44 | 45 | public String getValue() { 46 | return value; 47 | } 48 | 49 | public void setValue(String value) { 50 | this.value = value; 51 | } 52 | 53 | } 54 | -------------------------------------------------------------------------------- /src/main/java/com/entity/EIException.java: -------------------------------------------------------------------------------- 1 | 2 | package com.entity; 3 | 4 | /** 5 | * 自定义异常 6 | */ 7 | public class EIException extends RuntimeException { 8 | private static final long serialVersionUID = 1L; 9 | 10 | private String msg; 11 | private int code = 500; 12 | 13 | public EIException(String msg) { 14 | super(msg); 15 | this.msg = msg; 16 | } 17 | 18 | public EIException(String msg, Throwable e) { 19 | super(msg, e); 20 | this.msg = msg; 21 | } 22 | 23 | public EIException(String msg, int code) { 24 | super(msg); 25 | this.msg = msg; 26 | this.code = code; 27 | } 28 | 29 | public EIException(String msg, int code, Throwable e) { 30 | super(msg, e); 31 | this.msg = msg; 32 | this.code = code; 33 | } 34 | 35 | public String getMsg() { 36 | return msg; 37 | } 38 | 39 | public void setMsg(String msg) { 40 | this.msg = msg; 41 | } 42 | 43 | public int getCode() { 44 | return code; 45 | } 46 | 47 | public void setCode(int code) { 48 | this.code = code; 49 | } 50 | 51 | 52 | } 53 | -------------------------------------------------------------------------------- /src/main/java/com/entity/model/QiuzhuleixingModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.QiuzhuleixingEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import com.fasterxml.jackson.annotation.JsonFormat; 7 | import java.util.Date; 8 | import org.springframework.format.annotation.DateTimeFormat; 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 求助类型 14 | * 接收传参的实体类 15 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 16 | * 取自ModelAndView 的model名称 17 | * @author 18 | * @email 19 | * @date 2022-04-18 19:21:55 20 | */ 21 | public class QiuzhuleixingModel implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/entity/model/WuzizhongleiModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.WuzizhongleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import com.fasterxml.jackson.annotation.JsonFormat; 7 | import java.util.Date; 8 | import org.springframework.format.annotation.DateTimeFormat; 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 物资种类 14 | * 接收传参的实体类 15 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 16 | * 取自ModelAndView 的model名称 17 | * @author 18 | * @email 19 | * @date 2022-04-18 19:21:55 20 | */ 21 | public class WuzizhongleiModel implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/GongzuofenpeiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.GongzuofenpeiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 工作分配 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("gongzuofenpei") 21 | public class GongzuofenpeiView extends GongzuofenpeiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public GongzuofenpeiView(){ 25 | } 26 | 27 | public GongzuofenpeiView(GongzuofenpeiEntity gongzuofenpeiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, gongzuofenpeiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/GongzuotijiaoView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.GongzuotijiaoEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 工作提交 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("gongzuotijiao") 21 | public class GongzuotijiaoView extends GongzuotijiaoEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public GongzuotijiaoView(){ 25 | } 26 | 27 | public GongzuotijiaoView(GongzuotijiaoEntity gongzuotijiaoEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, gongzuotijiaoEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/JinjitongzhiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.JinjitongzhiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 紧急通知 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:55 19 | */ 20 | @TableName("jinjitongzhi") 21 | public class JinjitongzhiView extends JinjitongzhiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public JinjitongzhiView(){ 25 | } 26 | 27 | public JinjitongzhiView(JinjitongzhiEntity jinjitongzhiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, jinjitongzhiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/PiyaozhuanquView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.PiyaozhuanquEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 辟谣专区 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("piyaozhuanqu") 21 | public class PiyaozhuanquView extends PiyaozhuanquEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public PiyaozhuanquView(){ 25 | } 26 | 27 | public PiyaozhuanquView(PiyaozhuanquEntity piyaozhuanquEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, piyaozhuanquEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/QiuzhuleixingView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.QiuzhuleixingEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 求助类型 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:55 19 | */ 20 | @TableName("qiuzhuleixing") 21 | public class QiuzhuleixingView extends QiuzhuleixingEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public QiuzhuleixingView(){ 25 | } 26 | 27 | public QiuzhuleixingView(QiuzhuleixingEntity qiuzhuleixingEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, qiuzhuleixingEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/QiuzhuxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.QiuzhuxinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 求助信息 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:55 19 | */ 20 | @TableName("qiuzhuxinxi") 21 | public class QiuzhuxinxiView extends QiuzhuxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public QiuzhuxinxiView(){ 25 | } 26 | 27 | public QiuzhuxinxiView(QiuzhuxinxiEntity qiuzhuxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, qiuzhuxinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/StoreupView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.StoreupEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 收藏表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("storeup") 21 | public class StoreupView extends StoreupEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public StoreupView(){ 25 | } 26 | 27 | public StoreupView(StoreupEntity storeupEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, storeupEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/WuzifenpeiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.WuzifenpeiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 物资分配 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("wuzifenpei") 21 | public class WuzifenpeiView extends WuzifenpeiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public WuzifenpeiView(){ 25 | } 26 | 27 | public WuzifenpeiView(WuzifenpeiEntity wuzifenpeiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, wuzifenpeiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/WuzishenqingView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.WuzishenqingEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 物资申请 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("wuzishenqing") 21 | public class WuzishenqingView extends WuzishenqingEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public WuzishenqingView(){ 25 | } 26 | 27 | public WuzishenqingView(WuzishenqingEntity wuzishenqingEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, wuzishenqingEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/WuzixinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.WuzixinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 物资信息 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("wuzixinxi") 21 | public class WuzixinxiView extends WuzixinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public WuzixinxiView(){ 25 | } 26 | 27 | public WuzixinxiView(WuzixinxiEntity wuzixinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, wuzixinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/WuzizhongleiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.WuzizhongleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 物资种类 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:55 19 | */ 20 | @TableName("wuzizhonglei") 21 | public class WuzizhongleiView extends WuzizhongleiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public WuzizhongleiView(){ 25 | } 26 | 27 | public WuzizhongleiView(WuzizhongleiEntity wuzizhongleiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, wuzizhongleiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/XinlizhishiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.XinlizhishiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 心理知识 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("xinlizhishi") 21 | public class XinlizhishiView extends XinlizhishiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public XinlizhishiView(){ 25 | } 26 | 27 | public XinlizhishiView(XinlizhishiEntity xinlizhishiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, xinlizhishiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/YiliaojiuzhuView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.YiliaojiuzhuEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 医疗救助 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("yiliaojiuzhu") 21 | public class YiliaojiuzhuView extends YiliaojiuzhuEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public YiliaojiuzhuView(){ 25 | } 26 | 27 | public YiliaojiuzhuView(YiliaojiuzhuEntity yiliaojiuzhuEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, yiliaojiuzhuEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/YonghuView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.YonghuEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 用户 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:55 19 | */ 20 | @TableName("yonghu") 21 | public class YonghuView extends YonghuEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public YonghuView(){ 25 | } 26 | 27 | public YonghuView(YonghuEntity yonghuEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, yonghuEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ZhaomubaomingView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ZhaomubaomingEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 招募报名 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("zhaomubaoming") 21 | public class ZhaomubaomingView extends ZhaomubaomingEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ZhaomubaomingView(){ 25 | } 26 | 27 | public ZhaomubaomingView(ZhaomubaomingEntity zhaomubaomingEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, zhaomubaomingEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ZhaomuxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ZhaomuxinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 招募信息 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:56 19 | */ 20 | @TableName("zhaomuxinxi") 21 | public class ZhaomuxinxiView extends ZhaomuxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ZhaomuxinxiView(){ 25 | } 26 | 27 | public ZhaomuxinxiView(ZhaomuxinxiEntity zhaomuxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, zhaomuxinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ZhiyuanzheView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ZhiyuanzheEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 志愿者 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2022-04-18 19:21:55 19 | */ 20 | @TableName("zhiyuanzhe") 21 | public class ZhiyuanzheView extends ZhiyuanzheEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ZhiyuanzheView(){ 25 | } 26 | 27 | public ZhiyuanzheView(ZhiyuanzheEntity zhiyuanzheEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, zhiyuanzheEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/QiuzhuleixingVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.QiuzhuleixingEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import com.fasterxml.jackson.annotation.JsonFormat; 7 | import java.util.Date; 8 | import org.springframework.format.annotation.DateTimeFormat; 9 | 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 求助类型 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2022-04-18 19:21:55 20 | */ 21 | public class QiuzhuleixingVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/WuzizhongleiVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.WuzizhongleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import com.fasterxml.jackson.annotation.JsonFormat; 7 | import java.util.Date; 8 | import org.springframework.format.annotation.DateTimeFormat; 9 | 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 物资种类 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2022-04-18 19:21:55 20 | */ 21 | public class WuzizhongleiVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/model/enums/TypeEnum.java: -------------------------------------------------------------------------------- 1 | package com.model.enums; 2 | 3 | import java.io.Serializable; 4 | 5 | import com.baomidou.mybatisplus.enums.IEnum; 6 | 7 | /** 8 | * 必须现在 IEnum 配置 该包扫描自动注入,查看文件 spring-mybatis.xml 参数 typeEnumsPackage 9 | */ 10 | public enum TypeEnum implements IEnum { 11 | DISABLED(0, "禁用"), 12 | NORMAL(1, "正常"); 13 | 14 | private final int value; 15 | private final String desc; 16 | 17 | TypeEnum(final int value, final String desc) { 18 | this.value = value; 19 | this.desc = desc; 20 | } 21 | 22 | @Override 23 | public Serializable getValue() { 24 | return this.value; 25 | } 26 | 27 | // Jackson 注解为 JsonValue 返回中文 json 描述 28 | public String getDesc() { 29 | return this.desc; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/main/java/com/service/CommonService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | public interface CommonService { 7 | List getOption(Map params); 8 | 9 | Map getFollowByOption(Map params); 10 | 11 | void sh(Map params); 12 | 13 | int remindCount(Map params); 14 | 15 | Map selectCal(Map params); 16 | 17 | List> selectGroup(Map params); 18 | 19 | List> selectValue(Map params); 20 | 21 | List> selectTimeStatValue(Map params); 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/service/ConfigService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.Map; 5 | 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.service.IService; 8 | import com.entity.ConfigEntity; 9 | import com.utils.PageUtils; 10 | 11 | 12 | /** 13 | * 系统用户 14 | */ 15 | public interface ConfigService extends IService { 16 | PageUtils queryPage(Map params,Wrapper wrapper); 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/service/TokenService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import com.baomidou.mybatisplus.mapper.Wrapper; 8 | import com.baomidou.mybatisplus.service.IService; 9 | import com.entity.TokenEntity; 10 | import com.utils.PageUtils; 11 | 12 | 13 | /** 14 | * token 15 | */ 16 | public interface TokenService extends IService { 17 | PageUtils queryPage(Map params); 18 | 19 | List selectListView(Wrapper wrapper); 20 | 21 | PageUtils queryPage(Map params,Wrapper wrapper); 22 | 23 | String generateToken(Long userid,String username,String tableName, String role); 24 | 25 | TokenEntity getTokenEntity(String token); 26 | } 27 | -------------------------------------------------------------------------------- /src/main/java/com/service/UserService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import org.apache.ibatis.annotations.Param; 8 | 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.service.IService; 11 | import com.entity.UserEntity; 12 | import com.utils.PageUtils; 13 | 14 | 15 | /** 16 | * 系统用户 17 | */ 18 | public interface UserService extends IService { 19 | PageUtils queryPage(Map params); 20 | 21 | List selectListView(Wrapper wrapper); 22 | 23 | PageUtils queryPage(Map params,Wrapper wrapper); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/service/impl/ConfigServiceImpl.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service.impl; 3 | 4 | 5 | import java.util.Map; 6 | 7 | import org.springframework.stereotype.Service; 8 | 9 | import com.baomidou.mybatisplus.mapper.EntityWrapper; 10 | import com.baomidou.mybatisplus.mapper.Wrapper; 11 | import com.baomidou.mybatisplus.plugins.Page; 12 | import com.baomidou.mybatisplus.service.impl.ServiceImpl; 13 | import com.dao.ConfigDao; 14 | import com.entity.ConfigEntity; 15 | import com.service.ConfigService; 16 | import com.utils.PageUtils; 17 | import com.utils.Query; 18 | 19 | 20 | /** 21 | * 系统用户 22 | */ 23 | @Service("configService") 24 | public class ConfigServiceImpl extends ServiceImpl implements ConfigService { 25 | @Override 26 | public PageUtils queryPage(Map params, Wrapper wrapper) { 27 | Page page = this.selectPage( 28 | new Query(params).getPage(), 29 | wrapper 30 | ); 31 | return new PageUtils(page); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/utils/FileUtil.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.io.ByteArrayOutputStream; 4 | import java.io.File; 5 | import java.io.FileInputStream; 6 | import java.io.IOException; 7 | import java.io.InputStream; 8 | 9 | /** 10 | * 类说明 : 11 | */ 12 | 13 | public class FileUtil { 14 | public static byte[] FileToByte(File file) throws IOException { 15 | // 将数据转为流 16 | @SuppressWarnings("resource") 17 | InputStream content = new FileInputStream(file); 18 | ByteArrayOutputStream swapStream = new ByteArrayOutputStream(); 19 | byte[] buff = new byte[100]; 20 | int rc = 0; 21 | while ((rc = content.read(buff, 0, 100)) > 0) { 22 | swapStream.write(buff, 0, rc); 23 | } 24 | // 获得二进制数组 25 | return swapStream.toByteArray(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/main/java/com/utils/JQPageInfo.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | public class JQPageInfo{ 4 | private Integer page; 5 | 6 | private Integer limit; 7 | 8 | private String sidx; 9 | 10 | private String order; 11 | 12 | private Integer offset; 13 | 14 | public Integer getPage() { 15 | return page; 16 | } 17 | 18 | public void setPage(Integer page) { 19 | this.page = page; 20 | } 21 | 22 | public Integer getLimit() { 23 | return limit; 24 | } 25 | 26 | public void setLimit(Integer limit) { 27 | this.limit = limit; 28 | } 29 | 30 | public String getSidx() { 31 | return sidx; 32 | } 33 | 34 | public void setSidx(String sidx) { 35 | this.sidx = sidx; 36 | } 37 | 38 | public String getOrder() { 39 | return order; 40 | } 41 | 42 | public void setOrder(String order) { 43 | this.order = order; 44 | } 45 | 46 | public Integer getOffset() { 47 | return offset; 48 | } 49 | 50 | public void setOffset(Integer offset) { 51 | this.offset = offset; 52 | } 53 | 54 | } 55 | -------------------------------------------------------------------------------- /src/main/java/com/utils/MD5Util.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import cn.hutool.crypto.digest.DigestUtil; 4 | 5 | public class MD5Util { 6 | 7 | /** 8 | * @param text明文 9 | * @param key密钥 10 | * @return 密文 11 | */ 12 | // 带秘钥加密 13 | public static String md5(String text) { 14 | // 加密后的字符串 15 | String md5str = DigestUtil.md5Hex(text); 16 | return md5str; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/utils/R.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.util.HashMap; 4 | import java.util.Map; 5 | 6 | /** 7 | * 返回数据 8 | */ 9 | public class R extends HashMap { 10 | private static final long serialVersionUID = 1L; 11 | 12 | public R() { 13 | put("code", 0); 14 | } 15 | 16 | public static R error() { 17 | return error(500, "未知异常,请联系管理员"); 18 | } 19 | 20 | public static R error(String msg) { 21 | return error(500, msg); 22 | } 23 | 24 | public static R error(int code, String msg) { 25 | R r = new R(); 26 | r.put("code", code); 27 | r.put("msg", msg); 28 | return r; 29 | } 30 | 31 | public static R ok(String msg) { 32 | R r = new R(); 33 | r.put("msg", msg); 34 | return r; 35 | } 36 | 37 | public static R ok(Map map) { 38 | R r = new R(); 39 | r.putAll(map); 40 | return r; 41 | } 42 | 43 | public static R ok() { 44 | return new R(); 45 | } 46 | 47 | public R put(String key, Object value) { 48 | super.put(key, value); 49 | return this; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /src/main/resources/config.properties: -------------------------------------------------------------------------------- 1 | validationQuery=SELECT 1 2 | 3 | jdbc_url=jdbc:mysql://127.0.0.1:3306/graduation_126_ssmb06jd?useUnicode=true&characterEncoding=UTF-8&tinyInt1isBit=false 4 | jdbc_username=root 5 | jdbc_password=123456 6 | 7 | #jdbc_url=jdbc:sqlserver://127.0.0.1:1433;DatabaseName=ssmb06jd 8 | #jdbc_username=sa 9 | #jdbc_password=123456 10 | 11 | -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.rootLogger=INFO,CONSOLE,A 2 | log4j.addivity.org.apache=false 3 | log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender 4 | log4j.appender.CONSOLE.Threshold=INFO 5 | log4j.appender.CONSOLE.layout.ConversionPattern=%d{yyyy-MM-dd HH\:mm\:ss} -%-4r [%t] %-5p %x - %m%n 6 | log4j.appender.CONSOLE.Target=System.out 7 | #log4j.appender.CONSOLE.charset=utf-8 8 | log4j.appender.CONSOLE.encoding=utf-8 9 | log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout 10 | log4j.appender.A=org.apache.log4j.DailyRollingFileAppender 11 | log4j.appender.A.File=${catalina.home}/logs/yo_log/PurePro_ 12 | log4j.appender.A.DatePattern=yyyy-MM-dd'.log' 13 | log4j.appender.A.layout=org.apache.log4j.PatternLayout 14 | log4j.appender.A.layout.ConversionPattern=[FH_sys] %d{yyyy-MM-dd HH\:mm\:ss} %5p %c{1}\:%L \: %m%n 15 | log4j.logger.java.sql.ResultSet=INFO 16 | log4j.logger.org.apache=INFO 17 | log4j.logger.java.sql.Connection=INFO 18 | log4j.logger.java.sql.Statement=INFO 19 | log4j.logger.java.sql.PreparedStatement=INFO -------------------------------------------------------------------------------- /src/main/resources/mapper/ConfigDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/main/resources/mapper/TokenDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/mapper/UserDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/spring/spring.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/webapp/admin/1-install.bat: -------------------------------------------------------------------------------- 1 | cnpm install -------------------------------------------------------------------------------- /src/main/webapp/admin/2-run.bat: -------------------------------------------------------------------------------- 1 | cnpm run serve -------------------------------------------------------------------------------- /src/main/webapp/admin/3-build.bat: -------------------------------------------------------------------------------- 1 | cnpm run build 2 | -------------------------------------------------------------------------------- /src/main/webapp/admin/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/dist/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/fonts/element-icons.535877f5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/dist/fonts/element-icons.535877f5.woff -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/fonts/element-icons.732389de.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/dist/fonts/element-icons.732389de.ttf -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/img/404.3648f234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/dist/img/404.3648f234.png -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/img/zhongguo.20798bfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/dist/img/zhongguo.20798bfa.png -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/index.html: -------------------------------------------------------------------------------- 1 | 应急互助信息管理系统
-------------------------------------------------------------------------------- /src/main/webapp/admin/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/public/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/admin/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 应急互助信息管理系统 10 | 11 | 12 | 13 | 17 |
18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/App.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | 31 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/css/canvas-bg-1.css: -------------------------------------------------------------------------------- 1 | #canvas { 2 | position: fixed; 3 | top: 0; 4 | left: 0; 5 | width: 100%; 6 | margin: 0; 7 | overflow: hidden; 8 | background: hsla(0, 5%, 5%, 1); 9 | background-repeat: no-repeat; 10 | background-attachment: fixed; 11 | background-image: linear-gradient(to right top, hsla(0, 5%, 15%, 0.5), hsla(0, 5%, 5%, 1)); 12 | background-image: -moz-linear-gradient(to right top, hsla(0, 5%, 15%, 0.5), hsla(0, 5%, 5%, 1)); 13 | } -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/css/canvas-bg-2.css: -------------------------------------------------------------------------------- 1 | #canvas { 2 | background: rgba(0,0,0,1); 3 | position: absolute; 4 | left: 0; 5 | top: 0; 6 | } -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/css/canvas-bg-3.css: -------------------------------------------------------------------------------- 1 | #canvas { 2 | position: fixed; 3 | left: 0; 4 | top: 0; 5 | } -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/css/element-variables.scss: -------------------------------------------------------------------------------- 1 | /* 改变主题色变量 */ 2 | $--color-primary: #00c292 !default; 3 | $--color-success: #67c23a !default; 4 | $--color-warning: #e6a23c !default; 5 | $--color-danger: #f56c6c !default; 6 | $--color-info: #909399 !default; 7 | /* 改变 icon 字体路径变量,必需 */ 8 | $--font-path: '~element-ui/lib/theme-chalk/fonts'; 9 | @import "~element-ui/packages/theme-chalk/src/index"; -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/css/style.scss: -------------------------------------------------------------------------------- 1 | .form-content { 2 | background: #ffffff; 3 | padding: 10px 10px 0 10px; 4 | } 5 | .table-content { 6 | background: #ffffff; 7 | padding: 0 10px; 8 | } 9 | .pagination-content { 10 | margin-top: 10px; 11 | padding-bottom: 10px; 12 | text-align: right; 13 | } 14 | .detail-form-content{ 15 | background: #ffffff; 16 | padding: 10px; 17 | .el-input{ 18 | min-width: 200px; 19 | max-width: 600px; 20 | } 21 | } 22 | .bg { 23 | position: absolute; 24 | top: 0; 25 | left: 0; 26 | height: 100%; 27 | } 28 | .login-form { 29 | position: absolute; 30 | top: 0; 31 | right: 0; 32 | width: 350px; 33 | height: 100%; 34 | background: #ffffff; 35 | padding: 0 60px; 36 | font-size: 18px; 37 | font-weight: bold; 38 | } 39 | .h1 { 40 | margin-top: 80px; 41 | font-size: 20px; 42 | font-weight: bold; 43 | } 44 | .btn-login { 45 | margin-top: 50px; 46 | width: 100%; 47 | } -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/404.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/avator.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/bg.jpg -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/captcha.jpg -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/login.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/password.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/role.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/test/jianshe.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/test/jiaotong.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/test/nongye.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/test/weixin.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/test/zhifubao.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/test/zhongguo.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/assets/img/username.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 34 | 35 | 44 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import SvgIcon from '@/components/SvgIcon'// svg component 3 | 4 | // register globally 5 | Vue.component('svg-icon', SvgIcon) 6 | 7 | const req = require.context('./svg/svg', false, /\.svg$/) 8 | const requireAll = requireContext => requireContext.keys().map(requireContext) 9 | requireAll(req) 10 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/bug.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/build.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/channel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/chart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/component.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/date.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/documentation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/download.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/drag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/druid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/edit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/education.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/email.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/excel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/form.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/fullscreen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/link.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/list.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/message.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/money.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/monitor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/nested.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/nested0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/operation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/password.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/password0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/peoples.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/post.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/sender.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/server.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/size.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/AI.svg: -------------------------------------------------------------------------------- 1 | 物联设备 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/AIDeviceLayout.svg: -------------------------------------------------------------------------------- 1 | 物联网配置 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/EIM.svg: -------------------------------------------------------------------------------- 1 | 企业信息 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/board.svg: -------------------------------------------------------------------------------- 1 | 看板管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/company.svg: -------------------------------------------------------------------------------- 1 | 基本信息 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/deviceMonitorData.svg: -------------------------------------------------------------------------------- 1 | 监测数据 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/documentation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/email.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/farmingProject.svg: -------------------------------------------------------------------------------- 1 | 农事项目 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/finance.svg: -------------------------------------------------------------------------------- 1 | 财务管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/financeBudget.svg: -------------------------------------------------------------------------------- 1 | 预算统计 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/firms.svg: -------------------------------------------------------------------------------- 1 | 厂商管理2 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/harvestBatch.svg: -------------------------------------------------------------------------------- 1 | 采收批次管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/harvestDetection.svg: -------------------------------------------------------------------------------- 1 | 采收检测标准 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/harvestManage.svg: -------------------------------------------------------------------------------- 1 | 采收管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/harvestWorks.svg: -------------------------------------------------------------------------------- 1 | 采收检测工单 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/heavyMetalDetection.svg: -------------------------------------------------------------------------------- 1 | 重金属检测项 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/inspection.svg: -------------------------------------------------------------------------------- 1 | 巡视反馈 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/internet.svg: -------------------------------------------------------------------------------- 1 | 物联网管理置 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/mainSystem.svg: -------------------------------------------------------------------------------- 1 | 主系统 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/monitorEquipment.svg: -------------------------------------------------------------------------------- 1 | 监测设备 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/order.svg: -------------------------------------------------------------------------------- 1 | 工单总览 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/password.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/peoples.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/pesticideResidue.svg: -------------------------------------------------------------------------------- 1 | 农残检测项 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/pests.svg: -------------------------------------------------------------------------------- 1 | 病虫害反馈 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/retroactiveCoding.svg: -------------------------------------------------------------------------------- 1 | 追溯打码 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/source.svg: -------------------------------------------------------------------------------- 1 | 溯源管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/task.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/traceability.svg: -------------------------------------------------------------------------------- 1 | 溯源管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/traceabilityList.svg: -------------------------------------------------------------------------------- 1 | 溯源配置 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/traceabilityStyle.svg: -------------------------------------------------------------------------------- 1 | 溯源管理样式 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/user0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/validCode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/video.svg: -------------------------------------------------------------------------------- 1 | 视频云配置sp -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/videoKey.svg: -------------------------------------------------------------------------------- 1 | 视频云配置1 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/warnings.svg: -------------------------------------------------------------------------------- 1 | 预警阈值 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/tab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/table0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/task.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/template.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/theme.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/tree-table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/user0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/validCode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svgo.yml: -------------------------------------------------------------------------------- 1 | # replace default config 2 | # 基于svgo对svg文件进行压缩:https://panjiachen.github.io/vue-element-admin-site/zh/feature/script/svgo.html 3 | # multipass: true 4 | # full: true 5 | 6 | plugins: 7 | 8 | # - name 9 | # 10 | # or: 11 | # - name: false 12 | # - name: true 13 | # 14 | # or: 15 | # - name: 16 | # param1: 1 17 | # param2: 2 18 | 19 | - removeAttrs: 20 | attrs: 21 | - 'fill' 22 | - 'fill-rule' 23 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/admin/src/store/store.js -------------------------------------------------------------------------------- /src/main/webapp/admin/src/utils/api.js: -------------------------------------------------------------------------------- 1 | const api = { 2 | // 积分订单 3 | orderpage: 'orders/page', 4 | orderdelete: 'orders/delete', 5 | orderinfo: 'orders/info/', 6 | ordersave: 'orders/save', 7 | orderupdate: 'orders/update', 8 | // 配置 9 | configpage: 'config/page', 10 | configdelete: 'config/delete', 11 | configinfo: 'config/info/', 12 | configsave: 'config/save', 13 | configupdate: 'config/update' 14 | 15 | } 16 | 17 | export default api 18 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/utils/base.js: -------------------------------------------------------------------------------- 1 | const base = { 2 | get() { 3 | return { 4 | url : "http://localhost:8080/ssmb06jd/", 5 | name: "ssmb06jd", 6 | // 退出到首页链接 7 | indexUrl: 'http://localhost:8080/ssmb06jd/front/index.html' 8 | }; 9 | }, 10 | getProjectName(){ 11 | return { 12 | projectName: "应急互助信息管理系统" 13 | } 14 | } 15 | } 16 | export default base 17 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/utils/http.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios' 2 | import router from '@/router/router-static' 3 | import storage from '@/utils/storage' 4 | 5 | const http = axios.create({ 6 | timeout: 1000 * 86400, 7 | withCredentials: true, 8 | baseURL: '/ssmb06jd', 9 | headers: { 10 | 'Content-Type': 'application/json; charset=utf-8' 11 | } 12 | }) 13 | // 请求拦截 14 | http.interceptors.request.use(config => { 15 | config.headers['Token'] = storage.get('Token') // 请求头带上token 16 | return config 17 | }, error => { 18 | return Promise.reject(error) 19 | }) 20 | // 响应拦截 21 | http.interceptors.response.use(response => { 22 | if (response.data && response.data.code === 401) { // 401, token失效 23 | router.push({ name: 'login' }) 24 | } 25 | return response 26 | }, error => { 27 | return Promise.reject(error) 28 | }) 29 | export default http -------------------------------------------------------------------------------- /src/main/webapp/admin/src/utils/i18n.js: -------------------------------------------------------------------------------- 1 | // translate router.meta.title, be used in breadcrumb sidebar tagsview 2 | export function generateTitle(title) { 3 | const hasKey = this.$te('route.' + title) 4 | 5 | if (hasKey) { 6 | // $t :this method from vue-i18n, inject in @/lang/index.js 7 | const translatedTitle = this.$t('route.' + title) 8 | 9 | return translatedTitle 10 | } 11 | return title 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/utils/storage.js: -------------------------------------------------------------------------------- 1 | const storage = { 2 | set(key, value) { 3 | localStorage.setItem(key, JSON.stringify(value)); 4 | }, 5 | get(key) { 6 | return localStorage.getItem(key)?localStorage.getItem(key).replace('"','').replace('"',''):""; 7 | }, 8 | getObj(key) { 9 | return localStorage.getItem(key)?JSON.parse(localStorage.getItem(key)):null; 10 | }, 11 | remove(key) { 12 | localStorage.removeItem(key); 13 | }, 14 | clear() { 15 | localStorage.clear(); 16 | } 17 | } 18 | export default storage; 19 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/views/404.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 20 | 21 | 46 | 47 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/views/index.vue: -------------------------------------------------------------------------------- 1 | 10 | 22 | 23 | 33 | -------------------------------------------------------------------------------- /src/main/webapp/front/css/canvas-bg-1.css: -------------------------------------------------------------------------------- 1 | #canvas { 2 | position: fixed; 3 | top: 0; 4 | left: 0; 5 | width: 100%; 6 | margin: 0; 7 | overflow: hidden; 8 | background: hsla(0, 5%, 5%, 1); 9 | background-repeat: no-repeat; 10 | background-attachment: fixed; 11 | background-image: linear-gradient(to right top, hsla(0, 5%, 15%, 0.5), hsla(0, 5%, 5%, 1)); 12 | background-image: -moz-linear-gradient(to right top, hsla(0, 5%, 15%, 0.5), hsla(0, 5%, 5%, 1)); 13 | } -------------------------------------------------------------------------------- /src/main/webapp/front/css/canvas-bg-2.css: -------------------------------------------------------------------------------- 1 | #canvas { 2 | background: rgba(0,0,0,1); 3 | position: absolute; 4 | left: 0; 5 | top: 0; 6 | } -------------------------------------------------------------------------------- /src/main/webapp/front/css/canvas-bg-3.css: -------------------------------------------------------------------------------- 1 | #canvas { 2 | position: fixed; 3 | left: 0; 4 | top: 0; 5 | } -------------------------------------------------------------------------------- /src/main/webapp/front/css/canvas-bg-4.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | 6 | #canvas { 7 | position: fixed; 8 | left: 0; 9 | top: 0; 10 | background: radial-gradient(ellipse farthest-corner at center top, #000d4d 0%, #000105 100%);; 11 | } -------------------------------------------------------------------------------- /src/main/webapp/front/css/canvas-bg-5.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | 6 | #canvas { 7 | position: fixed; 8 | left: 0; 9 | top: 0; 10 | background: #000000; 11 | } -------------------------------------------------------------------------------- /src/main/webapp/front/css/common.css: -------------------------------------------------------------------------------- 1 | /** 2 | * 工具类css 3 | */ 4 | /* 嵌套文字横线 */ 5 | .line-container { 6 | width: 100%; 7 | background: url(../img/line.jpg) left center repeat-x; 8 | text-align: center; 9 | } 10 | .line { 11 | display: inline-block; 12 | padding: 0 10px; 13 | text-align: center; 14 | font-family: 'Microsoft Yahei'; 15 | font-size: 24px; 16 | background: #fff; 17 | color: #000000; 18 | line-height: 1.3; 19 | } 20 | /** 21 | * 工具类css end 22 | */ -------------------------------------------------------------------------------- /src/main/webapp/front/elementui/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/elementui/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/main/webapp/front/elementui/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/elementui/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/main/webapp/front/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/avator.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/banner.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/img/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/jianshe.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/jiaotong.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/line.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/img/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/nongye.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/now.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/seckilling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/seckilling.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/img/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/select.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/unselect.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/weixin.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/yuan.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/zhifubao.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/img/zhongguo.png -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/code.css: -------------------------------------------------------------------------------- 1 | /** layui-v2.5.6 MIT License By https://www.layui.com */ 2 | html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none} -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/webapp/front/modules/config.js: -------------------------------------------------------------------------------- 1 | window.rootPath = (function (src) { 2 | src = document.scripts[document.scripts.length - 1].src; 3 | console.log(src.substring(0, src.lastIndexOf("/") + 1)) 4 | return src.substring(0, src.lastIndexOf("/") + 1); 5 | })(); 6 | 7 | layui.config({ 8 | base: rootPath, 9 | version: true 10 | }).extend({ 11 | http: 'http/http', // 网络请求接口扩展 12 | layarea: 'layarea/layarea' ,// 省市区联动选择器 13 | tinymce: 'tinymce/tinymce' // 富文本编辑器 14 | }); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/colorpicker/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('colorpicker', function () { 16 | domGlobals.console.warn('Color picker plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/colorpicker/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(o){"use strict";var i=tinymce.util.Tools.resolve("tinymce.PluginManager");!function n(){i.add("colorpicker",function(){o.console.warn("Color picker plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/contextmenu/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('contextmenu', function () { 16 | domGlobals.console.warn('Context menu plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/contextmenu/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(n){"use strict";var o=tinymce.util.Tools.resolve("tinymce.PluginManager");!function e(){o.add("contextmenu",function(){n.console.warn("Context menu plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),o=function(n){n.addCommand("InsertHorizontalRule",function(){n.execCommand("mceInsertContent",!1,"
")})},t=function(n){n.ui.registry.addButton("hr",{icon:"horizontal-rule",tooltip:"Horizontal line",onAction:function(){return n.execCommand("InsertHorizontalRule")}}),n.ui.registry.addMenuItem("hr",{icon:"horizontal-rule",text:"Horizontal line",onAction:function(){return n.execCommand("InsertHorizontalRule")}})};!function e(){n.add("hr",function(n){o(n),t(n)})}()}(); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.Env"),i=function(n){n.addCommand("mcePrint",function(){t.browser.isIE()?n.getDoc().execCommand("print",!1,null):n.getWin().print()})},e=function(n){n.ui.registry.addButton("print",{icon:"print",tooltip:"Print",onAction:function(){return n.execCommand("mcePrint")}}),n.ui.registry.addMenuItem("print",{text:"Print...",icon:"print",onAction:function(){return n.execCommand("mcePrint")}})};!function o(){n.add("print",function(n){i(n),e(n),n.addShortcut("Meta+P","","mcePrint")})}()}(); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/textcolor/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('textcolor', function () { 16 | domGlobals.console.warn('Text color plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/textcolor/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(o){"use strict";var i=tinymce.util.Tools.resolve("tinymce.PluginManager");!function n(){i.add("textcolor",function(){o.console.warn("Text color plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/content/default/content.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table td,table th{border:1px solid #ccc;padding:.4rem}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem} 8 | /*# sourceMappingURL=content.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/content.mobile.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection { 8 | /* Note: this file is used inside the content, so isn't part of theming */ 9 | background-color: green; 10 | display: inline-block; 11 | opacity: 0.5; 12 | position: absolute; 13 | } 14 | body { 15 | -webkit-text-size-adjust: none; 16 | } 17 | body img { 18 | /* this is related to the content margin */ 19 | max-width: 96vw; 20 | } 21 | body table img { 22 | max-width: 95%; 23 | } 24 | body { 25 | font-family: sans-serif; 26 | } 27 | table { 28 | border-collapse: collapse; 29 | } 30 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/content.mobile.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection{background-color:green;display:inline-block;opacity:.5;position:absolute}body{-webkit-text-size-adjust:none}body img{max-width:96vw}body table img{max-width:95%}body{font-family:sans-serif}table{border-collapse:collapse} 8 | /*# sourceMappingURL=content.mobile.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/content.mobile.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["ui/dark/content.mobile.css"],"names":[],"mappings":";;;;;;AAMA,yEAEE,iBAAkB,MAClB,QAAS,aACT,QAAS,GACT,SAAU,SAEZ,KACE,yBAA0B,KAE5B,SAEE,UAAW,KAEb,eACE,UAAW,IAEb,KACE,YAAa,WAEf,MACE,gBAAiB","file":"content.mobile.min.css","sourcesContent":["/**\n * Copyright (c) Tiny Technologies, Inc. All rights reserved.\n * Licensed under the LGPL or a commercial license.\n * For LGPL see License.txt in the project root for license information.\n * For commercial licenses see https://www.tiny.cloud/\n */\n.tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection {\n /* Note: this file is used inside the content, so isn't part of theming */\n background-color: green;\n display: inline-block;\n opacity: 0.5;\n position: absolute;\n}\nbody {\n -webkit-text-size-adjust: none;\n}\nbody img {\n /* this is related to the content margin */\n max-width: 96vw;\n}\nbody table img {\n max-width: 95%;\n}\nbody {\n font-family: sans-serif;\n}\ntable {\n border-collapse: collapse;\n}\n"]} -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/content.mobile.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection { 8 | /* Note: this file is used inside the content, so isn't part of theming */ 9 | background-color: green; 10 | display: inline-block; 11 | opacity: 0.5; 12 | position: absolute; 13 | } 14 | body { 15 | -webkit-text-size-adjust: none; 16 | } 17 | body img { 18 | /* this is related to the content margin */ 19 | max-width: 96vw; 20 | } 21 | body table img { 22 | max-width: 95%; 23 | } 24 | body { 25 | font-family: sans-serif; 26 | } 27 | table { 28 | border-collapse: collapse; 29 | } 30 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/content.mobile.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection{background-color:green;display:inline-block;opacity:.5;position:absolute}body{-webkit-text-size-adjust:none}body img{max-width:96vw}body table img{max-width:95%}body{font-family:sans-serif}table{border-collapse:collapse} 8 | /*# sourceMappingURL=content.mobile.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/content.mobile.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["ui/default/content.mobile.css"],"names":[],"mappings":";;;;;;AAMA,yEAEE,iBAAkB,MAClB,QAAS,aACT,QAAS,GACT,SAAU,SAEZ,KACE,yBAA0B,KAE5B,SAEE,UAAW,KAEb,eACE,UAAW,IAEb,KACE,YAAa,WAEf,MACE,gBAAiB","file":"content.mobile.min.css","sourcesContent":["/**\n * Copyright (c) Tiny Technologies, Inc. All rights reserved.\n * Licensed under the LGPL or a commercial license.\n * For LGPL see License.txt in the project root for license information.\n * For commercial licenses see https://www.tiny.cloud/\n */\n.tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection {\n /* Note: this file is used inside the content, so isn't part of theming */\n background-color: green;\n display: inline-block;\n opacity: 0.5;\n position: absolute;\n}\nbody {\n -webkit-text-size-adjust: none;\n}\nbody img {\n /* this is related to the content margin */\n max-width: 96vw;\n}\nbody table img {\n max-width: 95%;\n}\nbody {\n font-family: sans-serif;\n}\ntable {\n border-collapse: collapse;\n}\n"]} -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/162237296.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/162237296.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/162240878.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/162240878.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/19.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/1_092ZZ2503138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/1_092ZZ2503138.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/20.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/index_24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/index_24.gif -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/index_35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/index_35.gif -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/index_41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/index_41.gif -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/index_44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/index_44.gif -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/logo.png -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/news_list_time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/news_list_time.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/service_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/service_btn.png -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/service_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/service_img.png -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/service_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/front/xznstatic/img/service_title.png -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/js/index.js: -------------------------------------------------------------------------------- 1 | jQuery(".banner").slide({mainCell:".bd ul",autoPlay:true,interTime:5000}); 2 | 3 | //???????????? 4 | jQuery("#ifocus").slide({ titCell:"#ifocus_btn li", mainCell:"#ifocus_piclist ul",effect:"leftLoop", delayTime:200, autoPlay:true,triggerTime:0}); 5 | //???????????? 6 | jQuery("#ifocus").slide({ titCell:"#ifocus_btn li", mainCell:"#ifocus_tx ul",delayTime:0, autoPlay:true}); 7 | 8 | jQuery(".product_list").slide({mainCell:".bd ul",autoPage:true,effect:"leftLoop",autoPlay:true,vis:5,trigger:"click",interTime:4000}); -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/upload/jinjitongzhi_fengmian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/jinjitongzhi_fengmian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/jinjitongzhi_fengmian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/jinjitongzhi_fengmian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/jinjitongzhi_fengmian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/jinjitongzhi_fengmian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/jinjitongzhi_fengmian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/jinjitongzhi_fengmian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/jinjitongzhi_fengmian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/jinjitongzhi_fengmian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/jinjitongzhi_fengmian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/jinjitongzhi_fengmian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/picture1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/picture1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/picture2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/picture2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/picture3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/picture3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/piyaozhuanqu_fengmian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/piyaozhuanqu_fengmian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/piyaozhuanqu_fengmian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/piyaozhuanqu_fengmian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/piyaozhuanqu_fengmian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/piyaozhuanqu_fengmian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/piyaozhuanqu_fengmian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/piyaozhuanqu_fengmian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/piyaozhuanqu_fengmian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/piyaozhuanqu_fengmian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/piyaozhuanqu_fengmian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/piyaozhuanqu_fengmian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/qiuzhuxinxi_fengmian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/qiuzhuxinxi_fengmian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/qiuzhuxinxi_fengmian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/qiuzhuxinxi_fengmian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/qiuzhuxinxi_fengmian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/qiuzhuxinxi_fengmian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/qiuzhuxinxi_fengmian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/qiuzhuxinxi_fengmian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/qiuzhuxinxi_fengmian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/qiuzhuxinxi_fengmian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/qiuzhuxinxi_fengmian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/qiuzhuxinxi_fengmian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/test.txt -------------------------------------------------------------------------------- /src/main/webapp/upload/wuzixinxi_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/wuzixinxi_tupian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/wuzixinxi_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/wuzixinxi_tupian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/wuzixinxi_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/wuzixinxi_tupian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/wuzixinxi_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/wuzixinxi_tupian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/wuzixinxi_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/wuzixinxi_tupian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/wuzixinxi_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/wuzixinxi_tupian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/xinlizhishi_fengmian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/xinlizhishi_fengmian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/xinlizhishi_fengmian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/xinlizhishi_fengmian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/xinlizhishi_fengmian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/xinlizhishi_fengmian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/xinlizhishi_fengmian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/xinlizhishi_fengmian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/xinlizhishi_fengmian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/xinlizhishi_fengmian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/xinlizhishi_fengmian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/xinlizhishi_fengmian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yiliaojiuzhu_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yiliaojiuzhu_tupian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yiliaojiuzhu_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yiliaojiuzhu_tupian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yiliaojiuzhu_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yiliaojiuzhu_tupian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yiliaojiuzhu_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yiliaojiuzhu_tupian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yiliaojiuzhu_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yiliaojiuzhu_tupian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yiliaojiuzhu_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yiliaojiuzhu_tupian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_zhaopian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yonghu_zhaopian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_zhaopian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yonghu_zhaopian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_zhaopian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yonghu_zhaopian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_zhaopian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yonghu_zhaopian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_zhaopian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yonghu_zhaopian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_zhaopian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/yonghu_zhaopian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhaomuxinxi_fengmian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhaomuxinxi_fengmian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhaomuxinxi_fengmian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhaomuxinxi_fengmian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhaomuxinxi_fengmian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhaomuxinxi_fengmian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhaomuxinxi_fengmian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhaomuxinxi_fengmian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhaomuxinxi_fengmian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhaomuxinxi_fengmian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhaomuxinxi_fengmian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhaomuxinxi_fengmian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhiyuanzhe_zhaopian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhiyuanzhe_zhaopian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhiyuanzhe_zhaopian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhiyuanzhe_zhaopian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhiyuanzhe_zhaopian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhiyuanzhe_zhaopian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhiyuanzhe_zhaopian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhiyuanzhe_zhaopian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhiyuanzhe_zhaopian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhiyuanzhe_zhaopian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/zhiyuanzhe_zhaopian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/EmergencyMutualAidInformationManagementSystem/0caf4a3440c0af8c8e4efe9c201050fe3abc77bf/src/main/webapp/upload/zhiyuanzhe_zhaopian6.jpg --------------------------------------------------------------------------------