• 基于java+springboot+mybatis+vue+elementui的零食销售商城网站


    系统功能:
    用户端:

    • 登录注册
    • 首页浏览
    • 零食信息
    • 发表评论
    • 分类筛选
    • 零食查询
    • 零食资讯
    • 在线客服
    • 加入购物车
    • 零食收藏
    • 提交订单
    • 地址管理
    • 个人中心
    • 收藏管理
    • 订单管理
    • 退出登录

    管理员端:

    • 系统登录
    • 个人中心
    • 用户管理
    • 零食分类管理
    • 零食信息管理
    • 订单评价管理
    • 订单管理
    • 系统管理(轮播图管理、零食资讯管理、在线客服管理)
    • 退出登录

    页面效果:
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    核心代码:

    @RequestMapping("/location")
    	public R location(String lng,String lat) {
    		if(BAIDU_DITU_AK==null) {
    			BAIDU_DITU_AK = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "baidu_ditu_ak")).getValue();
    			if(BAIDU_DITU_AK==null) {
    				return R.error("请在配置管理中正确配置baidu_ditu_ak");
    			}
    		}
    		Map<String, String> map = BaiduUtil.getCityByLonLat(BAIDU_DITU_AK, lng, lat);
    		return R.ok().put("data", map);
    	}
    	
    	/**
    	 * 人脸比对
    	 * 
    	 * @param face1 人脸1
    	 * @param face2 人脸2
    	 * @return
    	 */
    	@RequestMapping("/matchFace")
    	public R matchFace(String face1, String face2) {
    		if(client==null) {
    			/*String AppID = configService.selectOne(new EntityWrapper().eq("name", "AppID")).getValue();*/
    			String APIKey = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "APIKey")).getValue();
    			String SecretKey = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "SecretKey")).getValue();
    			String token = BaiduUtil.getAuth(APIKey, SecretKey);
    			if(token==null) {
    				return R.error("请在配置管理中正确配置APIKey和SecretKey");
    			}
    			client = new AipFace(null, APIKey, SecretKey);
    			client.setConnectionTimeoutInMillis(2000);
    			client.setSocketTimeoutInMillis(60000);
    		}
    		JSONObject res = null;
    		try {
    			File file1 = new File(ResourceUtils.getFile("classpath:static/upload").getAbsolutePath()+"/"+face1);
    			File file2 = new File(ResourceUtils.getFile("classpath:static/upload").getAbsolutePath()+"/"+face2);
    			String img1 = Base64Util.encode(FileUtil.FileToByte(file1));
    			String img2 = Base64Util.encode(FileUtil.FileToByte(file2));
    			MatchRequest req1 = new MatchRequest(img1, "BASE64");
    			MatchRequest req2 = new MatchRequest(img2, "BASE64");
    			ArrayList<MatchRequest> requests = new ArrayList<MatchRequest>();
    			requests.add(req1);
    			requests.add(req2);
    			res = client.match(requests);
    			System.out.println(res.get("result"));
    		} catch (FileNotFoundException e) {
    			e.printStackTrace();
    			return R.error("文件不存在");
    		} catch (IOException e) {
    			e.printStackTrace();
    		} 
    		return R.ok().put("data", com.alibaba.fastjson.JSONObject.parse(res.get("result").toString()));
    	}
        
    	/**
    	 * 获取table表中的column列表(联动接口)
    	 * @param table
    	 * @param column
    	 * @return
    	 */
    	@IgnoreAuth
    	@RequestMapping("/option/{tableName}/{columnName}")
    	public R getOption(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName,String level,String parent) {
    		Map<String, Object> params = new HashMap<String, Object>();
    		params.put("table", tableName);
    		params.put("column", columnName);
    		if(StringUtils.isNotBlank(level)) {
    			params.put("level", level);
    		}
    		if(StringUtils.isNotBlank(parent)) {
    			params.put("parent", parent);
    		}
    		List<String> data = commonService.getOption(params);
    		return R.ok().put("data", data);
    	}
    	
    	/**
    	 * 根据table中的column获取单条记录
    	 * @param table
    	 * @param column
    	 * @return
    	 */
    	@IgnoreAuth
    	@RequestMapping("/follow/{tableName}/{columnName}")
    	public R getFollowByOption(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName, @RequestParam String columnValue) {
    		Map<String, Object> params = new HashMap<String, Object>();
    		params.put("table", tableName);
    		params.put("column", columnName);
    		params.put("columnValue", columnValue);
    		Map<String, Object> result = commonService.getFollowByOption(params);
    		return R.ok().put("data", result);
    	}
    	
    	/**
    	 * 修改table表的sfsh状态
    	 * @param table
    	 * @param map
    	 * @return
    	 */
    	@RequestMapping("/sh/{tableName}")
    	public R sh(@PathVariable("tableName") String tableName, @RequestBody Map<String, Object> map) {
    		map.put("table", tableName);
    		commonService.sh(map);
    		return R.ok();
    	}
    	
    	/**
    	 * 获取需要提醒的记录数
    	 * @param tableName
    	 * @param columnName
    	 * @param type 1:数字 2:日期
    	 * @param map
    	 * @return
    	 */
    	@IgnoreAuth
    	@RequestMapping("/remind/{tableName}/{columnName}/{type}")
    	public R remindCount(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName, 
    						 @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
    		map.put("table", tableName);
    		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));
    			}
    		}
    		
    		int count = commonService.remindCount(map);
    		return R.ok().put("count", count);
    	}
    	
    	/**
    	 * 单列求和
    	 */
    	@IgnoreAuth
    	@RequestMapping("/cal/{tableName}/{columnName}")
    	public R cal(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName) {
    		Map<String, Object> params = new HashMap<String, Object>();
    		params.put("table", tableName);
    		params.put("column", columnName);
    		Map<String, Object> result = commonService.selectCal(params);
    		return R.ok().put("data", result);
    	}
    	
    	/**
    	 * 分组统计
    	 */
    	@IgnoreAuth
    	@RequestMapping("/group/{tableName}/{columnName}")
    	public R group(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName) {
    		Map<String, Object> params = new HashMap<String, Object>();
    		params.put("table", tableName);
    		params.put("column", columnName);
    		List<Map<String, Object>> result = commonService.selectGroup(params);
    		return R.ok().put("data", result);
    	}
    	
    	/**
    	 * (按值统计)
    	 */
    	@IgnoreAuth
    	@RequestMapping("/value/{tableName}/{xColumnName}/{yColumnName}")
    	public R value(@PathVariable("tableName") String tableName, @PathVariable("yColumnName") String yColumnName, @PathVariable("xColumnName") String xColumnName) {
    		Map<String, Object> params = new HashMap<String, Object>();
    		params.put("table", tableName);
    		params.put("xColumn", xColumnName);
    		params.put("yColumn", yColumnName);
    		List<Map<String, Object>> result = commonService.selectValue(params);
    		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    		for(Map<String, Object> m : result) {
    			for(String k : m.keySet()) {
    				if(m.get(k) instanceof Date) {
    					m.put(k, sdf.format((Date)m.get(k)));
    				}
    			}
    		}
    		return R.ok().put("data", result);
    	}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
  • 相关阅读:
    docker-compose Wordpress遇到的很多问题
    大数据-玩转数据-Flink CEP编程
    灵活学习平台满足不同学习风格的需求
    信息学奥赛一本通:1107:校门外的树
    Go语言中的init函数: 特点、用途和注意事项
    【定语从句练习题】定语从句中的介词
    【FPGA教程案例38】通信案例8——基于FPGA的串并-并串数据传输
    一篇文章就足够解决大数据实时面试
    P1586 四方定理-完全背包(dp)
    maven私服搭建
  • 原文地址:https://blog.csdn.net/qq_3306428634/article/details/126478946