SSM实现购物系统

1,开发工具

eclipse/IDEA    Tomact    mysql

2.技术架构

java+jsp+SSM+mysql+html+js+css

3.核心功能

符合所有网上在线购物系统的所有功能,具体看下方演示地址

4.部分功能代码展示

收藏功能展示

package com.neusoft.controller;
import java.io.File;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.commons.CommonsMultipartFile;

import com.alibaba.fastjson.JSONObject;
import com.neusoft.base.BaseController;
import com.neusoft.po.*;
import com.neusoft.utils.Pager;
import java.util.*;

import com.neusoft.po.*;
import com.neusoft.mapper.*;
import com.neusoft.service.*;

 


@Controller
@RequestMapping("/sc")
public class ScController extends BaseController {
    
    
    /**
     * 依赖注入 start dao/service/===
     */
    @Autowired
    private ScService scService;
    @Autowired
    private ItemService itemService;
    // --------------------------------------- 华丽分割线 ------------------------------
    
    /*********************************查询列表【不分页】***********************************************/
    
    /**
     * 【不分页 => 查询列表 => 无条件】
    * @Title: listAll 
    * @Description: TODO(这里用一句话描述这个方法的作用) 
    * @param @return 设定文件 
    * @author
    * @return String 返回类型 
    * @throws
     */
    @RequestMapping(value = "/listAll")
    public String listAll(Sc sc, Model model, HttpServletRequest request, HttpServletResponse response){
        List<Sc> listAll = scService.listAll();
        model.addAttribute("list", listAll);
        return "sc/sc";
    }
    
    /**
     *  【不分页=》查询列表=>有条件】
    * @Title: listByEntity 
    * @Description: TODO(这里用一句话描述这个方法的作用) 
    * @param @return 设定文件 
    * @author
    * @return String 返回类型 
    * @throws
     */
    @RequestMapping(value = "/listByEntity")
    public String listByEntity(Sc sc, Model model, HttpServletRequest request, HttpServletResponse response){
        List<Sc> listAll = scService.listAllByEntity(sc);
        model.addAttribute("list", listAll);
        return "sc/sc";
    }
    
    /**
     *  【不分页=》查询列表=>有条件】
    * @Title: listByMap 
    * @Description: TODO(这里用一句话描述这个方法的作用) 
    * @param @return 设定文件 
    * @author 
    * @return String 返回类型 
    * @throws
     */
    @RequestMapping(value = "/listByMap")
    public String listByMap(Sc sc, Model model, HttpServletRequest request, HttpServletResponse response){
        //通过map查询
        Map<String,Object> params = new HashMap<String,Object>();
            if(!isEmpty(sc.getItemId())){
                params.put("itemId", sc.getItemId());
            }
            if(!isEmpty(sc.getUserId())){
                params.put("userId", sc.getUserId());
            }
        List<Sc> listAll = scService.listByMap(params);
        model.addAttribute("list", listAll);
        return "sc/sc";
    }
    
    
    /*********************************查询列表【分页】***********************************************/
    
    
    
    /**
     * 分页查询 返回list对象(通过对象)
     * 
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value = "/findByObj")
    public String findByObj(Sc sc, Model model, HttpServletRequest request, HttpServletResponse response) {
        //分页查询
        Pager<Sc> pagers = scService.findByEntity(sc);
        model.addAttribute("pagers", pagers);
        //存储查询条件
        model.addAttribute("obj", sc);
        return "sc/sc";
    }
    
    /**
     * 分页查询 返回list对象(通过对By Sql)
     * 
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value = "/findBySql")
    public String findBySql(Sc sc, Model model, HttpServletRequest request, HttpServletResponse response) {
        //分页查询
        Object attribute = request.getSession().getAttribute("userId");
        if (attribute == null){
            return "redirect:/login/uLogin";
        }
        JSONObject js = new JSONObject();
        Integer userId = Integer.valueOf(attribute.toString());
        String sql = "SELECT * FROM sc WHERE 1=1 and user_id="+userId;
        if(!isEmpty(sc.getItemId())){
            sql += " and itemId like '%"+sc.getItemId()+"%'";
        }
        if(!isEmpty(sc.getUserId())){
            sql += " and userId like '%"+sc.getUserId()+"%'";
        }
       sql += " ORDER BY ID DESC ";
        Pager<Sc> pagers = scService.findBySqlRerturnEntity(sql);
        model.addAttribute("pagers", pagers);
        //存储查询条件
        model.addAttribute("obj", sc);
        return "sc/my";
    }
    
    
    /**
     * 分页查询 返回list对象(通过Map)
     * 
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value = "/findByMap")
    public String findByMap(Sc sc, Model model, HttpServletRequest request, HttpServletResponse response) {
        //通过map查询
        Map<String,Object> params = new HashMap<String,Object>();
        if(!isEmpty(sc.getItemId())){
            params.put("itemId", sc.getItemId());
        }
        if(!isEmpty(sc.getUserId())){
            params.put("userId", sc.getUserId());
        }
        //分页查询
        Pager<Sc> pagers = scService.findByMap(params);
        model.addAttribute("pagers", pagers);
        //存储查询条件
        model.addAttribute("obj", sc);
        return "sc/sc";
    }
    
    /**********************************【增删改】******************************************************/
    
    /**
     * 跳至添加页面
     * @return
     */
    @RequestMapping(value = "/add")
    public String add() {
        return "sc/add";
    }

    /**
     * 跳至详情页面
     * @return
     */
    @RequestMapping(value = "/view")
    public String view(Integer id,Model model) {
        Sc obj = scService.load(id);
        model.addAttribute("obj",obj);
        return "sc/view";
    }
    
    /**
     * 添加执行
     * @return
     */
    @RequestMapping(value = "/exAdd")
    public String exAdd(Sc sc, Model model, HttpServletRequest request, HttpServletResponse response) {
        Object attribute = request.getSession().getAttribute("userId");
        if (attribute == null){
            return "redirect:/login/uLogin";
        }
        JSONObject js = new JSONObject();
        Integer userId = Integer.valueOf(attribute.toString());
        sc.setUserId(userId);
        scService.insert(sc);
        Item load = itemService.load(sc.getItemId());
        load.setScNum(load.getScNum()+1);
        itemService.updateById(load);
        
        return "redirect:/sc/findBySql.action";
    }
    
    
    /**
     * 跳至修改页面
     * @return
     */
    @RequestMapping(value = "/update")
    public String update(Integer id,Model model) {
        Sc obj = scService.load(id);
        model.addAttribute("obj",obj);
        return "sc/update";
    }
    
    /**
     * 添加修改
     * @return
     */
    @RequestMapping(value = "/exUpdate")
    public String exUpdate(Sc sc, Model model, HttpServletRequest request, HttpServletResponse response) {
        //1.通过实体类修改,可以多传修改条件
        scService.updateById(sc);
        //2.通过主键id修改
        //scService.updateById(sc);
        return "redirect:/sc/findBySql.action";
    }
    
    /**
     * 删除通过主键
     * @return
     */
    @RequestMapping(value = "/delete")
    public String delete(Integer id, Model model, HttpServletRequest request, HttpServletResponse response) {
        ///1.通过主键删除
        scService.deleteById(id);
        /*以下是多种删除方式*/
//        //2.通过实体条件删除
//        scService.deleteByEntity(sc);
//        //3.通过参数删除
//     //通过map查询
//        Map<String,Object> params = new HashMap<String,Object>();
//        
//        if(!isEmpty(sc.getItemId())){
//            params.put("itemId", sc.getItemId());
//        }
//       
//        if(!isEmpty(sc.getUserId())){
//            params.put("userId", sc.getUserId());
//        }
//       
//        scService.deleteByMap(params);
//        //4.状态删除
//        Sc load = scService.getById(sc.getId())
//        load.setIsDelete(1);
//        scService.update(load);
        //5.状态删除
        //Sc load = scService.load(id);
        //load.setIsDelete(1);
        //scService.update(load);
        return "redirect:/sc/findBySql.action";
    }
    
    // --------------------------------------- 华丽分割线 ------------------------------
    // --------------------------------------- 【下面是ajax操作的方法。】 ------------------------------

    /*********************************查询列表【不分页】***********************************************/
    
    /**
     * 【不分页 => 查询列表 => 无条件】
    * @Title: listAll 
    * @Description: TODO(这里用一句话描述这个方法的作用) 
    * @param @return 设定文件 
    * @author
    * @return String 返回类型 
    * @throws
     */
    @RequestMapping(value = "/listAllJson", method = RequestMethod.POST)
    @ResponseBody
    public String listAllJson(Sc sc, HttpServletRequest request, HttpServletResponse response){
        List<Sc> listAll = scService.listAll();
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("list", listAll);
        jsonObject.put("obj", sc);
        return jsonObject.toString();
    }
    
    /**
     *  【不分页=》查询列表=>有条件】
    * @Title: listByEntity 
    * @Description: TODO(这里用一句话描述这个方法的作用) 
    * @param @return 设定文件 
    * @author
    * @return String 返回类型 
    * @throws
     */
    @RequestMapping(value = "/listByEntityJson", method = RequestMethod.POST)
    @ResponseBody
    public String listByEntityJson(Sc sc,  HttpServletRequest request, HttpServletResponse response){
        List<Sc> listAll = scService.listAllByEntity(sc);
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("list", listAll);
        jsonObject.put("obj", sc);
        return jsonObject.toString();
    }
    
    /**
     *  【不分页=》查询列表=>有条件】
    * @Title: listByMap 
    * @Description: TODO(这里用一句话描述这个方法的作用) 
    * @param @return 设定文件 
    * @author 
    * @return String 返回类型 
    * @throws
     */
    @RequestMapping(value = "/listByMapJson", method = RequestMethod.POST)
    @ResponseBody
    public String listByMapJson(Sc sc,HttpServletRequest request, HttpServletResponse response){
        //通过map查询
        Map<String,Object> params = new HashMap<String,Object>();
            if(!isEmpty(sc.getItemId())){
                params.put("itemId", sc.getItemId());
            }
            if(!isEmpty(sc.getUserId())){
                params.put("userId", sc.getUserId());
            }
        List<Sc> listAll = scService.listByMap(params);
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("list", listAll);
        jsonObject.put("obj", sc);
        return jsonObject.toString();
    }
    
    
    /**
     * 分页查询 返回list json(通过对象)
     * 
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value = "/findByObjJson", method = RequestMethod.POST)
    @ResponseBody
    public String findByObjByEntityJson(Sc sc, HttpServletRequest request, HttpServletResponse response) {
        //分页查询
        Pager<Sc> pagers = scService.findByEntity(sc);
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("pagers", pagers);
        jsonObject.put("obj", sc);
        return jsonObject.toString();
    }
    
      
    /**
     * 分页查询 返回list json(通过Map)
     * 
     * @param request
     * @param response
     * @return
     */
    @RequestMapping(value = "/findByMapJson",  method = RequestMethod.POST)
    @ResponseBody
    public String findByMapJson(Sc sc,HttpServletRequest request, HttpServletResponse response) {
        //通过map查询
        Map<String,Object> params = new HashMap<String,Object>();
        if(!isEmpty(sc.getItemId())){
            params.put("itemId", sc.getItemId());
        }
        if(!isEmpty(sc.getUserId())){
            params.put("userId", sc.getUserId());
        }
        //分页查询
        Pager<Sc> pagers = scService.findByMap(params);
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("pagers", pagers);
        jsonObject.put("obj", sc);
        return jsonObject.toString();
    }
    
    
    /**
     * ajax 添加
     * @param 
     * @return
     */
    @RequestMapping(value = "/exAddJson", method = RequestMethod.POST)
    @ResponseBody
    public String exAddJson(Sc sc, Model model, HttpServletRequest request, HttpServletResponse response) {
        scService.insert(sc);
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("message", "添加成功");
        return jsonObject.toString();
    }
    

    /**
     * ajax 修改
     * @param 
     * @return
     */
    @RequestMapping(value = "/exUpdate.json", method = RequestMethod.POST)
    @ResponseBody
    public String exUpdateJson(Sc sc, Model model, HttpServletRequest request, HttpServletResponse response) {
        //1.通过实体类修改,可以多传修改条件
        scService.updateById(sc);
        //2.通过主键id修改
        //scService.updateById(sc);
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("message", "修改成功");
        return jsonObject.toString();
    }

    /**
     * ajax 删除
     * @return
     */
    @RequestMapping(value = "/delete.json", method = RequestMethod.POST)
    @ResponseBody
    public String exDeleteJson(Integer id, Model model, HttpServletRequest request, HttpServletResponse response) {
        ///1.通过主键删除
        scService.deleteById(id);
        /*以下是多种删除方式*/
//        //2.通过实体条件删除
//        scService.deleteByEntity(sc);
//        //3.通过参数删除
//        //通过map查询
//        Map<String,Object> params = new HashMap<String,Object>();
//        
//        if(!isEmpty(sc.getItemId())){
//            params.put("itemId", sc.getItemId());
//        }
//       
//        if(!isEmpty(sc.getUserId())){
//            params.put("userId", sc.getUserId());
//        }
//       
//        scService.deleteByMap(params);
//        //4.状态删除
//        Sc load = scService.getById(sc.getId())
//        load.setIsDelete(1);
//        scService.updateById(load);
        //5.状态删除
        //Sc load = scService.load(id);
        //load.setIsDelete(1);
        //scService.updateById(load);
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("message", "删除成功");
        return jsonObject.toString();
    }
    /**
     * 单文件上传
     * @param file
     * @param request
     * @param model
     * @return
     */
    @RequestMapping(value = "/saveFile")  
    public String saveFile(@RequestParam(value = "file", required = false) MultipartFile file, HttpServletRequest request, Model model) {  
  
        System.out.println("开始");  
        String path = request.getSession().getServletContext().getRealPath("/upload");  
        String fileName = file.getOriginalFilename();  
        System.out.println(path);  
        File targetFile = new File(path, fileName);  
        if(!targetFile.exists()){  
            targetFile.mkdirs();  
        }  
        //保存  
        try {  
            file.transferTo(targetFile);  
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
  
        return "";  
    }  
    
    
    /**
     * springMvc多文件上传
     * @param files
     * @param id
     * @return
     */
    @RequestMapping(value = "/saveFiles")
    public String saveFiles(@RequestParam("file") CommonsMultipartFile[] files,Integer id,HttpServletRequest request){
        for(int i = 0;i<files.length;i++){
              System.out.println("fileName---------->" + files[i].getOriginalFilename());
          if(!files[i].isEmpty()){
            int pre = (int) System.currentTimeMillis();
             try {
            //拿到输出流,同时重命名上传的文件
             String filePath = request.getRealPath("/upload");
             File f=new File(filePath);
             if(!f.exists()){
                f.mkdirs();
             }
             String fileNmae=new Date().getTime() + files[i].getOriginalFilename();
             File file=new File(filePath+"/"+pre + files[i].getOriginalFilename());
              if(!file.exists()){
                  file.createNewFile();
             }
              files[i].transferTo(file);
             } catch (Exception e) {
                e.printStackTrace();
                System.out.println("上传出错");
             }
          }
        }
      return "";
    }
 // --------------------------------------- 华丽分割线 ------------------------------
    
    
}
 

 

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@include file="/common/taglibs.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <meta name="renderer" content="webkit">
   <title>个人中心</title>
    <link rel="stylesheet" type="text/css" href="${ctx}/resource/user/css/style.css">
    <script src="${ctx}/resource/user/js/jquery-1.8.3.min.js"></script>
    <script src="${ctx}/resource/user/js/jquery.luara.0.0.1.min.js"></script>
</head>
<body>

 <%@ include file="/common/utop.jsp" %>
 
<!--导航条-->
<div class="width100" style="height:45px;background:#dd4545;margin-top:40px;position:relative;z-index:100;">
    <!--中间的部分-->    
    <div class="width1200 center_yh relative_yh" style="height:45px;">
        <!--普通导航-->
        <div class="left_yh font16" id="pageNav">
            <a href="${ctx}/login/uIndex">首页</a>
        </div>
    </div>
</div>

<!--当前位置-->
<div class="width1200 center_yh hidden_yh font14" style="height:40px;line-height:40px;">
    <span>当前位置:</span><a href="#" class="c_66">首页></a><a href="#" class="c_66">我的账户></a>
</div>
<div class="width100 hidden_yh" style="background:#f0f0f0;padding-top:34px;padding-bottom:34px;">
    <div class="width1200 hidden_yh center_yh">
        <div id="vipNav">
            <a href="${ctx}/user/view" >个人信息</a>
            <a href="${ctx}/itemOrder/my" class="on">我的订单</a>
            <a href="${ctx}/sc/findBySql">商品收藏</a>
            <a href="${ctx}/login/pass" >修改密码</a>
        </div>
        <div id="vipRight">
            <div style="width:938px;border:1px solid #ddd;background:#fff;">
                <!--导航-->
                <div class="width100 hidden_yh" style="height:74px;line-height:74px;background:#f5f8fa;border-bottom:1px solid #ddd;" id="navLt">
                    <span class="left_yh font24 width20 tcenter cursor onHover onorange slect">全部订单(${fn:length(all)})</span>
                    <span class="left_yh font24 width20 tcenter cursor onHover onorange">已取消(${fn:length(yqx)})</span>
                    <span class="left_yh font24 width20 tcenter cursor onHover onorange">待发货(${fn:length(dfh)})</span>
                    <span class="left_yh font24 width20 tcenter cursor onHover onorange">待收货(${fn:length(yfh)})</span>
                    <span class="left_yh font24 width20 tcenter cursor onHover onorange">已收货(${fn:length(dpj)})</span>
                </div>
                <!--全部订单-->
                <div class="allGoods width100 hidden_yh hhD" style="display:block;">
                
                   <!-- 这是一个整的   start-->
                   
                   <c:forEach items="${all}" var="data" varStatus="l">
                    <!--bottom(一条)-->
                    <div class="width100 hidden_yh">
                    <!--标题-->
                    <div class="width100 hidden_yh font20 c_66" style="background:#faf5f5;text-indent:47px;height:50px;line-height:50px;border-bottom:1px solid #ddd;">
                      <fmt:formatDate value="${data.addTime}"  type="both" />订单号${data.code} 
                      
                     <!--  0.新建代发货1.已取消 2已已发货3.到收货 -->
                      <c:if test="${data.status == 0}"> 待发货</c:if>
                      <c:if test="${data.status == 1}"> 已取消</c:if>
                      <c:if test="${data.status == 2}"> 待收货</c:if>
                      <c:if test="${data.status == 3}"> 已收货</c:if>
                      
                    </div>
                    <!--之一 details -->
                    
                     <c:forEach items="${data.details}" var="chil" varStatus="l">
                          <div style="width:838px;border-bottom:1px dashed #ddd;padding-top:30px;padding-bottom:30px;" class="hidden_yh center_yh">
                            <img src="${chil.item.url1}" width="100" height="100" class="left_yh" style="padding-right: 10px">
                            <div class="left_yh" style="width:580px;">
                                <h3 class="font18 c_33 font100">${chil.item.name}</h3>
                                <p class="c_66 font16" style="margin-top:16px;">折扣:${chil.item.zk}</p>
                                <p class="red" style="margin-top:10px;">¥${chil.item.price}</p>
                            </div>
                            <div class="right_yh">
                             <c:if test="${data.status == 3}"> 
                                <a href="${ctx}/itemOrder/pj?id=${chil.itemId}" class="onfff block_yh tcenter font16 onHoverr" style="margin-top:10px;padding:6px;">去评价</a>
                            </c:if>
                            </div>
                         </div>
                     </c:forEach>
                    <!--总结-->
                    <div style="width:838px;padding-top:30px;padding-bottom:30px;" class="hidden_yh center_yh tleft">
                        <font class="font24">总金额<font class="font18 c_66">(含运费0元):</font></font><font class="red font34"><font class="font24">¥</font>${data.total}</font>
                        
                          <c:if test="${data.status == 0}"> 
                                <a href="${ctx}/itemOrder/qx?id=${data.id}" class="c_33 onHover font20 onorange right_yh" style="margin-top:">取消订单</a>
                         </c:if>
                          <c:if test="${data.status == 1}"> 
                                <a href="#" class="c_33 onHover font20 onorange right_yh" style="margin-top:">已取消</a>
                         </c:if>
                          <c:if test="${data.status == 2}"> 
                                <a href="${ctx}/itemOrder/sh?id=${data.id}" class="c_33 onHover font20 onorange right_yh" style="margin-top:">去收货</a>
                         </c:if>
                         <c:if test="${data.status == 3}"> 
                                <a href="#" class="c_33 onHover font20 onorange right_yh" style="margin-top:">已收货</a>
                         </c:if>
                    </div>
                    </div>
                    <!-- 这是一个整的   end-->
                    </c:forEach>
                </div>
                
                
                <!--已取消-->
                <div class="waitingPay width100 hidden_yh hhD" style="display:none">
                    <!--bottom(一条)-->
                  <!-- 这是一个整的   start-->
                   
                   <c:forEach items="${yqx}" var="data" varStatus="l">
                    <!--bottom(一条)-->
                    <div class="width100 hidden_yh">
                    <!--标题-->
                    <div class="width100 hidden_yh font20 c_66" style="background:#faf5f5;text-indent:47px;height:50px;line-height:50px;border-bottom:1px solid #ddd;">
                      <fmt:formatDate value="${data.addTime}"  type="both" />订单号${data.code} 
                      
                     <!--  0.新建代发货1.已取消 2已已发货3.到收货 -->
                      <c:if test="${data.status == 0}"> 待发货</c:if>
                      <c:if test="${data.status == 1}"> 已取消</c:if>
                      <c:if test="${data.status == 2}"> 待收货</c:if>
                      <c:if test="${data.status == 3}"> 已收货</c:if>
                      
                    </div>
                    <!--之一 details -->
                    
                     <c:forEach items="${data.details}" var="chil" varStatus="l">
                          <div style="width:838px;border-bottom:1px dashed #ddd;padding-top:30px;padding-bottom:30px;" class="hidden_yh center_yh">
                            <img src="${chil.item.url1}" width="100" height="100" class="left_yh" style="padding-right: 10px">
                            <div class="left_yh" style="width:580px;">
                                <h3 class="font18 c_33 font100">${chil.item.name}</h3>
                                <p class="c_66 font16" style="margin-top:16px;">折扣:${chil.item.zk}</p>
                                <p class="red" style="margin-top:10px;">¥${chil.item.price}</p>
                            </div>
                            <div class="right_yh">
                             <c:if test="${data.status == 3}"> 
                                <a href="${ctx}/itemOrder/pj?id=${chil.itemId}" class="onfff block_yh tcenter font16 onHoverr" style="margin-top:10px;padding:6px;">去评价</a>
                            </c:if>
                            </div>
                         </div>
                     </c:forEach>
                    <!--总结-->
                    <div style="width:838px;padding-top:30px;padding-bottom:30px;" class="hidden_yh center_yh tleft">
                        <font class="font24">总金额<font class="font18 c_66">(含运费0元):</font></font><font class="red font34"><font class="font24">¥</font>${data.total}</font>
                        
                          <c:if test="${data.status == 0}"> 
                                <a href="${ctx}/itemOrder/qx?id=${data.id}" class="c_33 onHover font20 onorange right_yh" style="margin-top:">取消订单</a>
                         </c:if>
                          <c:if test="${data.status == 1}"> 
                                <a href="#" class="c_33 onHover font20 onorange right_yh" style="margin-top:">已取消</a>
                         </c:if>
                          <c:if test="${data.status == 2}"> 
                                <a href="${ctx}/itemOrder/sh?id=${data.id}" class="c_33 onHover font20 onorange right_yh" style="margin-top:">去收货</a>
                         </c:if>
                         <c:if test="${data.status == 3}"> 
                                <a href="#" class="c_33 onHover font20 onorange right_yh" style="margin-top:">已收货</a>
                         </c:if>
                    </div>
                    </div>
                    <!-- 这是一个整的   end-->
                    </c:forEach>
                </div>
                
                
                
                <!--待发货-->
                <div class="deLivery width100 hidden_yh hhD" style="display:none;">
                 
                  <c:forEach items="${dfh}" var="data" varStatus="l">
                    <!--bottom(一条)-->
                    <div class="width100 hidden_yh">
                    <!--标题-->
                    <div class="width100 hidden_yh font20 c_66" style="background:#faf5f5;text-indent:47px;height:50px;line-height:50px;border-bottom:1px solid #ddd;">
                      <fmt:formatDate value="${data.addTime}"  type="both" />订单号${data.code} 
                      
                     <!--  0.新建代发货1.已取消 2已已发货3.到收货 -->
                      <c:if test="${data.status == 0}"> 待发货</c:if>
                      <c:if test="${data.status == 1}"> 已取消</c:if>
                      <c:if test="${data.status == 2}"> 待收货</c:if>
                      <c:if test="${data.status == 3}"> 已收货</c:if>
                      
                    </div>
                    <!--之一 details -->
                    
                     <c:forEach items="${data.details}" var="chil" varStatus="l">
                          <div style="width:838px;border-bottom:1px dashed #ddd;padding-top:30px;padding-bottom:30px;" class="hidden_yh center_yh">
                            <img src="${chil.item.url1}" width="100" height="100" class="left_yh" style="padding-right: 10px">
                            <div class="left_yh" style="width:580px;">
                                <h3 class="font18 c_33 font100">${chil.item.name}</h3>
                                <p class="c_66 font16" style="margin-top:16px;">折扣:${chil.item.zk}</p>
                                <p class="red" style="margin-top:10px;">¥${chil.item.price}</p>
                            </div>
                            <div class="right_yh">
                             <c:if test="${data.status == 3}"> 
                                <a href="${ctx}/itemOrder/pj?id=${chil.itemId}" class="onfff block_yh tcenter font16 onHoverr" style="margin-top:10px;padding:6px;">去评价</a>
                            </c:if>
                            </div>
                         </div>
                     </c:forEach>
                    <!--总结-->
                    <div style="width:838px;padding-top:30px;padding-bottom:30px;" class="hidden_yh center_yh tleft">
                        <font class="font24">总金额<font class="font18 c_66">(含运费0元):</font></font><font class="red font34"><font class="font24">¥</font>${data.total}</font>
                        
                          <c:if test="${data.status == 0}"> 
                                <a href="${ctx}/itemOrder/qx?id=${data.id}" class="c_33 onHover font20 onorange right_yh" style="margin-top:">取消订单</a>
                         </c:if>
                          <c:if test="${data.status == 1}"> 
                                <a href="#" class="c_33 onHover font20 onorange right_yh" style="margin-top:">已取消</a>
                         </c:if>
                          <c:if test="${data.status == 2}"> 
                                <a href="${ctx}/itemOrder/sh?id=${data.id}" class="c_33 onHover font20 onorange right_yh" style="margin-top:">去收货</a>
                         </c:if>
                         <c:if test="${data.status == 3}"> 
                                <a href="#" class="c_33 onHover font20 onorange right_yh" style="margin-top:">已收货</a>
                         </c:if>
                    </div>
                    </div>
                    <!-- 这是一个整的   end-->
                    </c:forEach>
                 
                </div>
                
                
                
                <!--待收货-->
                <div class="waitSh width100 hidden_yh hhD" style="display:none;">
                     <c:forEach items="${yfh}" var="data" varStatus="l">
                    <!--bottom(一条)-->
                    <div class="width100 hidden_yh">
                    <!--标题-->
                    <div class="width100 hidden_yh font20 c_66" style="background:#faf5f5;text-indent:47px;height:50px;line-height:50px;border-bottom:1px solid #ddd;">
                      <fmt:formatDate value="${data.addTime}"  type="both" />订单号${data.code} 
                      
                     <!--  0.新建代发货1.已取消 2已已发货3.到收货 -->
                      <c:if test="${data.status == 0}"> 待发货</c:if>
                      <c:if test="${data.status == 1}"> 已取消</c:if>
                      <c:if test="${data.status == 2}"> 待收货</c:if>
                      <c:if test="${data.status == 3}"> 已收货</c:if>
                      
                    </div>
                    <!--之一 details -->
                    
                     <c:forEach items="${data.details}" var="chil" varStatus="l">
                          <div style="width:838px;border-bottom:1px dashed #ddd;padding-top:30px;padding-bottom:30px;" class="hidden_yh center_yh">
                            <img src="${chil.item.url1}" width="100" height="100" class="left_yh" style="padding-right: 10px">
                            <div class="left_yh" style="width:580px;">
                                <h3 class="font18 c_33 font100">${chil.item.name}</h3>
                                <p class="c_66 font16" style="margin-top:16px;">折扣:${chil.item.zk}</p>
                                <p class="red" style="margin-top:10px;">¥${chil.item.price}</p>
                            </div>
                            <div class="right_yh">
                             <c:if test="${data.status == 3}"> 
                                <a href="${ctx}/itemOrder/pj?id=${chil.itemId}" class="onfff block_yh tcenter font16 onHoverr" style="margin-top:10px;padding:6px;">去评价</a>
                            </c:if>
                            </div>
                         </div>
                     </c:forEach>
                    <!--总结-->
                    <div style="width:838px;padding-top:30px;padding-bottom:30px;" class="hidden_yh center_yh tleft">
                        <font class="font24">总金额<font class="font18 c_66">(含运费0元):</font></font><font class="red font34"><font class="font24">¥</font>${data.total}</font>
                        
                          <c:if test="${data.status == 0}"> 
                                <a href="${ctx}/itemOrder/qx?id=${data.id}" class="c_33 onHover font20 onorange right_yh" style="margin-top:">取消订单</a>
                         </c:if>
                          <c:if test="${data.status == 1}"> 
                                <a href="#" class="c_33 onHover font20 onorange right_yh" style="margin-top:">已取消</a>
                         </c:if>
                          <c:if test="${data.status == 2}"> 
                                <a href="${ctx}/itemOrder/sh?id=${data.id}" class="c_33 onHover font20 onorange right_yh" style="margin-top:">去收货</a>
                         </c:if>
                         <c:if test="${data.status == 3}"> 
                                <a href="#" class="c_33 onHover font20 onorange right_yh" style="margin-top:">已收货</a>
                         </c:if>
                    </div>
                    </div>
                    <!-- 这是一个整的   end-->
                    </c:forEach>
                </div>
                
                
                
                
                <!--待评价-->
                <div class="assess width100 hidden_yh hhD" style="display:none;">
                     <c:forEach items="${dpj}" var="data" varStatus="l">
                    <!--bottom(一条)-->
                    <div class="width100 hidden_yh">
                    <!--标题-->
                    <div class="width100 hidden_yh font20 c_66" style="background:#faf5f5;text-indent:47px;height:50px;line-height:50px;border-bottom:1px solid #ddd;">
                      <fmt:formatDate value="${data.addTime}"  type="both" />订单号${data.code} 
                      
                     <!--  0.新建代发货1.已取消 2已已发货3.到收货 -->
                      <c:if test="${data.status == 0}"> 待发货</c:if>
                      <c:if test="${data.status == 1}"> 已取消</c:if>
                      <c:if test="${data.status == 2}"> 待收货</c:if>
                      <c:if test="${data.status == 3}"> 已收货</c:if>
                      
                    </div>
                    <!--之一 details -->
                    
                     <c:forEach items="${data.details}" var="chil" varStatus="l">
                          <div style="width:838px;border-bottom:1px dashed #ddd;padding-top:30px;padding-bottom:30px;" class="hidden_yh center_yh">
                            <img src="${chil.item.url1}" width="100" height="100" class="left_yh" style="padding-right: 10px">
                            <div class="left_yh" style="width:580px;">
                                <h3 class="font18 c_33 font100">${chil.item.name}</h3>
                                <p class="c_66 font16" style="margin-top:16px;">折扣:${chil.item.zk}</p>
                                <p class="red" style="margin-top:10px;">¥${chil.item.price}</p>
                            </div>
                            <div class="right_yh">
                            
                            <c:if test="${data.status == 3}"> 
                                <a href="${ctx}/itemOrder/pj?id=${chil.itemId}" class="onfff block_yh tcenter font16 onHoverr" style="margin-top:10px;padding:6px;">去评价</a>
                            </c:if>
                           
                            </div>
                         </div>
                     </c:forEach>
                    <!--总结-->
                    <div style="width:838px;padding-top:30px;padding-bottom:30px;" class="hidden_yh center_yh tleft">
                        <font class="font24">总金额<font class="font18 c_66">(含运费0元):</font></font><font class="red font34"><font class="font24">¥</font>${data.total}</font>
                        
                          <c:if test="${data.status == 0}"> 
                                <a href="${ctx}/itemOrder/qx?id=${data.id}" class="c_33 onHover font20 onorange right_yh" style="margin-top:">取消订单</a>
                         </c:if>
                          <c:if test="${data.status == 1}"> 
                                <a href="#" class="c_33 onHover font20 onorange right_yh" style="margin-top:">已取消</a>
                         </c:if>
                          <c:if test="${data.status == 2}"> 
                                <a href="${ctx}/itemOrder/sh?id=${data.id}" class="c_33 onHover font20 onorange right_yh" style="margin-top:">去收货</a>
                         </c:if>
                          <c:if test="${data.status == 3}"> 
                                <a href="#" class="c_33 onHover font20 onorange right_yh" style="margin-top:">已收货</a>
                         </c:if>
                        <%--   --%>
                    </div>
                    </div>
                    <!-- 这是一个整的   end-->
                    </c:forEach>
                </div>
            </div>
        </div>
    </div>
</div>
<script>
$(".mG").click(function(){
    $(this).parent().parent().remove()
    })
$("#navLt span").click(function(){
    var t=$(this).index();
    $(this).addClass("slect").siblings().removeClass("slect")
    $(".hhD").eq(t).css({display:"block"}).siblings(".hhD").css({display:"none"});
    })    
</script>
</body>
</html>

项目演示地址:

个人网站:http://xiaocaoshare.com/

演示地址:

链接:https://pan.baidu.com/s/1M-cI-ECa4F8x02QLvSSBvA 
提取码:2k99

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值