• 基于javaweb+mysql的二手交易平台二手商城二手物品(前台、后台)


    基于javaweb+mysql的二手交易平台二手商城二手物品(前台、后台)

    运行环境

    Java≥8、MySQL≥5.7、Tomcat≥8

    开发工具

    eclipse/idea/myeclipse/sts等均可配置运行

    适用

    课程设计,大作业,毕业设计,项目练习,学习演示等

    功能说明

    前台用户:注册、登录、个人信息修改、查询商品、发布和修改商品、收藏、购买、评价等……

    后台管理员:登录、分类管理、物品管理、订单管理、用户管理等……

    前台用户:

    后台管理员:

    技术框架

    JavaBean MVC JSP SSM(Spring SpringMVC MyBatis) MySQL JavaScript CSS Bootstrap……


    适用

    课程设计,大作业,毕业设计,项目练习,学习演示等

    				<div id="review-bar" class="col-md-6 rev1-bar" align="center"
    					onclick="reviewButton()">
    					<B style="font-size: 16px; color: #c4c4c4">收到的评论B>
    				div>
    				
    				<div id="reply-bar" class="col-md-6 rev2-bar" align="center"
    					onclick="replyButton()">
    					<B style="font-size: 16px; color: #c4c4c4">收到的回复B>
    				div>
    			div>
    			
    			<div class="col-md-12 r2"
    				style="background-color: #f9f9f9; padding-bottom: 15px">
    				<div id="review-body" class="col-md-12 r3"
    					style="display: none; overflow-y: auto; height: 585px; background-color: #ffffff; padding-left: 5px; padding-right: 5px; padding-top: 5px; padding-bottom: 15px;">
    					<c:choose>
    						<c:when test="${reviews.size() == 0}">
    							<div class="col-md-12" align="center"
    								style="background-color: #ffffff; margin-top: 150px">
    								<c:url value="/statics/image/logo/yihan.png"/>"
    									width="95%" ; height="170px;">
    								<p style="color: #c4c4c4; font-size: 16px">抱歉,暂无评论消息!p>
    							div>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
        function disableUser(userId) {
       
            var dblChoseAlert = simpleAlert({
       
                "content": "确认禁用用户? 用户id:"+userId,
                "buttons":{
       
                    "确定":function () {
       
                        dblChoseAlert.close();
                        setUserStatus(5, userId);
                    },
                    "取消":function () {
       
                        dblChoseAlert.close();
                    }
                }
            })
        }
    
        function deleteUser(userId) {
       
            var dblChoseAlert = simpleAlert({
       
                "content": "确认禁用用户? 用户id:"+userId,
    
    • 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
    		}
    		System.out.println(user.getMobile());
    		System.out.println(status);
    		model.addAttribute("user", user);
    		model.addAttribute("status", status);
    		return "home/register";
    	}
    }
    package com.demo.controller;
    
    import com.demo.model.FirstType;
    import com.demo.model.SecondType;
    import com.demo.service.GoodService;
    import com.demo.service.TypeService;
    import org.springframework.beans.factory.annotation
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
  • 相关阅读:
    Docker容器嵌入式开发:在Ubuntu上配置Hive
    LeetCode-全排列(C++)
    ILRuntime使用指南
    我们该如何看待AIGC(人工智能)
    Go Web项目学习之项目结构
    在Ubuntu系统中安装Docker
    基于JavaSwing开发房产管理系统(access数据库) 课程设计 大作业
    hping3的使用
    Nodejs调用C++文件
    大数据学习的一些概念(值得背)
  • 原文地址:https://blog.csdn.net/m0_68415979/article/details/127741536