├── .gitattributes ├── .gitignore ├── README.md ├── picture ├── picture0.png ├── picture1.png ├── picture10.png ├── picture11.png ├── picture12.png ├── picture13.png ├── picture14.png ├── picture15.png ├── picture16.png ├── picture17.png ├── picture18.png ├── picture19.png ├── picture2.png ├── picture20.png ├── picture21.png ├── picture22.png ├── picture3.png ├── picture4.png ├── picture5.png ├── picture6.png ├── picture7.png ├── picture8.png └── picture9.png ├── pom.xml └── src └── main ├── java └── com │ ├── ServletContextListener │ └── DictionaryServletContextListener.java │ ├── annotation │ ├── APPLoginUser.java │ ├── IgnoreAuth.java │ └── LoginUser.java │ ├── config │ ├── InterceptorConfig.java │ ├── MyMetaObjectHandler.java │ └── MybatisPlusConfig.java │ ├── controller │ ├── ChangdiCollectionController.java │ ├── ChangdiController.java │ ├── ChangdiOrderController.java │ ├── CommonController.java │ ├── ConfigController.java │ ├── DictionaryController.java │ ├── FileController.java │ ├── ForumController.java │ ├── GonggaoController.java │ ├── UsersController.java │ └── YonghuController.java │ ├── dao │ ├── ChangdiCollectionDao.java │ ├── ChangdiDao.java │ ├── ChangdiOrderDao.java │ ├── CommonDao.java │ ├── ConfigDao.java │ ├── DictionaryDao.java │ ├── ForumDao.java │ ├── GonggaoDao.java │ ├── TokenDao.java │ ├── UsersDao.java │ └── YonghuDao.java │ ├── entity │ ├── ChangdiCollectionEntity.java │ ├── ChangdiEntity.java │ ├── ChangdiOrderEntity.java │ ├── ConfigEntity.java │ ├── DictionaryEntity.java │ ├── EIException.java │ ├── ForumEntity.java │ ├── GonggaoEntity.java │ ├── TokenEntity.java │ ├── UsersEntity.java │ ├── YonghuEntity.java │ ├── model │ │ ├── ChangdiCollectionModel.java │ │ ├── ChangdiModel.java │ │ ├── ChangdiOrderModel.java │ │ ├── DictionaryModel.java │ │ ├── ForumModel.java │ │ ├── GonggaoModel.java │ │ └── YonghuModel.java │ ├── view │ │ ├── ChangdiCollectionView.java │ │ ├── ChangdiOrderView.java │ │ ├── ChangdiView.java │ │ ├── DictionaryView.java │ │ ├── ForumView.java │ │ ├── GonggaoView.java │ │ └── YonghuView.java │ └── vo │ │ ├── ChangdiCollectionVO.java │ │ ├── ChangdiOrderVO.java │ │ ├── ChangdiVO.java │ │ ├── DictionaryVO.java │ │ ├── ForumVO.java │ │ ├── GonggaoVO.java │ │ └── YonghuVO.java │ ├── interceptor │ └── AuthorizationInterceptor.java │ ├── model │ └── enums │ │ └── TypeEnum.java │ ├── service │ ├── ChangdiCollectionService.java │ ├── ChangdiOrderService.java │ ├── ChangdiService.java │ ├── CommonService.java │ ├── ConfigService.java │ ├── DictionaryService.java │ ├── ForumService.java │ ├── GonggaoService.java │ ├── TokenService.java │ ├── UsersService.java │ ├── YonghuService.java │ └── impl │ │ ├── GonggaoServiceImpl.java │ │ ├── TokenServiceImpl.java │ │ ├── UsersServiceImpl.java │ │ └── YonghuServiceImpl.java │ ├── thread │ └── MyThreadMethod.java │ ├── tiyuguanApplication.java │ └── utils │ ├── BaiduUtil.java │ ├── CommonUtil.java │ ├── FileUtil.java │ ├── HttpClientUtils.java │ ├── JQPageInfo.java │ ├── MPUtil.java │ ├── PageUtils.java │ ├── PoiUtil.java │ ├── Query.java │ ├── R.java │ ├── SQLFilter.java │ ├── SpringContextUtils.java │ ├── StringUtil.java │ └── ValidatorUtils.java └── resources ├── admin └── admin │ ├── 1-install.bat │ ├── 2-run.bat │ ├── 3-build.bat │ ├── babel.config.js │ ├── dist │ ├── css │ │ ├── app.3d693ba9.css │ │ └── chunk-vendors.1f0a25b2.css │ ├── favicon.ico │ ├── fonts │ │ ├── element-icons.535877f5.woff │ │ └── element-icons.732389de.ttf │ ├── img │ │ ├── 404.3648f234.png │ │ └── zhongguo.20798bfa.png │ ├── index.html │ └── js │ │ ├── app.eec93dbf.js │ │ ├── app.eec93dbf.js.map │ │ ├── chunk-vendors.5a6aab60.js │ │ └── chunk-vendors.5a6aab60.js.map │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ ├── 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 │ ├── components │ │ ├── SvgIcon │ │ │ └── index.vue │ │ ├── common │ │ │ ├── BreadCrumbs.vue │ │ │ ├── Editor.vue │ │ │ └── FileUpload.vue │ │ ├── home │ │ │ ├── HomeCard.vue │ │ │ ├── HomeChart.vue │ │ │ ├── HomeComment.vue │ │ │ └── HomeProgress.vue │ │ └── index │ │ │ ├── IndexAside.vue │ │ │ ├── IndexAsideStatic.vue │ │ │ ├── IndexAsideSub.vue │ │ │ ├── IndexHeader.vue │ │ │ └── IndexMain.vue │ ├── 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 │ │ ├── style.css │ │ ├── style.js │ │ ├── utils.js │ │ └── validate.js │ └── views │ │ ├── 404.vue │ │ ├── center.vue │ │ ├── home.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── modules │ │ ├── changdiOrder │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── config │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionary │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── forum │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── gonggao │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── users │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ └── yonghu │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── pay.vue │ │ ├── register.vue │ │ └── update-password.vue │ └── vue.config.js ├── application.yml ├── front └── front │ ├── css │ ├── bootstrap.min.css │ ├── common.css │ ├── front-kaoshi-style.css │ ├── homeworkPC.min.css │ ├── style.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 │ ├── seckilling.jpg │ ├── select.png │ ├── selectActive.png │ ├── unselect.png │ ├── weixin.png │ ├── yuan.png │ ├── zhifubao.png │ └── zhongguo.png │ ├── index.html │ ├── js │ ├── bootstrap.AMapPositionPicker.js │ ├── bootstrap.min.js │ ├── config.js │ ├── jquery.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 │ ├── changdi │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── home │ │ └── home.html │ └── login │ │ └── login.html │ └── xznstatic │ ├── css │ ├── bootstrap.min.css │ ├── common.css │ ├── element.min.css │ ├── fonts │ │ ├── element-icons.ttf │ │ └── element-icons.woff │ ├── 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 │ ├── bootstrap.min.js │ ├── element.min.js │ ├── index.js │ ├── jquery-1.11.3.min.js │ └── jquery.SuperSlide.2.1.1.js ├── mapper ├── ChangdiCollectionDao.xml ├── ChangdiDao.xml ├── ChangdiOrderDao.xml ├── CommonDao.xml ├── ConfigDao.xml ├── DictionaryDao.xml ├── ForumDao.xml ├── GonggaoDao.xml ├── TokenDao.xml ├── UsersDao.xml └── YonghuDao.xml └── static └── upload ├── 1642388298854.jpg ├── 1642388687259.webp ├── 1642388812105.webp ├── 1642410512593.jpeg ├── 1642468654258.webp ├── 1642468665954.webp ├── 1642469419089.jpg ├── 1642469541407.jpg ├── 1642469609021.webp └── test /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java 4 | *.vue linguist-language=java 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | HELP.md 2 | /target/ 3 | /src/main/resources/admin/admin/node_modules/ 4 | /src/main/resources/front/front/node_modules/ 5 | 6 | !.mvn/wrapper/maven-wrapper.jar 7 | !**/src/main/**/target/ 8 | !**/src/test/**/target/ 9 | 10 | ### STS ### 11 | .apt_generated 12 | .classpath 13 | .factorypath 14 | .project 15 | .settings 16 | .springBeans 17 | .sts4-cache 18 | 19 | ### IntelliJ IDEA ### 20 | .idea 21 | *.iws 22 | *.iml 23 | *.ipr 24 | *.zip 25 | ### NetBeans ### 26 | /nbproject/private/ 27 | /nbbuild/ 28 | /dist/ 29 | /nbdist/ 30 | /.nb-gradle/ 31 | build/ 32 | !**/src/main/**/build/ 33 | !**/src/test/**/build/ 34 | 35 | ### VS Code ### 36 | .vscode/ 37 | -------------------------------------------------------------------------------- /picture/picture0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture0.png -------------------------------------------------------------------------------- /picture/picture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture1.png -------------------------------------------------------------------------------- /picture/picture10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture10.png -------------------------------------------------------------------------------- /picture/picture11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture11.png -------------------------------------------------------------------------------- /picture/picture12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture12.png -------------------------------------------------------------------------------- /picture/picture13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture13.png -------------------------------------------------------------------------------- /picture/picture14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture14.png -------------------------------------------------------------------------------- /picture/picture15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture15.png -------------------------------------------------------------------------------- /picture/picture16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture16.png -------------------------------------------------------------------------------- /picture/picture17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture17.png -------------------------------------------------------------------------------- /picture/picture18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture18.png -------------------------------------------------------------------------------- /picture/picture19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture19.png -------------------------------------------------------------------------------- /picture/picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture2.png -------------------------------------------------------------------------------- /picture/picture20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture20.png -------------------------------------------------------------------------------- /picture/picture21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture21.png -------------------------------------------------------------------------------- /picture/picture22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture22.png -------------------------------------------------------------------------------- /picture/picture3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture3.png -------------------------------------------------------------------------------- /picture/picture4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture4.png -------------------------------------------------------------------------------- /picture/picture5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture5.png -------------------------------------------------------------------------------- /picture/picture6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture6.png -------------------------------------------------------------------------------- /picture/picture7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture7.png -------------------------------------------------------------------------------- /picture/picture8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture8.png -------------------------------------------------------------------------------- /picture/picture9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/picture/picture9.png -------------------------------------------------------------------------------- /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/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/config/MybatisPlusConfig.java: -------------------------------------------------------------------------------- 1 | 2 | package com.config; 3 | 4 | import org.springframework.context.annotation.Bean; 5 | import org.springframework.context.annotation.Configuration; 6 | 7 | import com.baomidou.mybatisplus.mapper.MetaObjectHandler; 8 | import com.baomidou.mybatisplus.plugins.PaginationInterceptor; 9 | 10 | /** 11 | * mybatis-plus配置 12 | */ 13 | @Configuration 14 | public class MybatisPlusConfig { 15 | 16 | /** 17 | * 分页插件 18 | */ 19 | @Bean 20 | public PaginationInterceptor paginationInterceptor() { 21 | return new PaginationInterceptor(); 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ChangdiCollectionDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.ChangdiCollectionEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import java.util.Map; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.view.ChangdiCollectionView; 11 | 12 | /** 13 | * 场地收藏 Dao 接口 14 | * 15 | * @author 16 | */ 17 | public interface ChangdiCollectionDao extends BaseMapper { 18 | 19 | List selectListView(Pagination page,@Param("params")Map params); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ChangdiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.ChangdiEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import java.util.Map; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.view.ChangdiView; 11 | 12 | /** 13 | * 场地 Dao 接口 14 | * 15 | * @author 16 | */ 17 | public interface ChangdiDao extends BaseMapper { 18 | 19 | List selectListView(Pagination page,@Param("params")Map params); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ChangdiOrderDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.ChangdiOrderEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import java.util.Map; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.view.ChangdiOrderView; 11 | 12 | /** 13 | * 场地预约 Dao 接口 14 | * 15 | * @author 16 | */ 17 | public interface ChangdiOrderDao extends BaseMapper { 18 | 19 | List selectListView(Pagination page,@Param("params")Map params); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /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/DictionaryDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.DictionaryEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import java.util.Map; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.view.DictionaryView; 11 | 12 | /** 13 | * 字典 Dao 接口 14 | * 15 | * @author 16 | */ 17 | public interface DictionaryDao extends BaseMapper { 18 | 19 | List selectListView(Pagination page,@Param("params")Map params); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ForumDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.ForumEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import java.util.Map; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.view.ForumView; 11 | 12 | /** 13 | * 论坛 Dao 接口 14 | * 15 | * @author 16 | */ 17 | public interface ForumDao extends BaseMapper { 18 | 19 | List selectListView(Pagination page,@Param("params")Map params); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/dao/GonggaoDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.GonggaoEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import java.util.Map; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.view.GonggaoView; 11 | 12 | /** 13 | * 公告信息 Dao 接口 14 | * 15 | * @author 16 | */ 17 | public interface GonggaoDao extends BaseMapper { 18 | 19 | List selectListView(Pagination page,@Param("params")Map params); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /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/UsersDao.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.UsersEntity; 12 | 13 | /** 14 | * 用户 15 | */ 16 | public interface UsersDao 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.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.view.YonghuView; 11 | 12 | /** 13 | * 用户 Dao 接口 14 | * 15 | * @author 16 | */ 17 | public interface YonghuDao extends BaseMapper { 18 | 19 | List selectListView(Pagination page,@Param("params")Map params); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /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 | * @author yangliyuan 11 | * @version 创建时间:2020年2月7日 下午8:36:05 12 | * 类说明 : 13 | */ 14 | @TableName("config") 15 | public class ConfigEntity implements Serializable{ 16 | private static final long serialVersionUID = 1L; 17 | 18 | @TableId(type = IdType.AUTO) 19 | private Long id; 20 | 21 | /** 22 | * key 23 | */ 24 | private String name; 25 | 26 | /** 27 | * value 28 | */ 29 | private String value; 30 | 31 | public Long getId() { 32 | return id; 33 | } 34 | 35 | public void setId(Long id) { 36 | this.id = id; 37 | } 38 | 39 | public String getName() { 40 | return name; 41 | } 42 | 43 | public void setName(String name) { 44 | this.name = name; 45 | } 46 | 47 | public String getValue() { 48 | return value; 49 | } 50 | 51 | public void setValue(String value) { 52 | this.value = value; 53 | } 54 | 55 | } 56 | -------------------------------------------------------------------------------- /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/view/DictionaryView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.DictionaryEntity; 4 | import com.baomidou.mybatisplus.annotations.TableName; 5 | import org.apache.commons.beanutils.BeanUtils; 6 | import java.lang.reflect.InvocationTargetException; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | import com.fasterxml.jackson.annotation.JsonFormat; 9 | import java.io.Serializable; 10 | import java.util.Date; 11 | 12 | /** 13 | * 字典 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | */ 17 | @TableName("dictionary") 18 | public class DictionaryView extends DictionaryEntity implements Serializable { 19 | private static final long serialVersionUID = 1L; 20 | 21 | 22 | 23 | 24 | public DictionaryView() { 25 | 26 | } 27 | 28 | public DictionaryView(DictionaryEntity dictionaryEntity) { 29 | try { 30 | BeanUtils.copyProperties(this, dictionaryEntity); 31 | } catch (IllegalAccessException | InvocationTargetException e) { 32 | // TODO Auto-generated catch block 33 | e.printStackTrace(); 34 | } 35 | } 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | } 58 | -------------------------------------------------------------------------------- /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/ChangdiCollectionService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.utils.PageUtils; 5 | import com.entity.ChangdiCollectionEntity; 6 | import java.util.Map; 7 | import javax.servlet.http.HttpServletRequest; 8 | 9 | /** 10 | * 场地收藏 服务类 11 | */ 12 | public interface ChangdiCollectionService extends IService { 13 | 14 | /** 15 | * @param params 查询参数 16 | * @return 带分页的查询出来的数据 17 | */ 18 | PageUtils queryPage(Map params); 19 | } -------------------------------------------------------------------------------- /src/main/java/com/service/ChangdiOrderService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.utils.PageUtils; 5 | import com.entity.ChangdiOrderEntity; 6 | import java.util.Map; 7 | import javax.servlet.http.HttpServletRequest; 8 | 9 | /** 10 | * 场地预约 服务类 11 | */ 12 | public interface ChangdiOrderService extends IService { 13 | 14 | /** 15 | * @param params 查询参数 16 | * @return 带分页的查询出来的数据 17 | */ 18 | PageUtils queryPage(Map params); 19 | } -------------------------------------------------------------------------------- /src/main/java/com/service/ChangdiService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.utils.PageUtils; 5 | import com.entity.ChangdiEntity; 6 | import java.util.Map; 7 | import javax.servlet.http.HttpServletRequest; 8 | 9 | /** 10 | * 场地 服务类 11 | */ 12 | public interface ChangdiService extends IService { 13 | 14 | /** 15 | * @param params 查询参数 16 | * @return 带分页的查询出来的数据 17 | */ 18 | PageUtils queryPage(Map params); 19 | } -------------------------------------------------------------------------------- /src/main/java/com/service/ConfigService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.Map; 5 | 6 | import com.baomidou.mybatisplus.service.IService; 7 | import com.entity.ConfigEntity; 8 | import com.utils.PageUtils; 9 | 10 | 11 | /** 12 | * 系统用户 13 | * @author yangliyuan 14 | * @date 2019年10月10日 上午9:18:20 15 | */ 16 | public interface ConfigService extends IService { 17 | PageUtils queryPage(Map params); 18 | } 19 | -------------------------------------------------------------------------------- /src/main/java/com/service/DictionaryService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.utils.PageUtils; 5 | import com.entity.DictionaryEntity; 6 | import java.util.Map; 7 | import javax.servlet.http.HttpServletRequest; 8 | 9 | /** 10 | * 字典 服务类 11 | */ 12 | public interface DictionaryService extends IService { 13 | 14 | /** 15 | * @param params 查询参数 16 | * @return 带分页的查询出来的数据 17 | */ 18 | PageUtils queryPage(Map params); 19 | /** 20 | * 字典表转换 21 | * @param obj 22 | */ 23 | void dictionaryConvert(Object obj, HttpServletRequest request); 24 | } -------------------------------------------------------------------------------- /src/main/java/com/service/ForumService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.utils.PageUtils; 5 | import com.entity.ForumEntity; 6 | import java.util.Map; 7 | import javax.servlet.http.HttpServletRequest; 8 | 9 | /** 10 | * 论坛 服务类 11 | */ 12 | public interface ForumService extends IService { 13 | 14 | /** 15 | * @param params 查询参数 16 | * @return 带分页的查询出来的数据 17 | */ 18 | PageUtils queryPage(Map params); 19 | } -------------------------------------------------------------------------------- /src/main/java/com/service/GonggaoService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.utils.PageUtils; 5 | import com.entity.GonggaoEntity; 6 | import java.util.Map; 7 | import javax.servlet.http.HttpServletRequest; 8 | 9 | /** 10 | * 公告信息 服务类 11 | */ 12 | public interface GonggaoService extends IService { 13 | 14 | /** 15 | * @param params 查询参数 16 | * @return 带分页的查询出来的数据 17 | */ 18 | PageUtils queryPage(Map params); 19 | } -------------------------------------------------------------------------------- /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 | * @author yangliyuan 16 | * @date 2019年10月10日 上午9:18:20 17 | */ 18 | public interface TokenService extends IService { 19 | PageUtils queryPage(Map params); 20 | 21 | List selectListView(Wrapper wrapper); 22 | 23 | PageUtils queryPage(Map params,Wrapper wrapper); 24 | 25 | String generateToken(Integer userid,String username,String tableName, String role); 26 | 27 | TokenEntity getTokenEntity(String token); 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/service/UsersService.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.UsersEntity; 10 | import com.utils.PageUtils; 11 | 12 | 13 | /** 14 | * 系统用户 15 | * @author yangliyuan 16 | * @date 2019年10月10日 上午9:18:20 17 | */ 18 | public interface UsersService 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/YonghuService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.service.IService; 4 | import com.utils.PageUtils; 5 | import com.entity.YonghuEntity; 6 | import java.util.Map; 7 | import javax.servlet.http.HttpServletRequest; 8 | 9 | /** 10 | * 用户 服务类 11 | */ 12 | public interface YonghuService extends IService { 13 | 14 | /** 15 | * @param params 查询参数 16 | * @return 带分页的查询出来的数据 17 | */ 18 | PageUtils queryPage(Map params); 19 | } -------------------------------------------------------------------------------- /src/main/java/com/thread/MyThreadMethod.java: -------------------------------------------------------------------------------- 1 | package com.thread; 2 | 3 | /** 4 | * 线程执行方法(做一些项目启动后 一直要执行的操作,比如根据时间自动更改订单状态,比如订单签收30天自动收货功能,比如根据时间来更改状态) 5 | */ 6 | public class MyThreadMethod extends Thread { 7 | public void run() { 8 | while (!this.isInterrupted()) {// 线程未中断执行循环 9 | try { 10 | Thread.sleep(5000); //每隔2000ms执行一次 11 | } catch (InterruptedException e) { 12 | e.printStackTrace(); 13 | } 14 | 15 | // ------------------ 开始执行 --------------------------- 16 | // System.out.println("线程执行中:" + System.currentTimeMillis()); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/com/tiyuguanApplication.java: -------------------------------------------------------------------------------- 1 | package com; 2 | 3 | import org.mybatis.spring.annotation.MapperScan; 4 | import org.springframework.boot.SpringApplication; 5 | import org.springframework.boot.autoconfigure.SpringBootApplication; 6 | import org.springframework.boot.builder.SpringApplicationBuilder; 7 | import org.springframework.boot.web.servlet.ServletComponentScan; 8 | import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; 9 | 10 | @SpringBootApplication 11 | @ServletComponentScan(value = "com.ServletContextListener") 12 | @MapperScan(basePackages = {"com.dao"}) 13 | public class tiyuguanApplication extends SpringBootServletInitializer{ 14 | 15 | public static void main(String[] args) { 16 | SpringApplication.run(tiyuguanApplication.class, args); 17 | } 18 | 19 | @Override 20 | protected SpringApplicationBuilder configure(SpringApplicationBuilder applicationBuilder) { 21 | return applicationBuilder.sources(tiyuguanApplication.class); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/main/java/com/utils/CommonUtil.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.util.Random; 4 | 5 | public class CommonUtil { 6 | /** 7 | * 获取随机字符串 8 | * 9 | * @param num 10 | * @return 11 | */ 12 | public static String getRandomString(Integer num) { 13 | String base = "abcdefghijklmnopqrstuvwxyz0123456789"; 14 | Random random = new Random(); 15 | StringBuffer sb = new StringBuffer(); 16 | for (int i = 0; i < num; i++) { 17 | int number = random.nextInt(base.length()); 18 | sb.append(base.charAt(number)); 19 | } 20 | return sb.toString(); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /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 | * @author yangliyuan 11 | * @version 创建时间:2020年2月7日 下午8:01:14 12 | * 类说明 : 13 | */ 14 | 15 | public class FileUtil { 16 | public static byte[] FileToByte(File file) throws IOException { 17 | // 将数据转为流 18 | @SuppressWarnings("resource") 19 | InputStream content = new FileInputStream(file); 20 | ByteArrayOutputStream swapStream = new ByteArrayOutputStream(); 21 | byte[] buff = new byte[100]; 22 | int rc = 0; 23 | while ((rc = content.read(buff, 0, 100)) > 0) { 24 | swapStream.write(buff, 0, rc); 25 | } 26 | // 获得二进制数组 27 | return swapStream.toByteArray(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/main/java/com/utils/HttpClientUtils.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.io.BufferedReader; 4 | import java.io.InputStreamReader; 5 | import java.net.HttpURLConnection; 6 | import java.net.URL; 7 | 8 | 9 | /** 10 | * HttpClient工具类 11 | */ 12 | public class HttpClientUtils { 13 | 14 | /** 15 | * @param uri 16 | * @return String 17 | * @description get请求方式 18 | * @author: long.he01 19 | */ 20 | public static String doGet(String uri) { 21 | 22 | StringBuilder result = new StringBuilder(); 23 | try { 24 | String res = ""; 25 | URL url = new URL(uri); 26 | HttpURLConnection conn = (HttpURLConnection) url.openConnection(); 27 | BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8")); 28 | String line; 29 | while ((line = in.readLine()) != null) { 30 | res += line+"\n"; 31 | } 32 | in.close(); 33 | return res; 34 | }catch (Exception e) { 35 | e.printStackTrace(); 36 | return null; 37 | } 38 | 39 | } 40 | 41 | } 42 | 43 | -------------------------------------------------------------------------------- /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/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/java/com/utils/SQLFilter.java: -------------------------------------------------------------------------------- 1 | 2 | package com.utils; 3 | 4 | import org.apache.commons.lang3.StringUtils; 5 | 6 | import com.entity.EIException; 7 | 8 | /** 9 | * SQL过滤 10 | */ 11 | public class SQLFilter { 12 | 13 | /** 14 | * SQL注入过滤 15 | * @param str 待验证的字符串 16 | */ 17 | public static String sqlInject(String str){ 18 | if(StringUtils.isBlank(str)){ 19 | return null; 20 | } 21 | //去掉'|"|;|\字符 22 | str = StringUtils.replace(str, "'", ""); 23 | str = StringUtils.replace(str, "\"", ""); 24 | str = StringUtils.replace(str, ";", ""); 25 | str = StringUtils.replace(str, "\\", ""); 26 | 27 | //转换成小写 28 | str = str.toLowerCase(); 29 | 30 | //非法字符 31 | String[] keywords = {"master", "truncate", "insert", "select", "delete", "update", "declare", "alter", "drop"}; 32 | 33 | //判断是否包含非法字符 34 | for(String keyword : keywords){ 35 | if(str.indexOf(keyword) != -1){ 36 | throw new EIException("包含非法字符"); 37 | } 38 | } 39 | 40 | return str; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/main/java/com/utils/StringUtil.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | public class StringUtil { 4 | 5 | public static boolean isEmpty(String s){ 6 | if(s==null || s.equals("") || s.equals("null")){ 7 | return true; 8 | } 9 | return false; 10 | } 11 | 12 | public static boolean isNotEmpty(String s){ 13 | return !StringUtil.isEmpty(s); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/utils/ValidatorUtils.java: -------------------------------------------------------------------------------- 1 | 2 | package com.utils; 3 | 4 | 5 | import java.util.Set; 6 | 7 | import javax.validation.ConstraintViolation; 8 | import javax.validation.Validation; 9 | import javax.validation.Validator; 10 | 11 | import com.entity.EIException; 12 | 13 | /** 14 | * hibernate-validator校验工具类 15 | */ 16 | public class ValidatorUtils { 17 | private static Validator validator; 18 | 19 | static { 20 | validator = Validation.buildDefaultValidatorFactory().getValidator(); 21 | } 22 | 23 | /** 24 | * 校验对象 25 | * @param object 待校验对象 26 | * @param groups 待校验的组 27 | * @throws EIException 校验不通过,则报EIException异常 28 | */ 29 | public static void validateEntity(Object object, Class... groups) 30 | throws EIException { 31 | Set> constraintViolations = validator.validate(object, groups); 32 | if (!constraintViolations.isEmpty()) { 33 | ConstraintViolation constraint = (ConstraintViolation)constraintViolations.iterator().next(); 34 | throw new EIException(constraint.getMessage()); 35 | } 36 | } 37 | 38 | 39 | } 40 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/1-install.bat: -------------------------------------------------------------------------------- 1 | cnpm install -------------------------------------------------------------------------------- /src/main/resources/admin/admin/2-run.bat: -------------------------------------------------------------------------------- 1 | cnpm run serve -------------------------------------------------------------------------------- /src/main/resources/admin/admin/3-build.bat: -------------------------------------------------------------------------------- 1 | cnpm run build 2 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/dist/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/fonts/element-icons.535877f5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/dist/fonts/element-icons.535877f5.woff -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/fonts/element-icons.732389de.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/dist/fonts/element-icons.732389de.ttf -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/img/404.3648f234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/dist/img/404.3648f234.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/img/zhongguo.20798bfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/dist/img/zhongguo.20798bfa.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/index.html: -------------------------------------------------------------------------------- 1 | 体育馆使用预约平台
-------------------------------------------------------------------------------- /src/main/resources/admin/admin/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/public/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/admin/admin/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 体育馆使用预约平台 10 | 11 | 12 | 13 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/App.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | 31 | -------------------------------------------------------------------------------- /src/main/resources/admin/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/resources/admin/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/resources/admin/admin/src/assets/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/404.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/avator.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/bg.jpg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/captcha.jpg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/login.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/password.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/role.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/test/jianshe.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/test/jiaotong.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/test/nongye.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/test/weixin.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/test/zhifubao.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/test/zhongguo.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/assets/img/username.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 34 | 35 | 44 | -------------------------------------------------------------------------------- /src/main/resources/admin/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/resources/admin/admin/src/icons/svg/404.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/bug.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/build.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/channel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/chart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/component.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/dashboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/date.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/documentation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/download.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/drag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/druid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/edit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/education.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/email.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/excel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/form.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/fullscreen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/link.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/list.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/logininfor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/message.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/money.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/monitor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/nested.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/nested0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/operation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/password.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/password0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/peoples.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/post.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/sender.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/server.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/size.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/skill.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/AI.svg: -------------------------------------------------------------------------------- 1 | 物联设备 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/AIDeviceLayout.svg: -------------------------------------------------------------------------------- 1 | 物联网配置 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/EIM.svg: -------------------------------------------------------------------------------- 1 | 企业信息 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/VIP.svg: -------------------------------------------------------------------------------- 1 | vip登记 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/batch.svg: -------------------------------------------------------------------------------- 1 | 种植批次管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/board.svg: -------------------------------------------------------------------------------- 1 | 看板管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/company.svg: -------------------------------------------------------------------------------- 1 | 基本信息 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/deviceMonitorData.svg: -------------------------------------------------------------------------------- 1 | 监测数据 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/diseasesinsects.svg: -------------------------------------------------------------------------------- 1 | 病虫害分析 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/documentation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/email.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/environmental.svg: -------------------------------------------------------------------------------- 1 | 基地环境监测 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/farmingProject.svg: -------------------------------------------------------------------------------- 1 | 农事项目 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/finance.svg: -------------------------------------------------------------------------------- 1 | 财务管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/financeBudget.svg: -------------------------------------------------------------------------------- 1 | 预算统计 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/financeReality.svg: -------------------------------------------------------------------------------- 1 | 实际统计 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/firms.svg: -------------------------------------------------------------------------------- 1 | 厂商管理2 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestBatch.svg: -------------------------------------------------------------------------------- 1 | 采收批次管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestDetection.svg: -------------------------------------------------------------------------------- 1 | 采收检测标准 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestManage.svg: -------------------------------------------------------------------------------- 1 | 采收管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestWorks.svg: -------------------------------------------------------------------------------- 1 | 采收检测工单 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/heavyMetalDetection.svg: -------------------------------------------------------------------------------- 1 | 重金属检测项 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/inspection.svg: -------------------------------------------------------------------------------- 1 | 巡视反馈 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/internet.svg: -------------------------------------------------------------------------------- 1 | 物联网管理置 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/mainSystem.svg: -------------------------------------------------------------------------------- 1 | 主系统 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/monitorEquipment.svg: -------------------------------------------------------------------------------- 1 | 监测设备 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/order.svg: -------------------------------------------------------------------------------- 1 | 工单总览 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/password.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/peoples.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/pesticideResidue.svg: -------------------------------------------------------------------------------- 1 | 农残检测项 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/pests.svg: -------------------------------------------------------------------------------- 1 | 病虫害反馈 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/retroactiveCoding.svg: -------------------------------------------------------------------------------- 1 | 追溯打码 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/scheme.svg: -------------------------------------------------------------------------------- 1 | 种植计划管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/source.svg: -------------------------------------------------------------------------------- 1 | 溯源管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/sourceActive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 溯源管理 9 | 15 | 16 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/task.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/tempFarm.svg: -------------------------------------------------------------------------------- 1 | 临时农事管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/traceability.svg: -------------------------------------------------------------------------------- 1 | 溯源管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/traceabilityList.svg: -------------------------------------------------------------------------------- 1 | 溯源配置 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/traceabilityStyle.svg: -------------------------------------------------------------------------------- 1 | 溯源管理样式 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/user0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/validCode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/video.svg: -------------------------------------------------------------------------------- 1 | 视频云配置sp -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/videoKey.svg: -------------------------------------------------------------------------------- 1 | 视频云配置1 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/warnings.svg: -------------------------------------------------------------------------------- 1 | 预警阈值 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/┐┤░х╣▄└э.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 看板管理 9 | 11 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/swagger.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/tab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/table0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/task.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/template.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/theme.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/tree-table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/user0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/validCode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/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/resources/admin/admin/src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/admin/admin/src/store/store.js -------------------------------------------------------------------------------- /src/main/resources/admin/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/resources/admin/admin/src/utils/base.js: -------------------------------------------------------------------------------- 1 | const base = { 2 | get() { 3 | return { 4 | url : "http://localhost:8080/tiyuguan/", 5 | name: "tiyuguan", 6 | // 退出到首页链接 7 | indexUrl: 'http://localhost:8080/tiyuguan/front/index.html' 8 | }; 9 | }, 10 | getProjectName(){ 11 | return { 12 | projectName: "体育馆使用预约平台" 13 | } 14 | } 15 | } 16 | export default base 17 | -------------------------------------------------------------------------------- /src/main/resources/admin/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: '/tiyuguan', 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/resources/admin/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/resources/admin/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/resources/admin/admin/src/utils/validate.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 邮箱 3 | * @param {*} s 4 | */ 5 | export function isEmail (s) { 6 | return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s) 7 | } 8 | 9 | /** 10 | * 手机号码 11 | * @param {*} s 12 | */ 13 | export function isMobile (s) { 14 | return /^1[0-9]{10}$/.test(s) 15 | } 16 | 17 | /** 18 | * 电话号码 19 | * @param {*} s 20 | */ 21 | export function isPhone (s) { 22 | return /^([0-9]{3,4}-)?[0-9]{7,8}$/.test(s) 23 | } 24 | 25 | /** 26 | * URL地址 27 | * @param {*} s 28 | */ 29 | export function isURL (s) { 30 | return /^http[s]?:\/\/.*/.test(s) 31 | } 32 | 33 | /** 34 | * 匹配数字,可以是小数,不可以是负数,可以为空 35 | * @param {*} s 36 | */ 37 | export function isNumber(s){ 38 | return /(^-?[+-]?([0-9]*\.?[0-9]+|[0-9]+\.?[0-9]*)([eE][+-]?[0-9]+)?$)|(^$)/.test(s); 39 | } 40 | /** 41 | * 匹配整数,可以为空 42 | * @param {*} s 43 | */ 44 | export function isIntNumer(s){ 45 | return /(^-?\d+$)|(^$)/.test(s); 46 | } 47 | /** 48 | * 身份证校验 49 | */ 50 | export function checkIdCard(idcard) { 51 | const regIdCard = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/; 52 | if (!regIdCard.test(idcard)) { 53 | return false; 54 | } else { 55 | return true; 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/404.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 20 | 21 | 46 | 47 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/home.vue: -------------------------------------------------------------------------------- 1 | 8 | 32 | 33 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/index.vue: -------------------------------------------------------------------------------- 1 | 10 | 22 | 23 | 33 | -------------------------------------------------------------------------------- /src/main/resources/front/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/resources/front/front/elementui/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/elementui/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/main/resources/front/front/elementui/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/elementui/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/avator.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/banner.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/jianshe.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/jiaotong.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/line.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/nongye.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/seckilling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/seckilling.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/select.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/selectActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/selectActive.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/unselect.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/weixin.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/yuan.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/zhifubao.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/img/zhongguo.png -------------------------------------------------------------------------------- /src/main/resources/front/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/resources/front/front/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/code.js: -------------------------------------------------------------------------------- 1 | /** layui-v2.5.6 MIT License By https://www.layui.com */ 2 | ;layui.define("jquery",function(e){"use strict";var a=layui.$,l="http://www.layui.com/doc/modules/code.html";e("code",function(e){var t=[];e=e||{},e.elem=a(e.elem||".layui-code"),e.about=!("about"in e)||e.about,e.elem.each(function(){t.push(this)}),layui.each(t.reverse(),function(t,i){var c=a(i),o=c.html();(c.attr("lay-encode")||e.encode)&&(o=o.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")),c.html('
  1. '+o.replace(/[\r\t\n]+/g,"
  2. ")+"
"),c.find(">.layui-code-h3")[0]||c.prepend('

'+(c.attr("lay-title")||e.title||"code")+(e.about?'layui.code':"")+"

");var d=c.find(">.layui-code-ol");c.addClass("layui-box layui-code-view"),(c.attr("lay-skin")||e.skin)&&c.addClass("layui-code-"+(c.attr("lay-skin")||e.skin)),(d.find("li").length/100|0)>0&&d.css("margin-left",(d.find("li").length/100|0)+"px"),(c.attr("lay-height")||e.height)&&d.css("max-height",c.attr("lay-height")||e.height)})})}).addcss("modules/code.css","skincodecss"); -------------------------------------------------------------------------------- /src/main/resources/front/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/resources/front/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/resources/front/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/resources/front/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/resources/front/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/resources/front/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/resources/front/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/resources/front/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/resources/front/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/resources/front/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/resources/front/front/modules/tinymce/tinymce/skins/content/dark/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{background-color:#2f3742;color:#dfe0e4;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table td,table th{border:1px solid #6d737b;padding:.4rem}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}td[data-mce-selected],th[data-mce-selected]{color:#333}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem} 8 | /*# sourceMappingURL=content.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/resources/front/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/resources/front/front/modules/tinymce/tinymce/skins/content/document/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 | @media screen{html{background:#f4f4f4}}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif}@media screen{body{background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.15);box-sizing:border-box;margin:1rem auto 0;max-width:820px;min-height:calc(100vh - 1rem);padding:4rem 6rem 6rem 6rem}}table{border-collapse:collapse}table td,table th{border:1px solid #ccc;padding:.4rem}figure figcaption{color:#999;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}.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/resources/front/front/modules/tinymce/tinymce/skins/content/writer/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 auto;max-width:900px}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/resources/front/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/resources/front/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/resources/front/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/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/resources/front/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/resources/front/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/resources/front/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/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/css/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/css/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/css/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/css/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/162237296.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/162237296.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/162240878.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/162240878.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/19.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/1_092ZZ2503138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/1_092ZZ2503138.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/20.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/index_24.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/index_35.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/index_41.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/index_44.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/logo.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/news_list_time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/news_list_time.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/service_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/service_btn.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/service_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/service_img.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/service_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/front/front/xznstatic/img/service_title.png -------------------------------------------------------------------------------- /src/main/resources/front/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/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/UsersDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/static/upload/1642388298854.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/static/upload/1642388298854.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1642388687259.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/static/upload/1642388687259.webp -------------------------------------------------------------------------------- /src/main/resources/static/upload/1642388812105.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/static/upload/1642388812105.webp -------------------------------------------------------------------------------- /src/main/resources/static/upload/1642410512593.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/static/upload/1642410512593.jpeg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1642468654258.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/static/upload/1642468654258.webp -------------------------------------------------------------------------------- /src/main/resources/static/upload/1642468665954.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/static/upload/1642468665954.webp -------------------------------------------------------------------------------- /src/main/resources/static/upload/1642469419089.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/static/upload/1642469419089.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1642469541407.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/static/upload/1642469541407.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1642469609021.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/static/upload/1642469609021.webp -------------------------------------------------------------------------------- /src/main/resources/static/upload/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/gymSubscribePublic/e90b50ac2b28e3f75209d2b4eeb7866c3446ffea/src/main/resources/static/upload/test --------------------------------------------------------------------------------