From 51c4b248f7800375e992318f98bef24afa688cb0 Mon Sep 17 00:00:00 2001 From: tfxy41905338 <1730304351@qq.com> Date: Sat, 29 Jun 2024 12:24:51 +0800 Subject: [PATCH] Add goods_cart --- goods_cart | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 goods_cart diff --git a/goods_cart b/goods_cart new file mode 100644 index 0000000..b52cfdf --- /dev/null +++ b/goods_cart @@ -0,0 +1,59 @@ +<%@ 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