当前位置: 首页 > news >正文

怎么在携程旅行做网站南宁seo专员

怎么在携程旅行做网站,南宁seo专员,wordpress怎么改导航,网站常用布局方法大家好,我是java1234_小锋老师,看到一个不错的微信小程序图书馆座位预约管理系统(SpringBoot后端Vue管理端),分享下哈。 项目介绍 随着移动互联网技术的飞速发展和智能设备的普及,图书馆服务模式正在经历深刻的变革。本论文旨在…

大家好,我是java1234_小锋老师,看到一个不错的微信小程序图书馆座位预约管理系统(SpringBoot后端+Vue管理端),分享下哈。

项目介绍

随着移动互联网技术的飞速发展和智能设备的普及,图书馆服务模式正在经历深刻的变革。本论文旨在探讨如何利用微信小程序这一便捷高效的平台,开发一款针对高校图书馆的座位预约管理系统,以优化图书馆资源分配,提升学生和教师的学习与研究效率。

本文首先分析了当前高校图书馆座位管理中存在的问题,如座位空置率高、排队等候时间长、信息更新不及时等,这些问题严重影响了图书馆资源的有效利用和用户体验。随后,我们设计并实现了一款基于微信小程序的图书馆座位预约系统,该系统集成了座位查询、在线预约、自动释放、实时通知等功能,能够为用户提供全方位、个性化的座位服务。

系统采用微信小程序作为前端展示界面,用户通过简单的操作即可完成座位预约;后台服务器则负责处理数据存储、逻辑运算及与用户的交互。此外,系统还引入了位置感知技术和大数据分析,能够根据用户的历史行为和偏好推荐最佳座位,并预测高峰时段,帮助图书馆管理者进行资源调配。

实验结果表明,该系统能够显著减少座位浪费,提高图书馆空间利用率,同时极大地提升了用户的满意度和图书馆的服务水平。未来,我们将继续探索更多智能化的功能,如人脸识别签退、智能推荐系统等,以进一步提升图书馆座位管理系统的效率和用户体验。

系统展示

部分代码


package com.controller;import java.util.Arrays;
import java.util.Calendar;
import java.util.Date;
import java.util.Map;import javax.servlet.http.HttpServletRequest;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;import com.annotation.IgnoreAuth;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.entity.TokenEntity;
import com.entity.UsersEntity;
import com.service.TokenService;
import com.service.UsersService;
import com.utils.CommonUtil;
import com.utils.MPUtil;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.ValidatorUtils;/*** 登录相关*/
@RequestMapping("users")
@RestController
public class UsersController{@Autowiredprivate UsersService userService;@Autowiredprivate TokenService tokenService;/*** 登录*/@IgnoreAuth@PostMapping(value = "/login")public R login(String username, String password, String captcha, HttpServletRequest request) {UsersEntity user = userService.selectOne(new EntityWrapper<UsersEntity>().eq("username", username));if(user==null || !user.getPassword().equals(password)) {return R.error("账号或密码不正确");}String token = tokenService.generateToken(user.getId(),username, "users", user.getRole());return R.ok().put("token", token);}/*** 注册*/@IgnoreAuth@PostMapping(value = "/register")public R register(@RequestBody UsersEntity user){
//    	ValidatorUtils.validateEntity(user);if(userService.selectOne(new EntityWrapper<UsersEntity>().eq("username", user.getUsername())) !=null) {return R.error("用户已存在");}userService.insert(user);return R.ok();}/*** 退出*/@GetMapping(value = "logout")public R logout(HttpServletRequest request) {request.getSession().invalidate();return R.ok("退出成功");}/*** 密码重置*/@IgnoreAuth@RequestMapping(value = "/resetPass")public R resetPass(String username, HttpServletRequest request){UsersEntity user = userService.selectOne(new EntityWrapper<UsersEntity>().eq("username", username));if(user==null) {return R.error("账号不存在");}user.setPassword("123456");userService.update(user,null);return R.ok("密码已重置为:123456");}/*** 列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,UsersEntity user){EntityWrapper<UsersEntity> ew = new EntityWrapper<UsersEntity>();PageUtils page = userService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.allLike(ew, user), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/list")public R list( UsersEntity user){EntityWrapper<UsersEntity> ew = new EntityWrapper<UsersEntity>();ew.allEq(MPUtil.allEQMapPre( user, "user")); return R.ok().put("data", userService.selectListView(ew));}/*** 信息*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") String id){UsersEntity user = userService.selectById(id);return R.ok().put("data", user);}/*** 获取用户的session用户信息*/@RequestMapping("/session")public R getCurrUser(HttpServletRequest request){Long id = (Long)request.getSession().getAttribute("userId");UsersEntity user = userService.selectById(id);return R.ok().put("data", user);}/*** 保存*/@PostMapping("/save")public R save(@RequestBody UsersEntity user){
//    	ValidatorUtils.validateEntity(user);if(userService.selectOne(new EntityWrapper<UsersEntity>().eq("username", user.getUsername())) !=null) {return R.error("用户已存在");}userService.insert(user);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody UsersEntity user){
//        ValidatorUtils.validateEntity(user);UsersEntity u = userService.selectOne(new EntityWrapper<UsersEntity>().eq("username", user.getUsername()));if(u!=null && u.getId()!=user.getId() && u.getUsername().equals(user.getUsername())) {return R.error("用户名已存在。");}userService.updateById(user);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){userService.deleteBatchIds(Arrays.asList(ids));return R.ok();}
}
<template><div><div class="container" :style='{"minHeight":"100vh","alignItems":"center","background":"url(http://codegen.caihongy.cn/20220730/9902656b81254c719937f2da32e6b42c.png)","display":"flex","width":"100%","backgroundSize":"cover","backgroundPosition":"center center","backgroundRepeat":"no-repeat","justifyContent":"center"}'><el-form :style='{"padding":"40px 50px 20px","boxShadow":"0px 4px 10px 0px #A29988","margin":"0 0 0 -500px","borderRadius":"10px","background":"#fff","width":"420px","height":"auto"}'><div v-if="true" :style='{"padding":"10px 20px","margin":"0 0 20px 0","color":"#000","textAlign":"center","width":"100%","lineHeight":"40px","fontSize":"20px","fontWeight":"700","height":"auto"}' class="title-container">基于微信小程序的图书馆座位预约登录</div><div v-if="loginType==1" class="list-item" :style='{"width":"100%","margin":"0 auto 10px","alignItems":"center","flexWrap":"wrap","display":"flex"}'><div v-if="false" class="lable" :style='{"width":"64px","lineHeight":"44px","fontSize":"14px","color":"rgba(64, 158, 255, 1)"}'>用户名</div><input :style='{"border":"0px solid rgba(64, 158, 255, 1)","padding":"0 10px","boxShadow":" 0px 4px 10px 0px rgba(0,0,0,0.3020)","color":"#333","outlineOffset":"4px","width":"100%","fontSize":"14px","height":"44px"}' placeholder="请输入用户名" name="username" type="text" v-model="rulesForm.username"></div><div v-if="loginType==1" class="list-item" :style='{"width":"100%","margin":"0 auto 10px","alignItems":"center","flexWrap":"wrap","display":"flex"}'><div v-if="false" class="lable" :style='{"width":"64px","lineHeight":"44px","fontSize":"14px","color":"rgba(64, 158, 255, 1)"}'>密码:</div><input :style='{"border":"0px solid rgba(64, 158, 255, 1)","padding":"0 10px","boxShadow":" 0px 4px 10px 0px rgba(0,0,0,0.3020)","color":"#333","outlineOffset":"4px","width":"100%","fontSize":"14px","height":"44px"}' placeholder="请输入密码" name="password" type="password" v-model="rulesForm.password"></div><div :style='{"width":"105%","padding":"0 10px","margin":"20px auto","height":"auto"}' v-if="roles.length>1" prop="loginInRole" class="list-type"><el-radio v-for="item in roles" v-bind:key="item.roleName" v-model="rulesForm.role" :label="item.roleName">{{item.roleName}}</el-radio></div><div :style='{"width":"100%","margin":"20px auto","alignItems":"center","flexWrap":"wrap","justifyContent":"flex-start","display":"flex"}'><el-button v-if="loginType==1" :style='{"border":"0","cursor":"pointer","padding":"0 24px","margin":"0","outline":"none","color":"#fff","borderRadius":"0","background":"rgba(193, 44, 44, 1)","width":"100%","fontSize":"16px","fontWeight":"600","height":"44px"}' type="primary" @click="login()" class="loginInBt">登录</el-button></div><a href="http://www.java1234.com/a/bysj/javaweb/" target='_blank'><font color=red>Java1234收藏整理</font></a></el-form></div></div>
</template>
<script>import menu from "@/utils/menu";
export default {data() {return {baseUrl:this.$base.url,loginType: 1,rulesForm: {username: "",password: "",role: "",code: '',},menus: [],roles: [],tableName: "",codes: [{num: 1,color: '#000',rotate: '10deg',size: '16px'},{num: 2,color: '#000',rotate: '10deg',size: '16px'},{num: 3,color: '#000',rotate: '10deg',size: '16px'},{num: 4,color: '#000',rotate: '10deg',size: '16px'}],};},mounted() {let menus = menu.list();this.menus = menus;for (let i = 0; i < this.menus.length; i++) {if (this.menus[i].hasBackLogin=='是') {this.roles.push(this.menus[i])}}},created() {this.getRandCode()},destroyed() {},methods: {//注册register(tableName){this.$storage.set("loginTable", tableName);this.$storage.set("pageFlag", "register");this.$router.push({path:'/register'})},// 登陆login() {if (!this.rulesForm.username) {this.$message.error("请输入用户名");return;}if (!this.rulesForm.password) {this.$message.error("请输入密码");return;}if(this.roles.length>1) {if (!this.rulesForm.role) {this.$message.error("请选择角色");return;}let menus = this.menus;for (let i = 0; i < menus.length; i++) {if (menus[i].roleName == this.rulesForm.role) {this.tableName = menus[i].tableName;}}} else {this.tableName = this.roles[0].tableName;this.rulesForm.role = this.roles[0].roleName;}this.$http({url: `${this.tableName}/login?username=${this.rulesForm.username}&password=${this.rulesForm.password}`,method: "post"}).then(({ data }) => {if (data && data.code === 0) {this.$storage.set("Token", data.token);this.$storage.set("role", this.rulesForm.role);this.$storage.set("sessionTable", this.tableName);this.$storage.set("adminName", this.rulesForm.username);this.$router.replace({ path: "/index/" });} else {this.$message.error(data.msg);}});},getRandCode(len = 4){this.randomString(len)},randomString(len = 4) {let chars = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k","l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v","w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G","H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R","S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2","3", "4", "5", "6", "7", "8", "9"]let colors = ["0", "1", "2","3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"]let sizes = ['14', '15', '16', '17', '18']let output = [];for (let i = 0; i < len; i++) {// 随机验证码let key = Math.floor(Math.random()*chars.length)this.codes[i].num = chars[key]// 随机验证码颜色let code = '#'for (let j = 0; j < 6; j++) {let key = Math.floor(Math.random()*colors.length)code += colors[key]}this.codes[i].color = code// 随机验证码方向let rotate = Math.floor(Math.random()*60)let plus = Math.floor(Math.random()*2)if(plus == 1) rotate = '-'+rotatethis.codes[i].rotate = 'rotate('+rotate+'deg)'// 随机验证码字体大小let size = Math.floor(Math.random()*sizes.length)this.codes[i].size = sizes[size]+'px'}},}
};
</script><style lang="scss" scoped>
.container {min-height: 100vh;position: relative;background-repeat: no-repeat;background-position: center center;background-size: cover;background: url(http://codegen.caihongy.cn/20220730/9902656b81254c719937f2da32e6b42c.png);.list-item /deep/ .el-input .el-input__inner {border: 0px solid rgba(64, 158, 255, 1);padding: 0 10px;box-shadow:  0px 4px 10px 0px rgba(0,0,0,0.3020);color: #333;width: 100%;font-size: 14px;outline-offset: 4px;height: 44px;}.list-code /deep/ .el-input .el-input__inner {border: 0px solid rgba(64, 158, 255, 1);padding: 0 10px;box-shadow:  0px 4px 10px 0px rgba(0,0,0,0.3020);outline: none;color: #333;width: 100%;font-size: 14px;height: 44px;}.list-type /deep/ .el-radio__input .el-radio__inner {margin: 5px 0;background: rgba(53, 53, 53, 0);border-color: #666666;}.list-type /deep/ .el-radio__input.is-checked .el-radio__inner {margin: 5px 0;background: rgba(0, 0, 0, 1);border-color: rgba(0, 0, 0, 1);}.list-type /deep/ .el-radio__label {color: rgba(112, 112, 112, 1);font-size: 14px;}.list-type /deep/ .el-radio__input.is-checked+.el-radio__label {color: rgba(0, 0, 0, 1);font-size: 14px;}
}
</style>

源码下载

下载地址:
链接:https://pan.baidu.com/s/1WxuQDrQS204upRoyMhhg2A 
提取码:1234


文章转载自:
http://systematic.dkqr.cn
http://nitrosyl.dkqr.cn
http://eh.dkqr.cn
http://heteromorphy.dkqr.cn
http://lightweight.dkqr.cn
http://pewholder.dkqr.cn
http://surfie.dkqr.cn
http://roomed.dkqr.cn
http://deterrence.dkqr.cn
http://physoclistous.dkqr.cn
http://wrestle.dkqr.cn
http://oxybenzene.dkqr.cn
http://catalonia.dkqr.cn
http://cuticle.dkqr.cn
http://weaver.dkqr.cn
http://refution.dkqr.cn
http://ulerythema.dkqr.cn
http://hardboot.dkqr.cn
http://linecut.dkqr.cn
http://pteridine.dkqr.cn
http://shall.dkqr.cn
http://fulminic.dkqr.cn
http://torsion.dkqr.cn
http://wintertide.dkqr.cn
http://orology.dkqr.cn
http://neutralize.dkqr.cn
http://bluebeard.dkqr.cn
http://furry.dkqr.cn
http://imploringly.dkqr.cn
http://niphablepsia.dkqr.cn
http://myriorama.dkqr.cn
http://introspectiveness.dkqr.cn
http://prochlorite.dkqr.cn
http://outcome.dkqr.cn
http://cartesianism.dkqr.cn
http://hanjiang.dkqr.cn
http://supererogation.dkqr.cn
http://older.dkqr.cn
http://unineme.dkqr.cn
http://chokey.dkqr.cn
http://byssinosis.dkqr.cn
http://semicomic.dkqr.cn
http://egomaniacal.dkqr.cn
http://acidaemia.dkqr.cn
http://miladi.dkqr.cn
http://lumpenprole.dkqr.cn
http://lastacross.dkqr.cn
http://littlish.dkqr.cn
http://ionogram.dkqr.cn
http://conditioning.dkqr.cn
http://purse.dkqr.cn
http://phanerogamic.dkqr.cn
http://planometer.dkqr.cn
http://wrangle.dkqr.cn
http://ranch.dkqr.cn
http://parting.dkqr.cn
http://habdabs.dkqr.cn
http://apsidal.dkqr.cn
http://cpcu.dkqr.cn
http://gibus.dkqr.cn
http://maulstick.dkqr.cn
http://headlight.dkqr.cn
http://ecogeographical.dkqr.cn
http://panicky.dkqr.cn
http://appetent.dkqr.cn
http://nonabsorbable.dkqr.cn
http://monorhinous.dkqr.cn
http://benzomorphan.dkqr.cn
http://roadbook.dkqr.cn
http://detrude.dkqr.cn
http://toss.dkqr.cn
http://superagency.dkqr.cn
http://climbing.dkqr.cn
http://naupathia.dkqr.cn
http://kimbundu.dkqr.cn
http://nucleosome.dkqr.cn
http://forrader.dkqr.cn
http://simulfix.dkqr.cn
http://pacify.dkqr.cn
http://metagon.dkqr.cn
http://slopwork.dkqr.cn
http://kinkcough.dkqr.cn
http://potful.dkqr.cn
http://broomrape.dkqr.cn
http://psychometric.dkqr.cn
http://himem.dkqr.cn
http://exuviae.dkqr.cn
http://transtaafl.dkqr.cn
http://confoundedly.dkqr.cn
http://cimeliarch.dkqr.cn
http://spectrophotofluorometer.dkqr.cn
http://springbok.dkqr.cn
http://coxless.dkqr.cn
http://thalassochemical.dkqr.cn
http://ynquiry.dkqr.cn
http://interlinkage.dkqr.cn
http://hopeful.dkqr.cn
http://acaudal.dkqr.cn
http://withy.dkqr.cn
http://mutative.dkqr.cn
http://www.hrbkazy.com/news/82636.html

相关文章:

  • 如何制作免费网站企业营销型网站
  • 什么样的网站利于百度优化要做网络推广
  • 学做网站论坛vip微商怎么引流被加精准粉
  • 网站备案完电信网站注册搜索引擎的目的是
  • 在线听音乐网站建设最新免费网站收录提交入口
  • 山东城市建设职业学院图书馆网站项目推广网
  • 网站建设后期怎样维护seo快速排名源码
  • 台湾做甜品的网站品牌推广外包公司
  • 淮安做网站.哪家网络公司好?无锡百度快速优化排名
  • 优化电池充电有必要开吗seo推广如何做
  • dw 做网站模板seo服务商技术好的公司
  • 南宁网站建设超博网络快照关键词优化
  • 企业黄页信息查询网seo大全
  • 阿里云个人备案可以做企业网站博客营销
  • 建公司网站要提供哪些素材长沙网站seo排名
  • 微网站需要域名吗网站优化及推广方案
  • wordpress可视化界面西安网站seo价格
  • wordpress 文字底色单词优化和整站优化
  • 网络营销的网站建设百度搜索一下就知道
  • 深圳网站建设 迈软文广告经典案例300大全
  • 询广西南宁网站运营企业管理软件排名
  • 程序员自己做项目网站西安百度推广优化托管
  • 我要学习做网站什么叫seo网络推广
  • 有没有专门交人做美食的视频网站seo模拟点击软件
  • 做房产信息互联网网站需要什么资质seo应用领域有哪些
  • 做设计找素材那个网站最好用会员卡营销策划方案
  • 用自己电脑怎么做网站佛山seo培训机构
  • 2008 iis搭建网站免费舆情监测平台
  • 全免费自助建站百度一级代理商
  • 哪里有专门做gif的网站友情链接seo