微信小程序毕业设计-在线厨艺平台系统项目开发实战(附源码+论文)

大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。

💞当前专栏:微信小程序毕业设计

精彩专栏推荐👇🏻👇🏻👇🏻

🎀 Python毕业设计

🌎Java毕业设计

开发运行环境

①前端:微信小程序开发工具

② 后端:Java

  • 框架:ssm
  • JDK版本:JDK1.8
  • 服务器:tomcat7
  • 数据库:mysql 5.7
  • 数据库工具:Navicat12
  • 开发软件:eclipse/myeclipse/idea
  • Maven包:Maven3.3.9
  • 浏览器:谷歌浏览器

演示视频

原版高清演示视频-编号:190
https://pan.quark.cn/s/b2f44f423421

源码下载地址:

https://download.csdn.net/download/2301_76953549/89227771

论文目录

【如需全文请按文末获取联系】

一、项目简介

本次开发一套在线厨艺平台的设计与实现微信小程序,有管理员和用户。管理员功能有个人中心,用户管理,菜谱分类管理,食材分类管理,菜谱信息管理,食材展示管理,系统管理等。用户可以注册登录,搜索和查看食谱信息,并且可以进行收藏操作。

二、系统设计

2.1软件功能模块设计

在管理员功能模块确定下来的基础上,对管理员各个功能进行设计,确定管理员功能的详细模块。绘制的管理员功能结构见下图。

2.2数据库设计

(2)注册用户实体属性图通过Visio工具绘制,绘制结果展示如下:

(3)食材分类实体属性图通过Visio工具绘制,绘制结果展示如下:

(1)管理员实体属性图通过Visio工具绘制,绘制结果展示如下:

三、系统项目部分截图

3.1管理员后台功能实现

用户管理

此页面让管理员管理用户数据,用户管理页面见下图。此页面主要实现用户信息的查询,用户信息的审批,用户信息的刷新与删除等管理。

菜谱分类管理

此页面让管理员管理菜谱分类数据,菜谱分类管理页面见下图。此页面主要实现菜谱分类方面信息的新增,查询和刷新操作。

食材分类

此页面显示食材分类信息,食材分类页面见下图。此页面主要让管理员对食材分类进行查询,添加,修改,删除操作。

3.2微信小程序功能实现

首页

微信小程序输入正确的账号密码后就会默认进入首页显示界面。首页主要有轮播图,搜索框,以及下面的导航为主要组成部分。

菜谱信息

用户点击菜谱信息可以看到菜谱信息界面,有搜索栏,有菜谱分类按钮,可以随便点击某个菜谱信息进行查看。

食材展示

用户可以在此页面查看相关的食材信息。

四、部分核心代码

java 复制代码
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 java.io.IOException;

import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
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.ShicaifenleiEntity;
import com.entity.view.ShicaifenleiView;

import com.service.ShicaifenleiService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;

/**
 * 食材分类
 * 后端接口
 * @author 
 * @email 
 * @date 2022-02-20 12:07:41
 */
@RestController
@RequestMapping("/shicaifenlei")
public class ShicaifenleiController {
    @Autowired
    private ShicaifenleiService shicaifenleiService;



    


    /**
     * 后端列表
     */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params,ShicaifenleiEntity shicaifenlei, 
		HttpServletRequest request){

        EntityWrapper<ShicaifenleiEntity> ew = new EntityWrapper<ShicaifenleiEntity>();
		PageUtils page = shicaifenleiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, shicaifenlei), params), params));
        return R.ok().put("data", page);
    }
    
    /**
     * 前端列表
     */
	@IgnoreAuth
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params,ShicaifenleiEntity shicaifenlei, 
		HttpServletRequest request){
        EntityWrapper<ShicaifenleiEntity> ew = new EntityWrapper<ShicaifenleiEntity>();
		PageUtils page = shicaifenleiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, shicaifenlei), params), params));
        return R.ok().put("data", page);
    }

	/**
     * 列表
     */
    @RequestMapping("/lists")
    public R list( ShicaifenleiEntity shicaifenlei){
       	EntityWrapper<ShicaifenleiEntity> ew = new EntityWrapper<ShicaifenleiEntity>();
      	ew.allEq(MPUtil.allEQMapPre( shicaifenlei, "shicaifenlei")); 
        return R.ok().put("data", shicaifenleiService.selectListView(ew));
    }

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(ShicaifenleiEntity shicaifenlei){
        EntityWrapper< ShicaifenleiEntity> ew = new EntityWrapper< ShicaifenleiEntity>();
 		ew.allEq(MPUtil.allEQMapPre( shicaifenlei, "shicaifenlei")); 
		ShicaifenleiView shicaifenleiView =  shicaifenleiService.selectView(ew);
		return R.ok("查询食材分类成功").put("data", shicaifenleiView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        ShicaifenleiEntity shicaifenlei = shicaifenleiService.selectById(id);
        return R.ok().put("data", shicaifenlei);
    }

    /**
     * 前端详情
     */
	@IgnoreAuth
    @RequestMapping("/detail/{id}")
    public R detail(@PathVariable("id") Long id){
        ShicaifenleiEntity shicaifenlei = shicaifenleiService.selectById(id);
        return R.ok().put("data", shicaifenlei);
    }
    



    /**
     * 后端保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody ShicaifenleiEntity shicaifenlei, HttpServletRequest request){
    	shicaifenlei.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(shicaifenlei);

        shicaifenleiService.insert(shicaifenlei);
        return R.ok();
    }
    
    /**
     * 前端保存
     */
    @RequestMapping("/add")
    public R add(@RequestBody ShicaifenleiEntity shicaifenlei, HttpServletRequest request){
    	shicaifenlei.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(shicaifenlei);

        shicaifenleiService.insert(shicaifenlei);
        return R.ok();
    }

    /**
     * 修改
     */
    @RequestMapping("/update")
    public R update(@RequestBody ShicaifenleiEntity shicaifenlei, HttpServletRequest request){
        //ValidatorUtils.validateEntity(shicaifenlei);
        shicaifenleiService.updateById(shicaifenlei);//全部更新
        return R.ok();
    }
    

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        shicaifenleiService.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<ShicaifenleiEntity> wrapper = new EntityWrapper<ShicaifenleiEntity>();
		if(map.get("remindstart")!=null) {
			wrapper.ge(columnName, map.get("remindstart"));
		}
		if(map.get("remindend")!=null) {
			wrapper.le(columnName, map.get("remindend"));
		}


		int count = shicaifenleiService.selectCount(wrapper);
		return R.ok().put("count", count);
	}
	







}

五、获取源码或论文

如需对应的论文或源码,以及其他定制需求,也可以下方微❤联系。

相关推荐
羊羊小栈1 小时前
基于「YOLO目标检测 + 多模态AI分析」的植物病害检测分析系统(vue+flask+数据集+模型训练)
人工智能·yolo·目标检测·毕业设计·创业创新·大作业
点灯小铭1 小时前
基于MATLAB的车牌识别系统
开发语言·单片机·数码相机·matlab·毕业设计·课程设计
开发加微信:hedian1162 小时前
微信推客小程序系统开发技术实践
微信·小程序
Python大数据分析3 小时前
uniapp微信小程序商品列表数据分页+本地缓存+下拉刷新+图片懒加载
缓存·微信小程序·uni-app
小白_ysf3 小时前
uniapp和vue3项目中引入echarts 、lime-echart(微信小程序、H5等)
微信小程序·uni-app·echarts·h5·lime-echart
imHere·3 小时前
UniApp 分包异步化配置及组件引用解决方案
微信小程序·uni-app·分包
赵谨言5 小时前
基于数据挖掘的单纯冠心病与冠心病合并糖尿病的证治规律对比研究
经验分享·数据挖掘·毕业设计
说私域5 小时前
开源AI智能名片链动2+1模式S2B2C商城小程序在淘宝公域流量运营中的应用研究
人工智能·小程序·开源
赵谨言5 小时前
基于大数据挖掘的药品不良反应知识整合与利用研究
经验分享·数据挖掘·毕业设计
计算机编程-吉哥5 小时前
大数据毕业设计-基于大数据的健康饮食推荐数据分析与可视化系统(高分计算机毕业设计选题·定制开发·真正大数据)
大数据·毕业设计·计算机毕业设计选题·机器学习毕业设计·大数据毕业设计·大数据毕业设计选题推荐·大数据毕设项目