From 69839a01146d12a5ab147cd433bd961108562a89 Mon Sep 17 00:00:00 2001 From: p6jzelshw Date: Tue, 11 Apr 2023 13:21:22 +0800 Subject: [PATCH] ADD file via upload --- src/main/webapp/WEB-INF/pages/employee.jsp | 110 +++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 src/main/webapp/WEB-INF/pages/employee.jsp diff --git a/src/main/webapp/WEB-INF/pages/employee.jsp b/src/main/webapp/WEB-INF/pages/employee.jsp new file mode 100644 index 0000000..c4f2132 --- /dev/null +++ b/src/main/webapp/WEB-INF/pages/employee.jsp @@ -0,0 +1,110 @@ +<%-- + Created by IntelliJ IDEA. + User: yht + Date: 2021/5/30 + Time: 11:54 + To change this template use File | Settings | File Templates. +--%> +<%@ page contentType="text/html;charset=UTF-8" language="java" %> +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> + + + + + + + + + + + + + + + +
+
+ +
+ +
+
+ +
+
+ +
+
+ +
+ +
+
+
+ 添加 + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
员工号姓名性别邮箱生日所属部门操作
${emp.empId}${emp.name}${emp.gender == 1 ? "男" : "女"}${emp.email} + ${emp.deptName} + + +
+
+
+ +
+
+ +
+ +
+
+
+
+
+ + + + \ No newline at end of file