计算机毕业设计项目之Springboot+Vue前后端分离线上跳蚤市场平台|计算机毕设项目|计算机毕设|软件工程专业
2026/8/30 7:41:05 网站建设 项目流程

网站介绍:本网站专注专注于计算机技术领域的毕业设计辅导,提供JAVA、微信小程序、Python、APP、PHP、微服务、NET等毕设项目的定制和成品服务!

一、项目介绍

计算机毕设java毕业设计项目之ssm线上跳蚤市场平台项目演示视频 https://www.bilibili.com/video/BV13Z4y1i7tw?share_source=copy_web

项目含有源码、文档、PPT、配套开发软件、软件安装教程、项目发布教程、包运行成功以及课程答疑与微信售后交流群、送查重系统不限次数免费查重等福利!
【技术路线】
开发语言:Java、小程序
前端技术:JavaScript、VUE.js(2.X)、css3
后端框架:ssm
JDK版本:JDK1.8
服务器:tomcat9
数据库:mysql 5.7
数据库工具:Navicat11
开发软件:eclipse/myeclipse/idea
浏览器:谷歌浏览器
小程序运行软件:微信开发者

二、文档介绍

主要功能
管理员:首页、个人中心、用户管理、商家管理、商品分类管理、商品信息管理、公告信息管理、留言板管理、系统管理、订单管理等
商家:首页、个人中心、商品信息管理等
前台:首页、商品信息、公告信息、留言板、个人中心、购物车、在线客服等







三、部分代码

<template><div><el-formclass="detail-form-content"ref="ruleForm":model="ruleForm"label-width="80px"><el-row><el-col:span="12"><el-form-item v-if="flag=='huiyuan'"label="会员账号"prop="huiyuanzhanghao"><el-input v-model="ruleForm.huiyuanzhanghao"readonly placeholder="会员账号"clearable></el-input></el-form-item></el-col><el-col:span="12"><el-form-item v-if="flag=='huiyuan'"label="会员姓名"prop="huiyuanxingming"><el-input v-model="ruleForm.huiyuanxingming"placeholder="会员姓名"clearable></el-input></el-form-item></el-col><el-col:span="12"><el-form-item v-if="flag=='huiyuan'"label="身份证"prop="shenfenzheng"><el-input v-model="ruleForm.shenfenzheng"placeholder="身份证"clearable></el-input></el-form-item></el-col><el-col:span="12"><el-form-item v-if="flag=='huiyuan'"label="性别"prop="xingbie"><el-select v-model="ruleForm.xingbie"placeholder="请选择性别"><el-option v-for="(item,index) in huiyuanxingbieOptions"v-bind:key="index":label="item":value="item"></el-option></el-select></el-form-item></el-col><el-col:span="24"><el-form-item v-if="flag=='huiyuan'"label="头像"prop="touxiang"><file-upload tip="点击上传头像"action="file/upload":limit="3":multiple="true":fileUrls="ruleForm.touxiang?ruleForm.touxiang:''"@change="huiyuantouxiangUploadChange"></file-upload></el-form-item></el-col><el-col:span="12"><el-form-item v-if="flag=='huiyuan'"label="手机"prop="shouji"><el-input v-model="ruleForm.shouji"placeholder="手机"clearable></el-input></el-form-item></el-col><el-col:span="12"><el-form-item v-if="flag=='yuangong'"label="工号"prop="gonghao"><el-input v-model="ruleForm.gonghao"readonly placeholder="工号"clearable></el-input></el-form-item></el-col><el-col:span="12"><el-form-item v-if="flag=='yuangong'"label="员工姓名"prop="yuangongxingming"><el-input v-model="ruleForm.yuangongxingming"placeholder="员工姓名"clearable></el-input></el-form-item></el-col><el-col:span="12"><el-form-item v-if="flag=='yuangong'"label="性别"prop="xingbie"><el-select v-model="ruleForm.xingbie"placeholder="请选择性别"><el-option v-for="(item,index) in yuangongxingbieOptions"v-bind:key="index":label="item":value="item"></el-option></el-select></el-form-item></el-col><el-col:span="24"><el-form-item v-if="flag=='yuangong'"label="头像"prop="touxiang"><file-upload tip="点击上传头像"action="file/upload":limit="3":multiple="true":fileUrls="ruleForm.touxiang?ruleForm.touxiang:''"@change="yuangongtouxiangUploadChange"></file-upload></el-form-item></el-col><el-col:span="12"><el-form-item v-if="flag=='yuangong'"label="手机"prop="shouji"><el-input v-model="ruleForm.shouji"placeholder="手机"clearable></el-input></el-form-item></el-col><el-col:span="12"><el-form-item v-if="flag=='yuangong'"label="邮箱"prop="youxiang"><el-input v-model="ruleForm.youxiang"placeholder="邮箱"clearable></el-input></el-form-item></el-col><el-form-item v-if="flag=='users'"label="用户名"prop="username"><el-input v-model="ruleForm.username"placeholder="用户名"></el-input></el-form-item><el-col:span="24"><el-form-item><el-button type="primary"@click="onUpdateHandler">修 改</el-button></el-form-item></el-col></el-row></el-form></div></template><script>// 数字,邮件,手机,url,身份证校验import{isNumber,isIntNumer,isEmail,isMobile,isPhone,isURL,checkIdCard}from"@/utils/validate";exportdefault{data(){return{ruleForm:{},flag:'',usersFlag:false,huiyuanxingbieOptions:[],yuangongxingbieOptions:[],};},mounted(){vartable=this.$storage.get("sessionTable");this.flag=table;this.$http({url:`${this.$storage.get("sessionTable")}/session`,method:"get"}).then(({data})=>{if(data&&data.code===0){this.ruleForm=data.data;}else{this.$message.error(data.msg);}});this.huiyuanxingbieOptions="男,女".split(',')this.yuangongxingbieOptions="男,女".split(',')},methods:{huiyuantouxiangUploadChange(fileUrls){this.ruleForm.touxiang=fileUrls;},yuangongtouxiangUploadChange(fileUrls){this.ruleForm.touxiang=fileUrls;},onUpdateHandler(){if((!this.ruleForm.huiyuanzhanghao)&&'huiyuan'==this.flag){this.$message.error('会员账号不能为空');return}if((!this.ruleForm.mima)&&'huiyuan'==this.flag){this.$message.error('密码不能为空');return}if('huiyuan'==this.flag&&this.ruleForm.shenfenzheng&&(!checkIdCard(this.ruleForm.shenfenzheng))){this.$message.error(`身份证应输入身份证格式`);return}if('huiyuan'==this.flag&&this.ruleForm.shouji&&(!isMobile(this.ruleForm.shouji))){this.$message.error(`手机应输入手机格式`);return}if((!this.ruleForm.gonghao)&&'yuangong'==this.flag){this.$message.error('工号不能为空');return}if((!this.ruleForm.mima)&&'yuangong'==this.flag){this.$message.error('密码不能为空');return}if((!this.ruleForm.yuangongxingming)&&'yuangong'==this.flag){this.$message.error('员工姓名不能为空');return}if('yuangong'==this.flag&&this.ruleForm.shouji&&(!isMobile(this.ruleForm.shouji))){this.$message.error(`手机应输入手机格式`);return}if('yuangong'==this.flag&&this.ruleForm.youxiang&&(!isEmail(this.ruleForm.youxiang))){this.$message.error(`邮箱应输入邮箱格式`);return}if('users'==this.flag&&this.ruleForm.username.trim().length<1){this.$message.error(`用户名不能为空`);return}this.$http({url:`${this.$storage.get("sessionTable")}/update`,method:"post",data:this.ruleForm}).then(({data})=>{if(data&&data.code===0){this.$message({message:"修改信息成功",type:"success",duration:1500,onClose:()=>{}});}else{this.$message.error(data.msg);}});}}};</script><style lang="scss"scoped></style>

需要专业的网站建设服务?

联系我们获取免费的网站建设咨询和方案报价,让我们帮助您实现业务目标

立即咨询