├── .DS_Store ├── .gitattributes ├── README.md ├── pom.xml └── src └── main ├── java └── com │ ├── annotation │ ├── APPLoginUser.java │ ├── IgnoreAuth.java │ └── LoginUser.java │ ├── config │ └── MyMetaObjectHandler.java │ ├── controller │ ├── AddressController.java │ ├── CartController.java │ ├── ChatController.java │ ├── ChongwufenleiController.java │ ├── ChongwuguashiController.java │ ├── ChongwujicunController.java │ ├── ChongwulingyangController.java │ ├── ChongwushangdianController.java │ ├── ChongwuyongpinController.java │ ├── CommonController.java │ ├── ConfigController.java │ ├── DiscusschongwuguashiController.java │ ├── DiscusschongwulingyangController.java │ ├── DiscusschongwushangdianController.java │ ├── DiscusschongwuyongpinController.java │ ├── FileController.java │ ├── ForumController.java │ ├── NewsController.java │ ├── OrdersController.java │ ├── ShangpinfenleiController.java │ ├── StoreupController.java │ ├── UserController.java │ ├── YonghuController.java │ └── YonghulingyangController.java │ ├── dao │ ├── AddressDao.java │ ├── CartDao.java │ ├── ChatDao.java │ ├── ChongwufenleiDao.java │ ├── ChongwuguashiDao.java │ ├── ChongwujicunDao.java │ ├── ChongwulingyangDao.java │ ├── ChongwushangdianDao.java │ ├── ChongwuyongpinDao.java │ ├── CommonDao.java │ ├── ConfigDao.java │ ├── DiscusschongwuguashiDao.java │ ├── DiscusschongwulingyangDao.java │ ├── DiscusschongwushangdianDao.java │ ├── DiscusschongwuyongpinDao.java │ ├── ForumDao.java │ ├── NewsDao.java │ ├── OrdersDao.java │ ├── ShangpinfenleiDao.java │ ├── StoreupDao.java │ ├── TokenDao.java │ ├── UserDao.java │ ├── YonghuDao.java │ └── YonghulingyangDao.java │ ├── entity │ ├── AddressEntity.java │ ├── CartEntity.java │ ├── ChatEntity.java │ ├── ChongwufenleiEntity.java │ ├── ChongwuguashiEntity.java │ ├── ChongwujicunEntity.java │ ├── ChongwulingyangEntity.java │ ├── ChongwushangdianEntity.java │ ├── ChongwuyongpinEntity.java │ ├── ConfigEntity.java │ ├── DiscusschongwuguashiEntity.java │ ├── DiscusschongwulingyangEntity.java │ ├── DiscusschongwushangdianEntity.java │ ├── DiscusschongwuyongpinEntity.java │ ├── EIException.java │ ├── ForumEntity.java │ ├── NewsEntity.java │ ├── OrdersEntity.java │ ├── ShangpinfenleiEntity.java │ ├── StoreupEntity.java │ ├── TokenEntity.java │ ├── UserEntity.java │ ├── YonghuEntity.java │ ├── YonghulingyangEntity.java │ ├── model │ │ ├── AddressModel.java │ │ ├── CartModel.java │ │ ├── ChatModel.java │ │ ├── ChongwufenleiModel.java │ │ ├── ChongwuguashiModel.java │ │ ├── ChongwujicunModel.java │ │ ├── ChongwulingyangModel.java │ │ ├── ChongwushangdianModel.java │ │ ├── ChongwuyongpinModel.java │ │ ├── DiscusschongwuguashiModel.java │ │ ├── DiscusschongwulingyangModel.java │ │ ├── DiscusschongwushangdianModel.java │ │ ├── DiscusschongwuyongpinModel.java │ │ ├── ForumModel.java │ │ ├── NewsModel.java │ │ ├── OrdersModel.java │ │ ├── ShangpinfenleiModel.java │ │ ├── StoreupModel.java │ │ ├── YonghuModel.java │ │ └── YonghulingyangModel.java │ ├── view │ │ ├── AddressView.java │ │ ├── CartView.java │ │ ├── ChatView.java │ │ ├── ChongwufenleiView.java │ │ ├── ChongwuguashiView.java │ │ ├── ChongwujicunView.java │ │ ├── ChongwulingyangView.java │ │ ├── ChongwushangdianView.java │ │ ├── ChongwuyongpinView.java │ │ ├── DiscusschongwuguashiView.java │ │ ├── DiscusschongwulingyangView.java │ │ ├── DiscusschongwushangdianView.java │ │ ├── DiscusschongwuyongpinView.java │ │ ├── ForumView.java │ │ ├── NewsView.java │ │ ├── OrdersView.java │ │ ├── ShangpinfenleiView.java │ │ ├── StoreupView.java │ │ ├── YonghuView.java │ │ └── YonghulingyangView.java │ └── vo │ │ ├── AddressVO.java │ │ ├── CartVO.java │ │ ├── ChatVO.java │ │ ├── ChongwufenleiVO.java │ │ ├── ChongwuguashiVO.java │ │ ├── ChongwujicunVO.java │ │ ├── ChongwulingyangVO.java │ │ ├── ChongwushangdianVO.java │ │ ├── ChongwuyongpinVO.java │ │ ├── DiscusschongwuguashiVO.java │ │ ├── DiscusschongwulingyangVO.java │ │ ├── DiscusschongwushangdianVO.java │ │ ├── DiscusschongwuyongpinVO.java │ │ ├── ForumVO.java │ │ ├── NewsVO.java │ │ ├── OrdersVO.java │ │ ├── ShangpinfenleiVO.java │ │ ├── StoreupVO.java │ │ ├── YonghuVO.java │ │ └── YonghulingyangVO.java │ ├── interceptor │ └── AuthorizationInterceptor.java │ ├── model │ └── enums │ │ └── TypeEnum.java │ ├── service │ ├── AddressService.java │ ├── CartService.java │ ├── ChatService.java │ ├── ChongwufenleiService.java │ ├── ChongwuguashiService.java │ ├── ChongwujicunService.java │ ├── ChongwulingyangService.java │ ├── ChongwushangdianService.java │ ├── ChongwuyongpinService.java │ ├── CommonService.java │ ├── ConfigService.java │ ├── DiscusschongwuguashiService.java │ ├── DiscusschongwulingyangService.java │ ├── DiscusschongwushangdianService.java │ ├── DiscusschongwuyongpinService.java │ ├── ForumService.java │ ├── NewsService.java │ ├── OrdersService.java │ ├── ShangpinfenleiService.java │ ├── StoreupService.java │ ├── TokenService.java │ ├── UserService.java │ ├── YonghuService.java │ ├── YonghulingyangService.java │ └── impl │ │ ├── AddressServiceImpl.java │ │ ├── CartServiceImpl.java │ │ ├── ChatServiceImpl.java │ │ ├── ChongwufenleiServiceImpl.java │ │ ├── ChongwuguashiServiceImpl.java │ │ ├── ChongwujicunServiceImpl.java │ │ ├── ChongwulingyangServiceImpl.java │ │ ├── ChongwushangdianServiceImpl.java │ │ ├── ChongwuyongpinServiceImpl.java │ │ ├── CommonServiceImpl.java │ │ ├── ConfigServiceImpl.java │ │ ├── DiscusschongwuguashiServiceImpl.java │ │ ├── DiscusschongwulingyangServiceImpl.java │ │ ├── DiscusschongwushangdianServiceImpl.java │ │ ├── DiscusschongwuyongpinServiceImpl.java │ │ ├── ForumServiceImpl.java │ │ ├── NewsServiceImpl.java │ │ ├── OrdersServiceImpl.java │ │ ├── ShangpinfenleiServiceImpl.java │ │ ├── StoreupServiceImpl.java │ │ ├── TokenServiceImpl.java │ │ ├── UserServiceImpl.java │ │ ├── YonghuServiceImpl.java │ │ └── YonghulingyangServiceImpl.java │ └── utils │ ├── BaiduUtil.java │ ├── CommonUtil.java │ ├── FileUtil.java │ ├── HttpClientUtils.java │ ├── JQPageInfo.java │ ├── MPUtil.java │ ├── PageUtils.java │ ├── Query.java │ ├── R.java │ ├── SQLFilter.java │ ├── SpringContextUtils.java │ └── ValidatorUtils.java ├── resources ├── config.properties ├── log4j.properties ├── mapper │ ├── AddressDao.xml │ ├── CartDao.xml │ ├── ChatDao.xml │ ├── ChongwufenleiDao.xml │ ├── ChongwuguashiDao.xml │ ├── ChongwujicunDao.xml │ ├── ChongwulingyangDao.xml │ ├── ChongwushangdianDao.xml │ ├── ChongwuyongpinDao.xml │ ├── CommonDao.xml │ ├── ConfigDao.xml │ ├── DiscusschongwuguashiDao.xml │ ├── DiscusschongwulingyangDao.xml │ ├── DiscusschongwushangdianDao.xml │ ├── DiscusschongwuyongpinDao.xml │ ├── ForumDao.xml │ ├── NewsDao.xml │ ├── OrdersDao.xml │ ├── ShangpinfenleiDao.xml │ ├── StoreupDao.xml │ ├── TokenDao.xml │ ├── UserDao.xml │ ├── YonghuDao.xml │ └── YonghulingyangDao.xml ├── mybatis │ └── mybatis-config.xml └── spring │ ├── spring-mvc.xml │ ├── spring-mybatis.xml │ └── spring.xml └── webapp ├── WEB-INF └── web.xml ├── admin ├── 1-install.bat ├── 2-run.bat ├── babel.config.js ├── dist │ ├── css │ │ ├── app.47ed9311.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.c78936c3.js │ │ ├── app.c78936c3.js.map │ │ ├── chunk-vendors.fd50209d.js │ │ └── chunk-vendors.fd50209d.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 │ │ │ ├── BreadCrumbs.vue.bak │ │ │ ├── Editor.vue │ │ │ └── FileUpload.vue │ │ ├── home │ │ │ ├── HomeCard.vue │ │ │ ├── HomeChart.vue │ │ │ ├── HomeComment.vue │ │ │ └── HomeProgress.vue │ │ └── index │ │ │ ├── IndexAside.vue │ │ │ ├── IndexAsideStatic.vue │ │ │ ├── IndexAsideStatic.vue.bak │ │ │ ├── IndexAsideSub.vue │ │ │ ├── IndexHeader.vue │ │ │ ├── IndexHeader.vue.bak │ │ │ └── IndexMain.vue │ ├── icons │ │ ├── index.js │ │ ├── svg │ │ │ ├── 404.svg │ │ │ ├── articleEdit.svg │ │ │ ├── banner.svg │ │ │ ├── bug.svg │ │ │ ├── build.svg │ │ │ ├── cfg.svg │ │ │ ├── channel.svg │ │ │ ├── chart.svg │ │ │ ├── clipboard.svg │ │ │ ├── code.svg │ │ │ ├── component.svg │ │ │ ├── contacts.svg │ │ │ ├── dashboard.svg │ │ │ ├── date.svg │ │ │ ├── dept.svg │ │ │ ├── dict.svg │ │ │ ├── documentation.svg │ │ │ ├── download.svg │ │ │ ├── drag.svg │ │ │ ├── druid.svg │ │ │ ├── edit.svg │ │ │ ├── education.svg │ │ │ ├── email.svg │ │ │ ├── excel.svg │ │ │ ├── exit-fullscreen.svg │ │ │ ├── eye-open.svg │ │ │ ├── file.svg │ │ │ ├── form.svg │ │ │ ├── fullscreen.svg │ │ │ ├── icon.svg │ │ │ ├── international.svg │ │ │ ├── job.svg │ │ │ ├── language.svg │ │ │ ├── link.svg │ │ │ ├── list.svg │ │ │ ├── lock.svg │ │ │ ├── log.svg │ │ │ ├── logininfor.svg │ │ │ ├── menu.svg │ │ │ ├── message.svg │ │ │ ├── money.svg │ │ │ ├── monitor.svg │ │ │ ├── nested.svg │ │ │ ├── nested0.svg │ │ │ ├── online.svg │ │ │ ├── operation.svg │ │ │ ├── password.svg │ │ │ ├── password0.svg │ │ │ ├── pdf.svg │ │ │ ├── people.svg │ │ │ ├── peoples.svg │ │ │ ├── phone.svg │ │ │ ├── post.svg │ │ │ ├── qq.svg │ │ │ ├── search.svg │ │ │ ├── sender.svg │ │ │ ├── server.svg │ │ │ ├── shopping.svg │ │ │ ├── shoppingCard.svg │ │ │ ├── size.svg │ │ │ ├── skill.svg │ │ │ ├── star.svg │ │ │ ├── svg │ │ │ │ ├── AI.svg │ │ │ │ ├── AIDeviceLayout.svg │ │ │ │ ├── EIM.svg │ │ │ │ ├── VIP.svg │ │ │ │ ├── agricultureRegister.svg │ │ │ │ ├── area.svg │ │ │ │ ├── base.svg │ │ │ │ ├── batch.svg │ │ │ │ ├── board.svg │ │ │ │ ├── board1.svg │ │ │ │ ├── boardConfig.svg │ │ │ │ ├── cfg.svg │ │ │ │ ├── code.svg │ │ │ │ ├── company.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── crops.svg │ │ │ │ ├── dashboard.svg │ │ │ │ ├── dataAbnormal.svg │ │ │ │ ├── dataLack.svg │ │ │ │ ├── dept.svg │ │ │ │ ├── device.svg │ │ │ │ ├── deviceMonitorData.svg │ │ │ │ ├── dict.svg │ │ │ │ ├── diseasesinsect.svg │ │ │ │ ├── diseasesinsects.svg │ │ │ │ ├── documentation.svg │ │ │ │ ├── email.svg │ │ │ │ ├── environmental.svg │ │ │ │ ├── eye-open.svg │ │ │ │ ├── farmingProject.svg │ │ │ │ ├── finance.svg │ │ │ │ ├── financeBudget.svg │ │ │ │ ├── financeReality.svg │ │ │ │ ├── firm.svg │ │ │ │ ├── firms.svg │ │ │ │ ├── harvestBatch.svg │ │ │ │ ├── harvestDetection.svg │ │ │ │ ├── harvestManage.svg │ │ │ │ ├── harvestWorks.svg │ │ │ │ ├── heavyMetalDetection.svg │ │ │ │ ├── home.svg │ │ │ │ ├── inspection.svg │ │ │ │ ├── internet.svg │ │ │ │ ├── internetActive.svg │ │ │ │ ├── log.svg │ │ │ │ ├── mainSystem.svg │ │ │ │ ├── mainSystemActive.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── monitorEquipment.svg │ │ │ │ ├── news.svg │ │ │ │ ├── order.svg │ │ │ │ ├── password.svg │ │ │ │ ├── peoples.svg │ │ │ │ ├── pest.svg │ │ │ │ ├── pestActive.svg │ │ │ │ ├── pesticideResidue.svg │ │ │ │ ├── pests.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── plant.svg │ │ │ │ ├── plants.svg │ │ │ │ ├── plantsActive.svg │ │ │ │ ├── residual.svg │ │ │ │ ├── retroactiveCoding.svg │ │ │ │ ├── scheme.svg │ │ │ │ ├── source.svg │ │ │ │ ├── sourceActive.svg │ │ │ │ ├── system.svg │ │ │ │ ├── task.svg │ │ │ │ ├── tempFarm.svg │ │ │ │ ├── traceability.svg │ │ │ │ ├── traceabilityList.svg │ │ │ │ ├── traceabilityStyle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── user0.svg │ │ │ │ ├── validCode.svg │ │ │ │ ├── video.svg │ │ │ │ ├── videoEquipment.svg │ │ │ │ ├── videoKey.svg │ │ │ │ ├── vipCustomized.svg │ │ │ │ ├── warnings.svg │ │ │ │ ├── workOrder.svg │ │ │ │ ├── ┐┤░х╣▄└э.svg │ │ │ │ └── ╓╪╜Ё╩Ї╝ь▓т╣▄└э.svg │ │ │ ├── swagger.svg │ │ │ ├── system.svg │ │ │ ├── tab.svg │ │ │ ├── table.svg │ │ │ ├── table0.svg │ │ │ ├── task.svg │ │ │ ├── template.svg │ │ │ ├── theme.svg │ │ │ ├── tool.svg │ │ │ ├── tree-table.svg │ │ │ ├── tree.svg │ │ │ ├── user.svg │ │ │ ├── user0.svg │ │ │ ├── validCode.svg │ │ │ ├── wechat.svg │ │ │ └── zip.svg │ │ └── svgo.yml │ ├── main.js │ ├── router │ │ └── router-static.js │ ├── store │ │ └── store.js │ ├── utils │ │ ├── api.js │ │ ├── base.js │ │ ├── http.js │ │ ├── i18n.js │ │ ├── menu.js │ │ ├── storage.js │ │ ├── utils.js │ │ └── validate.js │ ├── views │ │ ├── 404.vue │ │ ├── center.vue │ │ ├── home.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── modules │ │ │ ├── address │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── cart │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── chat │ │ │ │ ├── chat-add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── chongwufenlei │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── chongwuguashi │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── chongwujicun │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── chongwulingyang │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── chongwushangdian │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── chongwuyongpin │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── config │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── discusschongwuguashi │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── discusschongwulingyang │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── discusschongwushangdian │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── discusschongwuyongpin │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── forum │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── news │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── orders │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── shangpinfenlei │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── storeup │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── users │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── yonghu │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ └── yonghulingyang │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ ├── pay.vue │ │ ├── register.vue │ │ └── update-password.vue │ └── vm │ │ ├── add-or-update.vue.vm │ │ ├── base.js.vm │ │ ├── http.js.vm │ │ ├── list.vue.vm │ │ ├── login.vue.vm │ │ ├── menu.js.vm │ │ ├── router-static.js.vm │ │ └── vue.config.js.vm └── vue.config.js ├── front ├── .idea │ ├── .gitignore │ ├── front.iml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── css │ ├── bootstrap.min.css │ ├── common.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 │ ├── now.png │ ├── seckilling.jpg │ ├── select.png │ ├── unselect.png │ ├── weixin.png │ ├── yuan.png │ ├── zhifubao.png │ └── zhongguo.png ├── index.html ├── index.html.bak ├── js │ ├── bootstrap.AMapPositionPicker.js │ ├── bootstrap.min.js │ ├── 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 │ ├── chat │ │ └── chat.html │ ├── chongwufenlei │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── chongwuguashi │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── chongwujicun │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── chongwulingyang │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── chongwushangdian │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── chongwuyongpin │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── config │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── discusschongwuguashi │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── discusschongwulingyang │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── discusschongwushangdian │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── discusschongwuyongpin │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── forum │ │ ├── add-comment.html │ │ ├── add.html │ │ ├── detail.html │ │ ├── list-my.html │ │ ├── list.html │ │ └── update.html │ ├── home │ │ └── home.html │ ├── login │ │ └── login.html │ ├── news │ │ ├── detail.html │ │ └── list.html │ ├── shangpinfenlei │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── shop-address │ │ ├── add.html │ │ ├── list.html │ │ └── update.html │ ├── shop-cart │ │ └── list.html │ ├── shop-order │ │ ├── confirm.html │ │ └── list.html │ ├── shop-recharge │ │ └── recharge.html │ ├── storeup │ │ └── list.html │ ├── users │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html │ ├── yonghu │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ └── yonghulingyang │ │ ├── add.html │ │ ├── detail.html │ │ └── list.html └── xznstatic │ ├── css │ ├── common.css │ ├── login.css │ ├── public.css │ └── style.css │ ├── img │ ├── 162237296.jpg │ ├── 162240878.jpg │ ├── 19.jpg │ ├── 1_092ZZ2503138.jpg │ ├── 20.jpg │ ├── index_24.gif │ ├── index_35.gif │ ├── index_41.gif │ ├── index_44.gif │ ├── logo.png │ ├── news_list_time.jpg │ ├── service_btn.png │ ├── service_img.png │ └── service_title.png │ └── js │ ├── index.js │ ├── jquery-1.11.3.min.js │ └── jquery.SuperSlide.2.1.1.js ├── index.jsp ├── resources ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js └── jquery │ └── jquery-2.2.3.min.js └── upload ├── 1610761456257.jpg ├── 1610761671990.jpg ├── 1610761955789.jpg ├── 1610761992241.jpg ├── 1610762064132.jpg ├── 1610762179593.jpg ├── 1610762210545.jpg ├── 1610762248519.jpg ├── 1610762267017.jpg ├── 1610762481131.jpg ├── 1610762486328.jpg ├── chongwuguashi_tupian1.jpg ├── chongwuguashi_tupian2.jpg ├── chongwuguashi_tupian3.jpg ├── chongwuguashi_tupian4.jpg ├── chongwuguashi_tupian5.jpg ├── chongwuguashi_tupian6.jpg ├── chongwujicun_tupian1.jpg ├── chongwujicun_tupian2.jpg ├── chongwujicun_tupian3.jpg ├── chongwujicun_tupian4.jpg ├── chongwujicun_tupian5.jpg ├── chongwujicun_tupian6.jpg ├── chongwulingyang_tupian1.jpg ├── chongwulingyang_tupian2.jpg ├── chongwulingyang_tupian3.jpg ├── chongwulingyang_tupian4.jpg ├── chongwulingyang_tupian5.jpg ├── chongwulingyang_tupian6.jpg ├── chongwushangdian_tupian1.jpg ├── chongwushangdian_tupian2.jpg ├── chongwushangdian_tupian3.jpg ├── chongwushangdian_tupian4.jpg ├── chongwushangdian_tupian5.jpg ├── chongwushangdian_tupian6.jpg ├── chongwuyongpin_tupian1.jpg ├── chongwuyongpin_tupian2.jpg ├── chongwuyongpin_tupian3.jpg ├── chongwuyongpin_tupian4.jpg ├── chongwuyongpin_tupian5.jpg ├── chongwuyongpin_tupian6.jpg ├── news_picture1.jpg ├── news_picture2.jpg ├── news_picture3.jpg ├── news_picture4.jpg ├── news_picture5.jpg ├── news_picture6.jpg ├── picture1.jpg ├── picture2.jpg ├── picture3.jpg ├── test.txt ├── yonghu_touxiang1.jpg ├── yonghu_touxiang2.jpg ├── yonghu_touxiang3.jpg ├── yonghu_touxiang4.jpg ├── yonghu_touxiang5.jpg ├── yonghu_touxiang6.jpg ├── yonghulingyang_tupian1.jpg ├── yonghulingyang_tupian2.jpg ├── yonghulingyang_tupian3.jpg ├── yonghulingyang_tupian4.jpg ├── yonghulingyang_tupian5.jpg └── yonghulingyang_tupian6.jpg /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java 4 | *.vue linguist-language=java -------------------------------------------------------------------------------- /src/main/java/com/annotation/APPLoginUser.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | */ 11 | @Target(ElementType.PARAMETER) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | public @interface APPLoginUser { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/annotation/IgnoreAuth.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /** 6 | * 忽略Token验证 7 | */ 8 | @Target(ElementType.METHOD) 9 | @Retention(RetentionPolicy.RUNTIME) 10 | @Documented 11 | public @interface IgnoreAuth { 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/annotation/LoginUser.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | */ 11 | @Target(ElementType.PARAMETER) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | public @interface LoginUser { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/config/MyMetaObjectHandler.java: -------------------------------------------------------------------------------- 1 | package com.config; 2 | 3 | import java.util.Date; 4 | 5 | import org.apache.ibatis.reflection.MetaObject; 6 | 7 | import com.baomidou.mybatisplus.mapper.MetaObjectHandler; 8 | 9 | /** 10 | * 自定义填充处理器 11 | */ 12 | public class MyMetaObjectHandler extends MetaObjectHandler { 13 | 14 | @Override 15 | public void insertFill(MetaObject metaObject) { 16 | this.setFieldValByName("ctime", new Date(), metaObject); 17 | } 18 | 19 | @Override 20 | public boolean openUpdateFill() { 21 | return false; 22 | } 23 | 24 | @Override 25 | public void updateFill(MetaObject metaObject) { 26 | // 关闭更新填充、这里不执行 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/dao/AddressDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.AddressEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.AddressVO; 11 | import com.entity.view.AddressView; 12 | 13 | 14 | /** 15 | * 地址 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:06 20 | */ 21 | public interface AddressDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | AddressVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | AddressView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/CartDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.CartEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.CartVO; 11 | import com.entity.view.CartView; 12 | 13 | 14 | /** 15 | * 购物车表 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:06 20 | */ 21 | public interface CartDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | CartVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | CartView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ChatDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.ChatEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.ChatVO; 11 | import com.entity.view.ChatView; 12 | 13 | 14 | /** 15 | * 客服聊天表 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:06 20 | */ 21 | public interface ChatDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | ChatVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | ChatView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/CommonDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | /** 8 | * 通用接口 9 | */ 10 | public interface CommonDao{ 11 | List getOption(Map params); 12 | 13 | Map getFollowByOption(Map params); 14 | 15 | List getFollowByOption2(Map params); 16 | 17 | void sh(Map params); 18 | 19 | int remindCount(Map params); 20 | 21 | Map selectCal(Map params); 22 | 23 | List> selectGroup(Map params); 24 | 25 | List> selectValue(Map params); 26 | } 27 | -------------------------------------------------------------------------------- /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/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 com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.ForumVO; 11 | import com.entity.view.ForumView; 12 | 13 | 14 | /** 15 | * 论坛表 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:06 20 | */ 21 | public interface ForumDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | ForumVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | ForumView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/NewsDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.NewsEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.NewsVO; 11 | import com.entity.view.NewsView; 12 | 13 | 14 | /** 15 | * 宠物资讯 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:06 20 | */ 21 | public interface NewsDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | NewsVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | NewsView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/OrdersDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.OrdersEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.OrdersVO; 11 | import com.entity.view.OrdersView; 12 | 13 | 14 | /** 15 | * 订单 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:06 20 | */ 21 | public interface OrdersDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | OrdersVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | OrdersView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/StoreupDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.StoreupEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.StoreupVO; 11 | import com.entity.view.StoreupView; 12 | 13 | 14 | /** 15 | * 收藏表 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:06 20 | */ 21 | public interface StoreupDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | StoreupVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | StoreupView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/TokenDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import com.baomidou.mybatisplus.mapper.BaseMapper; 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 11 | import com.entity.TokenEntity; 12 | 13 | /** 14 | * token 15 | */ 16 | public interface TokenDao extends BaseMapper { 17 | 18 | List selectListView(@Param("ew") Wrapper wrapper); 19 | 20 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/dao/UserDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import com.baomidou.mybatisplus.mapper.BaseMapper; 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 11 | import com.entity.UserEntity; 12 | 13 | /** 14 | * 用户 15 | */ 16 | public interface UserDao extends BaseMapper { 17 | 18 | List selectListView(@Param("ew") Wrapper wrapper); 19 | 20 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/dao/YonghuDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.YonghuEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.YonghuVO; 11 | import com.entity.view.YonghuView; 12 | 13 | 14 | /** 15 | * 用户 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:05 20 | */ 21 | public interface YonghuDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | YonghuVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | YonghuView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/entity/EIException.java: -------------------------------------------------------------------------------- 1 | 2 | package com.entity; 3 | 4 | /** 5 | * 自定义异常 6 | */ 7 | public class EIException extends RuntimeException { 8 | private static final long serialVersionUID = 1L; 9 | 10 | private String msg; 11 | private int code = 500; 12 | 13 | public EIException(String msg) { 14 | super(msg); 15 | this.msg = msg; 16 | } 17 | 18 | public EIException(String msg, Throwable e) { 19 | super(msg, e); 20 | this.msg = msg; 21 | } 22 | 23 | public EIException(String msg, int code) { 24 | super(msg); 25 | this.msg = msg; 26 | this.code = code; 27 | } 28 | 29 | public EIException(String msg, int code, Throwable e) { 30 | super(msg, e); 31 | this.msg = msg; 32 | this.code = code; 33 | } 34 | 35 | public String getMsg() { 36 | return msg; 37 | } 38 | 39 | public void setMsg(String msg) { 40 | this.msg = msg; 41 | } 42 | 43 | public int getCode() { 44 | return code; 45 | } 46 | 47 | public void setCode(int code) { 48 | this.code = code; 49 | } 50 | 51 | 52 | } 53 | -------------------------------------------------------------------------------- /src/main/java/com/entity/model/ChongwufenleiModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.ChongwufenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import com.fasterxml.jackson.annotation.JsonFormat; 7 | import java.util.Date; 8 | import org.springframework.format.annotation.DateTimeFormat; 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 宠物分类 14 | * 接收传参的实体类 15 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 16 | * 取自ModelAndView 的model名称 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:05 20 | */ 21 | public class ChongwufenleiModel implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/entity/model/ShangpinfenleiModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.ShangpinfenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import com.fasterxml.jackson.annotation.JsonFormat; 7 | import java.util.Date; 8 | import org.springframework.format.annotation.DateTimeFormat; 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 商品分类 14 | * 接收传参的实体类 15 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 16 | * 取自ModelAndView 的model名称 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:05 20 | */ 21 | public class ShangpinfenleiModel implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/AddressView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.AddressEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 地址 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:06 19 | */ 20 | @TableName("address") 21 | public class AddressView extends AddressEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public AddressView(){ 25 | } 26 | 27 | public AddressView(AddressEntity addressEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, addressEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/CartView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.CartEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 购物车表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:06 19 | */ 20 | @TableName("cart") 21 | public class CartView extends CartEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public CartView(){ 25 | } 26 | 27 | public CartView(CartEntity cartEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, cartEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ChatView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ChatEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 客服聊天表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:06 19 | */ 20 | @TableName("chat") 21 | public class ChatView extends ChatEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ChatView(){ 25 | } 26 | 27 | public ChatView(ChatEntity chatEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, chatEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ChongwufenleiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ChongwufenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 宠物分类 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:05 19 | */ 20 | @TableName("chongwufenlei") 21 | public class ChongwufenleiView extends ChongwufenleiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ChongwufenleiView(){ 25 | } 26 | 27 | public ChongwufenleiView(ChongwufenleiEntity chongwufenleiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, chongwufenleiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ChongwuguashiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ChongwuguashiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 宠物挂失 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:06 19 | */ 20 | @TableName("chongwuguashi") 21 | public class ChongwuguashiView extends ChongwuguashiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ChongwuguashiView(){ 25 | } 26 | 27 | public ChongwuguashiView(ChongwuguashiEntity chongwuguashiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, chongwuguashiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ChongwujicunView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ChongwujicunEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 宠物寄存 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:05 19 | */ 20 | @TableName("chongwujicun") 21 | public class ChongwujicunView extends ChongwujicunEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ChongwujicunView(){ 25 | } 26 | 27 | public ChongwujicunView(ChongwujicunEntity chongwujicunEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, chongwujicunEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ChongwulingyangView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ChongwulingyangEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 宠物领养 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:05 19 | */ 20 | @TableName("chongwulingyang") 21 | public class ChongwulingyangView extends ChongwulingyangEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ChongwulingyangView(){ 25 | } 26 | 27 | public ChongwulingyangView(ChongwulingyangEntity chongwulingyangEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, chongwulingyangEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ChongwushangdianView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ChongwushangdianEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 宠物商店 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:05 19 | */ 20 | @TableName("chongwushangdian") 21 | public class ChongwushangdianView extends ChongwushangdianEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ChongwushangdianView(){ 25 | } 26 | 27 | public ChongwushangdianView(ChongwushangdianEntity chongwushangdianEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, chongwushangdianEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ChongwuyongpinView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ChongwuyongpinEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 宠物用品 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:05 19 | */ 20 | @TableName("chongwuyongpin") 21 | public class ChongwuyongpinView extends ChongwuyongpinEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ChongwuyongpinView(){ 25 | } 26 | 27 | public ChongwuyongpinView(ChongwuyongpinEntity chongwuyongpinEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, chongwuyongpinEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ForumView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ForumEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 论坛表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:06 19 | */ 20 | @TableName("forum") 21 | public class ForumView extends ForumEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ForumView(){ 25 | } 26 | 27 | public ForumView(ForumEntity forumEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, forumEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/NewsView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.NewsEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 宠物资讯 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:06 19 | */ 20 | @TableName("news") 21 | public class NewsView extends NewsEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public NewsView(){ 25 | } 26 | 27 | public NewsView(NewsEntity newsEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, newsEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/OrdersView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.OrdersEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 订单 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:06 19 | */ 20 | @TableName("orders") 21 | public class OrdersView extends OrdersEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public OrdersView(){ 25 | } 26 | 27 | public OrdersView(OrdersEntity ordersEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, ordersEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ShangpinfenleiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ShangpinfenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 商品分类 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:05 19 | */ 20 | @TableName("shangpinfenlei") 21 | public class ShangpinfenleiView extends ShangpinfenleiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ShangpinfenleiView(){ 25 | } 26 | 27 | public ShangpinfenleiView(ShangpinfenleiEntity shangpinfenleiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, shangpinfenleiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/StoreupView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.StoreupEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 收藏表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:06 19 | */ 20 | @TableName("storeup") 21 | public class StoreupView extends StoreupEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public StoreupView(){ 25 | } 26 | 27 | public StoreupView(StoreupEntity storeupEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, storeupEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/YonghuView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.YonghuEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 用户 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:05 19 | */ 20 | @TableName("yonghu") 21 | public class YonghuView extends YonghuEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public YonghuView(){ 25 | } 26 | 27 | public YonghuView(YonghuEntity yonghuEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, yonghuEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/YonghulingyangView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.YonghulingyangEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 用户领养 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2021-01-16 09:02:05 19 | */ 20 | @TableName("yonghulingyang") 21 | public class YonghulingyangView extends YonghulingyangEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public YonghulingyangView(){ 25 | } 26 | 27 | public YonghulingyangView(YonghulingyangEntity yonghulingyangEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, yonghulingyangEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/ChongwufenleiVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.ChongwufenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import com.fasterxml.jackson.annotation.JsonFormat; 7 | import java.util.Date; 8 | import org.springframework.format.annotation.DateTimeFormat; 9 | 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 宠物分类 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:05 20 | */ 21 | public class ChongwufenleiVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/ShangpinfenleiVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.ShangpinfenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import com.fasterxml.jackson.annotation.JsonFormat; 7 | import java.util.Date; 8 | import org.springframework.format.annotation.DateTimeFormat; 9 | 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 商品分类 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:05 20 | */ 21 | public class ShangpinfenleiVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/model/enums/TypeEnum.java: -------------------------------------------------------------------------------- 1 | package com.model.enums; 2 | 3 | import java.io.Serializable; 4 | 5 | import com.baomidou.mybatisplus.enums.IEnum; 6 | 7 | /** 8 | * 必须现在 IEnum 配置 该包扫描自动注入,查看文件 spring-mybatis.xml 参数 typeEnumsPackage 9 | */ 10 | public enum TypeEnum implements IEnum { 11 | DISABLED(0, "禁用"), 12 | NORMAL(1, "正常"); 13 | 14 | private final int value; 15 | private final String desc; 16 | 17 | TypeEnum(final int value, final String desc) { 18 | this.value = value; 19 | this.desc = desc; 20 | } 21 | 22 | @Override 23 | public Serializable getValue() { 24 | return this.value; 25 | } 26 | 27 | // Jackson 注解为 JsonValue 返回中文 json 描述 28 | public String getDesc() { 29 | return this.desc; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/main/java/com/service/CartService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.CartEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.CartVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.CartView; 12 | 13 | 14 | /** 15 | * 购物车表 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-16 09:02:06 20 | */ 21 | public interface CartService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | CartVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | CartView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/main/java/com/service/CommonService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | public interface CommonService { 7 | List getOption(Map params); 8 | 9 | Map getFollowByOption(Map params); 10 | 11 | void sh(Map params); 12 | 13 | int remindCount(Map params); 14 | 15 | Map selectCal(Map params); 16 | 17 | List> selectGroup(Map params); 18 | 19 | List> selectValue(Map params); 20 | } 21 | -------------------------------------------------------------------------------- /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/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(Long userid,String username,String tableName, String role); 26 | 27 | TokenEntity getTokenEntity(String token); 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/service/UserService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import org.apache.ibatis.annotations.Param; 8 | 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.service.IService; 11 | import com.entity.UserEntity; 12 | import com.utils.PageUtils; 13 | 14 | 15 | /** 16 | * 系统用户 17 | * @author yangliyuan 18 | * @date 2019年10月10日 上午9:18:20 19 | */ 20 | public interface UserService extends IService { 21 | PageUtils queryPage(Map params); 22 | 23 | List selectListView(Wrapper wrapper); 24 | 25 | PageUtils queryPage(Map params,Wrapper wrapper); 26 | 27 | } 28 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/resources/config.properties: -------------------------------------------------------------------------------- 1 | validationQuery=SELECT 1 2 | 3 | jdbc_url=jdbc:mysql://127.0.0.1:3306/graduation_141_ssmqj7b0?useUnicode=true&characterEncoding=UTF-8&tinyInt1isBit=false 4 | jdbc_username=root 5 | jdbc_password=123456 6 | -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.rootLogger=INFO,CONSOLE,A 2 | log4j.addivity.org.apache=false 3 | log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender 4 | log4j.appender.CONSOLE.Threshold=INFO 5 | log4j.appender.CONSOLE.layout.ConversionPattern=%d{yyyy-MM-dd HH\:mm\:ss} -%-4r [%t] %-5p %x - %m%n 6 | log4j.appender.CONSOLE.Target=System.out 7 | #log4j.appender.CONSOLE.charset=utf-8 8 | log4j.appender.CONSOLE.encoding=utf-8 9 | log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout 10 | log4j.appender.A=org.apache.log4j.DailyRollingFileAppender 11 | log4j.appender.A.File=${catalina.home}/logs/yo_log/PurePro_ 12 | log4j.appender.A.DatePattern=yyyy-MM-dd'.log' 13 | log4j.appender.A.layout=org.apache.log4j.PatternLayout 14 | log4j.appender.A.layout.ConversionPattern=[FH_sys] %d{yyyy-MM-dd HH\:mm\:ss} %5p %c{1}\:%L \: %m%n 15 | log4j.logger.java.sql.ResultSet=INFO 16 | log4j.logger.org.apache=INFO 17 | log4j.logger.java.sql.Connection=INFO 18 | log4j.logger.java.sql.Statement=INFO 19 | log4j.logger.java.sql.PreparedStatement=INFO -------------------------------------------------------------------------------- /src/main/resources/mapper/ConfigDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/main/resources/mapper/TokenDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/mapper/UserDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/spring/spring.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/webapp/admin/1-install.bat: -------------------------------------------------------------------------------- 1 | cnpm install -------------------------------------------------------------------------------- /src/main/webapp/admin/2-run.bat: -------------------------------------------------------------------------------- 1 | cnpm run serve -------------------------------------------------------------------------------- /src/main/webapp/admin/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/dist/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/fonts/element-icons.535877f5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/dist/fonts/element-icons.535877f5.woff -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/fonts/element-icons.732389de.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/dist/fonts/element-icons.732389de.ttf -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/img/404.3648f234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/dist/img/404.3648f234.png -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/img/zhongguo.20798bfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/dist/img/zhongguo.20798bfa.png -------------------------------------------------------------------------------- /src/main/webapp/admin/dist/index.html: -------------------------------------------------------------------------------- 1 | 后台管理系统
-------------------------------------------------------------------------------- /src/main/webapp/admin/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/public/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/admin/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 后台管理系统 10 | 11 | 12 | 13 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/App.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | 31 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/css/element-variables.scss: -------------------------------------------------------------------------------- 1 | /* 改变主题色变量 */ 2 | $--color-primary: #00c292 !default; 3 | $--color-success: #67c23a !default; 4 | $--color-warning: #e6a23c !default; 5 | $--color-danger: #f56c6c !default; 6 | $--color-info: #909399 !default; 7 | /* 改变 icon 字体路径变量,必需 */ 8 | $--font-path: '~element-ui/lib/theme-chalk/fonts'; 9 | @import "~element-ui/packages/theme-chalk/src/index"; -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/css/style.scss: -------------------------------------------------------------------------------- 1 | .form-content { 2 | background: #ffffff; 3 | padding: 10px 10px 0 10px; 4 | } 5 | .table-content { 6 | background: #ffffff; 7 | padding: 0 10px; 8 | } 9 | .pagination-content { 10 | margin-top: 10px; 11 | padding-bottom: 10px; 12 | text-align: right; 13 | } 14 | .detail-form-content{ 15 | background: #ffffff; 16 | padding: 10px; 17 | .el-input{ 18 | min-width: 200px; 19 | max-width: 600px; 20 | } 21 | } 22 | .bg { 23 | position: absolute; 24 | top: 0; 25 | left: 0; 26 | height: 100%; 27 | } 28 | .login-form { 29 | position: absolute; 30 | top: 0; 31 | right: 0; 32 | width: 350px; 33 | height: 100%; 34 | background: #ffffff; 35 | padding: 0 60px; 36 | font-size: 18px; 37 | font-weight: bold; 38 | } 39 | .h1 { 40 | margin-top: 80px; 41 | font-size: 20px; 42 | font-weight: bold; 43 | } 44 | .btn-login { 45 | margin-top: 50px; 46 | width: 100%; 47 | } -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/404.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/avator.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/bg.jpg -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/captcha.jpg -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/login.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/password.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/role.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/test/jianshe.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/test/jiaotong.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/test/nongye.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/test/weixin.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/test/zhifubao.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/test/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/test/zhongguo.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/assets/img/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/assets/img/username.png -------------------------------------------------------------------------------- /src/main/webapp/admin/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 34 | 35 | 44 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import SvgIcon from '@/components/SvgIcon'// svg component 3 | 4 | // register globally 5 | Vue.component('svg-icon', SvgIcon) 6 | 7 | const req = require.context('./svg/svg', false, /\.svg$/) 8 | const requireAll = requireContext => requireContext.keys().map(requireContext) 9 | requireAll(req) 10 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/build.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/channel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/chart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/component.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/date.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/documentation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/download.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/drag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/druid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/edit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/education.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/email.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/excel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/form.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/fullscreen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/link.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/list.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/message.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/money.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/monitor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/nested.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/nested0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/operation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/password.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/password0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/peoples.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/post.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/sender.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/server.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/size.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/AI.svg: -------------------------------------------------------------------------------- 1 | 物联设备 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/AIDeviceLayout.svg: -------------------------------------------------------------------------------- 1 | 物联网配置 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/EIM.svg: -------------------------------------------------------------------------------- 1 | 企业信息 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/board.svg: -------------------------------------------------------------------------------- 1 | 看板管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/company.svg: -------------------------------------------------------------------------------- 1 | 基本信息 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/deviceMonitorData.svg: -------------------------------------------------------------------------------- 1 | 监测数据 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/documentation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/email.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/farmingProject.svg: -------------------------------------------------------------------------------- 1 | 农事项目 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/finance.svg: -------------------------------------------------------------------------------- 1 | 财务管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/financeBudget.svg: -------------------------------------------------------------------------------- 1 | 预算统计 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/firms.svg: -------------------------------------------------------------------------------- 1 | 厂商管理2 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/harvestBatch.svg: -------------------------------------------------------------------------------- 1 | 采收批次管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/harvestDetection.svg: -------------------------------------------------------------------------------- 1 | 采收检测标准 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/harvestManage.svg: -------------------------------------------------------------------------------- 1 | 采收管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/harvestWorks.svg: -------------------------------------------------------------------------------- 1 | 采收检测工单 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/heavyMetalDetection.svg: -------------------------------------------------------------------------------- 1 | 重金属检测项 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/inspection.svg: -------------------------------------------------------------------------------- 1 | 巡视反馈 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/internet.svg: -------------------------------------------------------------------------------- 1 | 物联网管理置 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/mainSystem.svg: -------------------------------------------------------------------------------- 1 | 主系统 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/monitorEquipment.svg: -------------------------------------------------------------------------------- 1 | 监测设备 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/order.svg: -------------------------------------------------------------------------------- 1 | 工单总览 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/password.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/peoples.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/pesticideResidue.svg: -------------------------------------------------------------------------------- 1 | 农残检测项 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/pests.svg: -------------------------------------------------------------------------------- 1 | 病虫害反馈 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/retroactiveCoding.svg: -------------------------------------------------------------------------------- 1 | 追溯打码 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/source.svg: -------------------------------------------------------------------------------- 1 | 溯源管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/task.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/traceability.svg: -------------------------------------------------------------------------------- 1 | 溯源管理 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/traceabilityList.svg: -------------------------------------------------------------------------------- 1 | 溯源配置 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/traceabilityStyle.svg: -------------------------------------------------------------------------------- 1 | 溯源管理样式 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/user0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/validCode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/video.svg: -------------------------------------------------------------------------------- 1 | 视频云配置sp -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/videoKey.svg: -------------------------------------------------------------------------------- 1 | 视频云配置1 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/svg/warnings.svg: -------------------------------------------------------------------------------- 1 | 预警阈值 -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/tab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/table0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/task.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/template.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/theme.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/tree-table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/user0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svg/validCode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/icons/svgo.yml: -------------------------------------------------------------------------------- 1 | # replace default config 2 | # 基于svgo对svg文件进行压缩:https://panjiachen.github.io/vue-element-admin-site/zh/feature/script/svgo.html 3 | # multipass: true 4 | # full: true 5 | 6 | plugins: 7 | 8 | # - name 9 | # 10 | # or: 11 | # - name: false 12 | # - name: true 13 | # 14 | # or: 15 | # - name: 16 | # param1: 1 17 | # param2: 2 18 | 19 | - removeAttrs: 20 | attrs: 21 | - 'fill' 22 | - 'fill-rule' 23 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/admin/src/store/store.js -------------------------------------------------------------------------------- /src/main/webapp/admin/src/utils/api.js: -------------------------------------------------------------------------------- 1 | const api = { 2 | // 客服 3 | chatpage:'chat/page?sort=addtime&order=desc&isreply=1', 4 | chatbyuseridpage: 'chat/page?sort=addtime&order=desc&userid=', 5 | chatsave: 'chat/save', 6 | // 积分订单 7 | orderpage: 'orders/page', 8 | orderdelete: 'orders/delete', 9 | orderinfo: 'orders/info/', 10 | ordersave: 'orders/save', 11 | orderupdate: 'orders/update', 12 | // 配置 13 | configpage: 'config/page', 14 | configdelete: 'config/delete', 15 | configinfo: 'config/info/', 16 | configsave: 'config/save', 17 | configupdate: 'config/update' 18 | 19 | } 20 | 21 | export default api 22 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/utils/base.js: -------------------------------------------------------------------------------- 1 | const base = { 2 | get() { 3 | return { 4 | url : "http://localhost:8080/ssmqj7b0/", 5 | name: "ssmqj7b0", 6 | // 退出到首页链接 7 | indexUrl: 'http://localhost:8080/ssmqj7b0/front/index.html' 8 | }; 9 | }, 10 | getProjectName(){ 11 | return { 12 | projectName: "流浪动物救助平台" 13 | } 14 | } 15 | } 16 | export default base 17 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/utils/http.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios' 2 | import router from '@/router/router-static' 3 | import storage from '@/utils/storage' 4 | 5 | const http = axios.create({ 6 | timeout: 1000 * 86400, 7 | withCredentials: true, 8 | baseURL: '/ssmqj7b0', 9 | headers: { 10 | 'Content-Type': 'application/json; charset=utf-8' 11 | } 12 | }) 13 | // 请求拦截 14 | http.interceptors.request.use(config => { 15 | config.headers['Token'] = storage.get('Token') // 请求头带上token 16 | return config 17 | }, error => { 18 | return Promise.reject(error) 19 | }) 20 | // 响应拦截 21 | http.interceptors.response.use(response => { 22 | if (response.data && response.data.code === 401) { // 401, token失效 23 | router.push({ name: 'login' }) 24 | } 25 | return response 26 | }, error => { 27 | return Promise.reject(error) 28 | }) 29 | export default http -------------------------------------------------------------------------------- /src/main/webapp/admin/src/utils/i18n.js: -------------------------------------------------------------------------------- 1 | // translate router.meta.title, be used in breadcrumb sidebar tagsview 2 | export function generateTitle(title) { 3 | const hasKey = this.$te('route.' + title) 4 | 5 | if (hasKey) { 6 | // $t :this method from vue-i18n, inject in @/lang/index.js 7 | const translatedTitle = this.$t('route.' + title) 8 | 9 | return translatedTitle 10 | } 11 | return title 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/utils/storage.js: -------------------------------------------------------------------------------- 1 | const storage = { 2 | set(key, value) { 3 | localStorage.setItem(key, JSON.stringify(value)); 4 | }, 5 | get(key) { 6 | return localStorage.getItem(key)?localStorage.getItem(key).replace('"','').replace('"',''):""; 7 | }, 8 | getObj(key) { 9 | return localStorage.getItem(key)?JSON.parse(localStorage.getItem(key)):null; 10 | }, 11 | remove(key) { 12 | localStorage.removeItem(key); 13 | } 14 | } 15 | export default storage; -------------------------------------------------------------------------------- /src/main/webapp/admin/src/views/index.vue: -------------------------------------------------------------------------------- 1 | 10 | 22 | 23 | 33 | -------------------------------------------------------------------------------- /src/main/webapp/admin/src/vm/base.js.vm: -------------------------------------------------------------------------------- 1 | const base = { 2 | url : "http://localhost:8080/${schemaname}/", 3 | name: "${schemaname}" 4 | } 5 | 6 | export default base -------------------------------------------------------------------------------- /src/main/webapp/admin/src/vm/menu.js.vm: -------------------------------------------------------------------------------- 1 | const menu = { 2 | list() { 3 | return ${roleMenus} 4 | } 5 | } 6 | export default menu; 7 | -------------------------------------------------------------------------------- /src/main/webapp/front/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /src/main/webapp/front/.idea/front.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/webapp/front/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /src/main/webapp/front/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/webapp/front/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/webapp/front/css/common.css: -------------------------------------------------------------------------------- 1 | /** 2 | * 工具类css 3 | */ 4 | /* 嵌套文字横线 */ 5 | .line-container { 6 | width: 100%; 7 | background: url(../img/line.jpg) left center repeat-x; 8 | text-align: center; 9 | } 10 | .line { 11 | display: inline-block; 12 | padding: 0 10px; 13 | text-align: center; 14 | font-family: 'Microsoft Yahei'; 15 | font-size: 24px; 16 | background: #fff; 17 | color: #000000; 18 | line-height: 1.3; 19 | } 20 | /** 21 | * 工具类css end 22 | */ -------------------------------------------------------------------------------- /src/main/webapp/front/elementui/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/elementui/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/main/webapp/front/elementui/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/elementui/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/main/webapp/front/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/avator.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/banner.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/img/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/jianshe.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/jiaotong.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/line.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/img/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/nongye.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/now.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/seckilling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/seckilling.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/img/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/select.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/unselect.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/weixin.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/yuan.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/zhifubao.png -------------------------------------------------------------------------------- /src/main/webapp/front/img/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/img/zhongguo.png -------------------------------------------------------------------------------- /src/main/webapp/front/js/utils.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 页面跳转 3 | * @param {Object} url 4 | */ 5 | function jump(url) { 6 | if (!url || url == 'null' || url == null) { 7 | window.location.href = './index.html'; 8 | } 9 | // 路径访问设置 10 | localStorage.setItem('iframeUrl', url.replace('../', './pages/')); 11 | window.location.href = url; 12 | } 13 | 14 | /** 15 | * 返回 16 | */ 17 | function back(num = -1) { 18 | window.history.go(num) 19 | } 20 | 21 | /** 22 | * 生成订单 23 | */ 24 | function genTradeNo() { 25 | var date = new Date(); 26 | var tradeNo = date.getFullYear().toString() + (date.getMonth() + 1).toString() + 27 | date.getDate().toString() + date.getHours().toString() + date.getMinutes().toString() + 28 | date.getSeconds().toString() + date.getMilliseconds().toString(); 29 | for (var i = 0; i < 5; i++) //5位随机数,用以加在时间戳后面。 30 | { 31 | tradeNo += Math.floor(Math.random() * 10); 32 | } 33 | return tradeNo; 34 | } 35 | -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/webapp/front/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/webapp/front/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/webapp/front/modules/config.js: -------------------------------------------------------------------------------- 1 | window.rootPath = (function (src) { 2 | src = document.scripts[document.scripts.length - 1].src; 3 | console.log(src.substring(0, src.lastIndexOf("/") + 1)) 4 | return src.substring(0, src.lastIndexOf("/") + 1); 5 | })(); 6 | 7 | layui.config({ 8 | base: rootPath, 9 | version: true 10 | }).extend({ 11 | http: 'http/http', // 网络请求接口扩展 12 | layarea: 'layarea/layarea' ,// 省市区联动选择器 13 | tinymce: 'tinymce/tinymce' // 富文本编辑器 14 | }); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/colorpicker/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('colorpicker', function () { 16 | domGlobals.console.warn('Color picker plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/colorpicker/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(o){"use strict";var i=tinymce.util.Tools.resolve("tinymce.PluginManager");!function n(){i.add("colorpicker",function(){o.console.warn("Color picker plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/contextmenu/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('contextmenu', function () { 16 | domGlobals.console.warn('Context menu plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/contextmenu/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(n){"use strict";var o=tinymce.util.Tools.resolve("tinymce.PluginManager");!function e(){o.add("contextmenu",function(){n.console.warn("Context menu plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),o=function(n){n.addCommand("InsertHorizontalRule",function(){n.execCommand("mceInsertContent",!1,"
")})},t=function(n){n.ui.registry.addButton("hr",{icon:"horizontal-rule",tooltip:"Horizontal line",onAction:function(){return n.execCommand("InsertHorizontalRule")}}),n.ui.registry.addMenuItem("hr",{icon:"horizontal-rule",text:"Horizontal line",onAction:function(){return n.execCommand("InsertHorizontalRule")}})};!function e(){n.add("hr",function(n){o(n),t(n)})}()}(); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.Env"),i=function(n){n.addCommand("mcePrint",function(){t.browser.isIE()?n.getDoc().execCommand("print",!1,null):n.getWin().print()})},e=function(n){n.ui.registry.addButton("print",{icon:"print",tooltip:"Print",onAction:function(){return n.execCommand("mcePrint")}}),n.ui.registry.addMenuItem("print",{text:"Print...",icon:"print",onAction:function(){return n.execCommand("mcePrint")}})};!function o(){n.add("print",function(n){i(n),e(n),n.addShortcut("Meta+P","","mcePrint")})}()}(); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/textcolor/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('textcolor', function () { 16 | domGlobals.console.warn('Text color plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/plugins/textcolor/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(o){"use strict";var i=tinymce.util.Tools.resolve("tinymce.PluginManager");!function n(){i.add("textcolor",function(){o.console.warn("Text color plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/content.mobile.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection { 8 | /* Note: this file is used inside the content, so isn't part of theming */ 9 | background-color: green; 10 | display: inline-block; 11 | opacity: 0.5; 12 | position: absolute; 13 | } 14 | body { 15 | -webkit-text-size-adjust: none; 16 | } 17 | body img { 18 | /* this is related to the content margin */ 19 | max-width: 96vw; 20 | } 21 | body table img { 22 | max-width: 95%; 23 | } 24 | body { 25 | font-family: sans-serif; 26 | } 27 | table { 28 | border-collapse: collapse; 29 | } 30 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/content.mobile.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection{background-color:green;display:inline-block;opacity:.5;position:absolute}body{-webkit-text-size-adjust:none}body img{max-width:96vw}body table img{max-width:95%}body{font-family:sans-serif}table{border-collapse:collapse} 8 | /*# sourceMappingURL=content.mobile.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/content.mobile.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection { 8 | /* Note: this file is used inside the content, so isn't part of theming */ 9 | background-color: green; 10 | display: inline-block; 11 | opacity: 0.5; 12 | position: absolute; 13 | } 14 | body { 15 | -webkit-text-size-adjust: none; 16 | } 17 | body img { 18 | /* this is related to the content margin */ 19 | max-width: 96vw; 20 | } 21 | body table img { 22 | max-width: 95%; 23 | } 24 | body { 25 | font-family: sans-serif; 26 | } 27 | table { 28 | border-collapse: collapse; 29 | } 30 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/content.mobile.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection{background-color:green;display:inline-block;opacity:.5;position:absolute}body{-webkit-text-size-adjust:none}body img{max-width:96vw}body table img{max-width:95%}body{font-family:sans-serif}table{border-collapse:collapse} 8 | /*# sourceMappingURL=content.mobile.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/162237296.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/162237296.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/162240878.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/162240878.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/19.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/1_092ZZ2503138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/1_092ZZ2503138.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/20.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/index_24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/index_24.gif -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/index_35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/index_35.gif -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/index_41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/index_41.gif -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/index_44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/index_44.gif -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/logo.png -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/news_list_time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/news_list_time.jpg -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/service_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/service_btn.png -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/service_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/service_img.png -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/img/service_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/front/xznstatic/img/service_title.png -------------------------------------------------------------------------------- /src/main/webapp/front/xznstatic/js/index.js: -------------------------------------------------------------------------------- 1 | jQuery(".banner").slide({mainCell:".bd ul",autoPlay:true,interTime:5000}); 2 | 3 | //???????????? 4 | jQuery("#ifocus").slide({ titCell:"#ifocus_btn li", mainCell:"#ifocus_piclist ul",effect:"leftLoop", delayTime:200, autoPlay:true,triggerTime:0}); 5 | //???????????? 6 | jQuery("#ifocus").slide({ titCell:"#ifocus_btn li", mainCell:"#ifocus_tx ul",delayTime:0, autoPlay:true}); 7 | 8 | jQuery(".product_list").slide({mainCell:".bd ul",autoPage:true,effect:"leftLoop",autoPlay:true,vis:5,trigger:"click",interTime:4000}); -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | My JSP 'index.jsp' starting page 13 | 14 | 15 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/resources/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/upload/1610761456257.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610761456257.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/1610761671990.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610761671990.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/1610761955789.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610761955789.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/1610761992241.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610761992241.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/1610762064132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610762064132.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/1610762179593.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610762179593.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/1610762210545.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610762210545.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/1610762248519.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610762248519.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/1610762267017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610762267017.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/1610762481131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610762481131.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/1610762486328.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/1610762486328.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuguashi_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuguashi_tupian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuguashi_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuguashi_tupian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuguashi_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuguashi_tupian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuguashi_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuguashi_tupian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuguashi_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuguashi_tupian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuguashi_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuguashi_tupian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwujicun_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwujicun_tupian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwujicun_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwujicun_tupian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwujicun_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwujicun_tupian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwujicun_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwujicun_tupian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwujicun_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwujicun_tupian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwujicun_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwujicun_tupian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwulingyang_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwulingyang_tupian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwulingyang_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwulingyang_tupian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwulingyang_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwulingyang_tupian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwulingyang_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwulingyang_tupian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwulingyang_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwulingyang_tupian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwulingyang_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwulingyang_tupian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwushangdian_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwushangdian_tupian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwushangdian_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwushangdian_tupian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwushangdian_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwushangdian_tupian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwushangdian_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwushangdian_tupian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwushangdian_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwushangdian_tupian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwushangdian_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwushangdian_tupian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuyongpin_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuyongpin_tupian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuyongpin_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuyongpin_tupian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuyongpin_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuyongpin_tupian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuyongpin_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuyongpin_tupian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuyongpin_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuyongpin_tupian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/chongwuyongpin_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/chongwuyongpin_tupian6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/news_picture1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/news_picture1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/news_picture2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/news_picture2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/news_picture3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/news_picture3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/news_picture4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/news_picture4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/news_picture5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/news_picture5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/news_picture6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/news_picture6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/picture1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/picture1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/picture2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/picture2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/picture3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/picture3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/test.txt -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_touxiang1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghu_touxiang1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_touxiang2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghu_touxiang2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_touxiang3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghu_touxiang3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_touxiang4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghu_touxiang4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_touxiang5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghu_touxiang5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghu_touxiang6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghu_touxiang6.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghulingyang_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghulingyang_tupian1.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghulingyang_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghulingyang_tupian2.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghulingyang_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghulingyang_tupian3.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghulingyang_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghulingyang_tupian4.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghulingyang_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghulingyang_tupian5.jpg -------------------------------------------------------------------------------- /src/main/webapp/upload/yonghulingyang_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/StrayAnimalRescuePlatformManagementSystem/3007ed3fe68e6899ed276543e62d98d3221076d8/src/main/webapp/upload/yonghulingyang_tupian6.jpg --------------------------------------------------------------------------------