From 6a86bee0e84e555edf59700dfccf2fe9b5e177c6 Mon Sep 17 00:00:00 2001 From: pmpgitkly <1594615018@qq.com> Date: Fri, 28 Jun 2024 21:23:28 +0800 Subject: [PATCH] ADD file via upload --- goods_cart.jsp | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 goods_cart.jsp diff --git a/goods_cart.jsp b/goods_cart.jsp new file mode 100644 index 0000000..89f6259 --- /dev/null +++ b/goods_cart.jsp @@ -0,0 +1,85 @@ +<%@ page contentType="text/html;charset=UTF-8" language="java" %> +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> + + + + + 购物车 + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +

我的购物车

+ + + +
+
+
+ + + +
+
+

${item.value.goods.name}

+

单价: ¥ ${item.value.price}

+

数量: ${item.value.amount}

+ 增加 + 减少 + 删除 +
+
+
+
+
+ +
+
+

订单总金额: ¥ ${order.total}

+ 提交订单 +
+ + + +
+
+ + + + + + + + + + + + + + \ No newline at end of file