末获取源码?
开发语言:Java
开发工具:IDEA /Eclipse
数据库:MYSQL5.7
应用服务:Tomcat7/Tomcat8
使用框架ssm+vue
JDK版本:jdk1.8
前言介绍
在线水果商城? ,主要的模块包括查看管理员;首页、个人中心、用户管理、类型信息管理、商品信息管理、库存统计管理、销售统计管理、系统管理、订单管理、用户等等,前台;首页、商品信息、个人中心、后台管理等功能。系统中管理员主要是为了安全有效地存储和管理各类信息,还可以对系统进行管理与更新维护等操作,并且对后台有相应的操作权限。
要想实现在线水果商城的各项功能,需要后台数据库的大力支持。管理员验证注册信息,收集的用户信息,并由此分析得出的关联信息等大量的数据都由数据库。本文中数据库服务器端采用了Mysql作为后台数据库,使Web与数据库紧密联系起来。在设计过程中,充分保证了系统代码的良好可读性、实用性、易扩展性、通用性、便于后期维护、操作方便以及页面简洁等特点。
本系统的开发使获取在线水果商城 信息能够更加方便快捷,同时也使在线水果商城? 管理信息变的更加系统化、有序化。系统界面较友好,易于操作。
系统结构?
本系统架构网站系统,本系统的具体功能如下:
管理员功能结构图,如图
?用户结构图,如图
系统详细设计
系统前台功能模块
在线水果商城? ,在系统首页可以查看首页、商品信息、个人中心、后台管理前台页面等内容,如图
注册
在注册页面填写用户名、密码、姓名、手机等信息,程序效果图如下图?
登录
用户进入登录页面填写账号、密码等等。并可以进行登录。修改等操作。程序效果图如下图
商品信息
用户前台可以对商品信息浏览并商品编号、商品名称、水果类型、保质期、价格、库存等信息进行操作,程序效果图如下图
?
?
购物车
用户进入购物车界面填写商品、价格、数量、总价可以进行立即结算等操作。程序效果图如下图
个人中心
用户进入个人中心界面填写个人信息、信息修改可以进行我的后台、退出登录、重置密码等操作。程序效果图如下图?
在线客服
?
新增地址
用户进入新增地址界面填写联系人、手机号码、地址、详细地址、是否默认可以进行查看等操作。程序效果图如下图
订单确认
用户进入订单确认界面填写商品、单价、数量、总价、收货地址、状态可以进行查看等操作。程序效果图如下图?
管理员功能模块?
管理员登录
管理员通过输入用户名,密码,权限,等信息进行系统登录,如图
管理员登录
进入在线水果商城? 可以查看首页、个人中心、用户管理? ,类型信息管理 ,商品信息管理 ,库存统计管理? ,销售统计管理? ,系统管理? ,订单管理等内容,如图
?
?
个人信息
在个人信息页面可以查看用户名 ,等内容,并可根据需要对个人信息 进行添加,修改或删除等操作,如图
用户管理
在用户管理页面可以查看用户名、密码、姓名、性别、手机等内容,并可根据需要对用户管理进行添加,修改或删除等操作,如图?
类型信息管理
在类型信息管理页面可以查看水果类型等等进行添加,修改,删除或查看详细内容等操作,如图?
?
商品信息管理
在商品信息管理 页面可以查看商品编号、商品名称、水果类型、图片、保质期、价格、库存等内容,并可根据需要对商品信息管理 信息进行添加,修改,删除或详细内容等操作,如图?
库存统计管理
在库存统计管理页面可以查看名称、商品名称、库存数量、日期等内容,并可根据需要对库存统计管理进行添加,修改,删除或详细内容等操作,如图?
?
销售统计管理
在销售统计管理页面可以查看名称、商品名称、销售总数、日期等内容,并可根据需要对销售统计管理信息进行修改,删除或详细内容等操作,如图?
轮播图管理
在轮播图管理页面可以查看ID、名称等内容,并可根据需要对轮播图管理信息进行修改,删除或查看详细内容等操作,如图
?
已支付订单
在已支付订单页面可以查看订单编号、商品名称、商品图片、购买数量、价格等内容,并可根据需要对已支付订单信息进行修改,删除或查看详细内容等操作,如图?
已发货订单
在已发货订单页面可以查看订单编号、商品名称、商品图片、购买数量、价格等内容,并可根据需要对已发货订单信息进行修改,删除或查看详细内容等操作,如图
?
客服管理
在客服管理页面可以查看新消息、状态等内容,并可根据需要对客服管理信息进行修改,删除或查看详细内容等操作,如图
?
部分核心代码:???
package com.controller;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
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.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;
import com.entity.CartEntity;
import com.entity.view.CartView;
import com.service.CartService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MPUtil;
import com.utils.CommonUtil;
/**
* 购物车表
* 后端接口
* @author
* @email
* @date 2020-11-13 13:46:15
*/
@RestController
@RequestMapping("/cart")
public class CartController {
@Autowired
private CartService cartService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,CartEntity cart, HttpServletRequest request){
if(!request.getSession().getAttribute("role").toString().equals("管理员")) {
cart.setUserid((Long)request.getSession().getAttribute("userId"));
}
EntityWrapper<CartEntity> ew = new EntityWrapper<CartEntity>();
PageUtils page = cartService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, cart), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,CartEntity cart, HttpServletRequest request){
EntityWrapper<CartEntity> ew = new EntityWrapper<CartEntity>();
PageUtils page = cartService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, cart), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( CartEntity cart){
EntityWrapper<CartEntity> ew = new EntityWrapper<CartEntity>();
ew.allEq(MPUtil.allEQMapPre( cart, "cart"));
return R.ok().put("data", cartService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(CartEntity cart){
EntityWrapper< CartEntity> ew = new EntityWrapper< CartEntity>();
ew.allEq(MPUtil.allEQMapPre( cart, "cart"));
CartView cartView = cartService.selectView(ew);
return R.ok("查询购物车表成功").put("data", cartView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") String id){
CartEntity cart = cartService.selectById(id);
return R.ok().put("data", cart);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") String id){
CartEntity cart = cartService.selectById(id);
return R.ok().put("data", cart);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody CartEntity cart, HttpServletRequest request){
cart.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(cart);
cart.setUserid((Long)request.getSession().getAttribute("userId"));
cartService.insert(cart);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody CartEntity cart, HttpServletRequest request){
cart.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(cart);
cartService.insert(cart);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody CartEntity cart, HttpServletRequest request){
//ValidatorUtils.validateEntity(cart);
cartService.updateById(cart);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
cartService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
/**
* 提醒接口
*/
@RequestMapping("/remind/{columnName}/{type}")
public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
@PathVariable("type") String type,@RequestParam Map<String, Object> map) {
map.put("column", columnName);
map.put("type", type);
if(type.equals("2")) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Calendar c = Calendar.getInstance();
Date remindStartDate = null;
Date remindEndDate = null;
if(map.get("remindstart")!=null) {
Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindStart);
remindStartDate = c.getTime();
map.put("remindstart", sdf.format(remindStartDate));
}
if(map.get("remindend")!=null) {
Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindEnd);
remindEndDate = c.getTime();
map.put("remindend", sdf.format(remindEndDate));
}
}
Wrapper<CartEntity> wrapper = new EntityWrapper<CartEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
if(!request.getSession().getAttribute("role").toString().equals("管理员")) {
wrapper.eq("userid", (Long)request.getSession().getAttribute("userId"));
}
int count = cartService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
?
|