diff --git a/src/main/webapp/WEB-INF/views/common/header.jsp b/src/main/webapp/WEB-INF/views/common/header.jsp new file mode 100644 index 0000000..0afa333 --- /dev/null +++ b/src/main/webapp/WEB-INF/views/common/header.jsp @@ -0,0 +1,15 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/views/common/menus.jsp b/src/main/webapp/WEB-INF/views/common/menus.jsp new file mode 100644 index 0000000..478a7d5 --- /dev/null +++ b/src/main/webapp/WEB-INF/views/common/menus.jsp @@ -0,0 +1,5 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> + + ${thirdMenu.name } + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/views/product/edit.jsp b/src/main/webapp/WEB-INF/views/product/edit.jsp new file mode 100644 index 0000000..5f50dc5 --- /dev/null +++ b/src/main/webapp/WEB-INF/views/product/edit.jsp @@ -0,0 +1,174 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@include file="../common/header.jsp"%> +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
商品分类: + +
商品标题:
商品主图: + + 上传图片 + 预览图片 +
商品价格:
商品库存:
详情描述:
+ 提交 + 返回 +
+
+
+
+
+ + + + +
+ +
+
+
+
+
+ +<%@include file="../common/footer.jsp"%> + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/views/product/list.jsp b/src/main/webapp/WEB-INF/views/product/list.jsp new file mode 100644 index 0000000..c9757fa --- /dev/null +++ b/src/main/webapp/WEB-INF/views/product/list.jsp @@ -0,0 +1,148 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> +<%@include file="../common/header.jsp"%> +
+ +
+
+ <%@include file="../common/menus.jsp"%> +
+ +
+ +
+
+ +<%@include file="../common/footer.jsp"%> + + + \ No newline at end of file