12.7

发布时间 2023-12-18 18:49:41作者: new菜鸟
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<h1></h1>
<form action="worker66.jsp" method="post">
<label for="id">报销编号(2019开头):</label>
<input type="text" name="id" id="id" readonly>
<br><br>

<label for="name">员工姓名:</label>
<input type="text" name="name" id="name" required>
<br><br>
<label for="department">部门:</label>
<input type="text" name="department" id="department" required>
<br><br>

<label for="destination">目的地:</label>
<input type="text" name="destination" id="destination" required>
<br><br>

<label for="departuredate">出发日期:</label>
<input type="text" name="departuredate" id="departuredate" required>
<br><br>

<label for="returndate">返回日期:</label>
<input type="text" name="returndate" id="returndate" required>
<br><br>

<label for="Reason">出差事由:</label>
<input type="text" name="Reason" id="Reason" required>
<br><br>

<label for="Startfare">出发车费:</label>
<input type="text" name="Startfare" id="Startfare" required>
<br><br>

<label for="Returnfare">返回车费:</label>
<input type="text" name="Returnfare" id="Returnfare" required>
<br><br>

<label for="foodallowance">伙食补助:</label>
<input type="text" name="foodallowance" id="foodallowance" required>
<br><br>


<label for="localtrans">公杂补助:</label>
<input type="text" name="localtrans" id="localtrans" required>
<br><br>
<label for="Accommodation">住宿费:</label>
<input type="text" name="Accommodation" id="Accommodation" required>
<br><br>

<label for="totalamount">总金额:</label>
<input type="text" name="totalamount" id="totalamount" required>
<br><br>


<input type="submit" value="添加">
</form>
</body>
</html>