You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
707 B

10 months ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>模型和CSV文件上传</title>
</head>
<body>
<h1>上传模型和CSV文件</h1>
<form action="/upload" method="post" enctype="multipart/form-data">
<label for="groupName">组别名称:</label>
<input type="text" id="groupName" name="groupName" required><br><br>
<label for="modelFile">模型文件:</label>
<input type="file" id="modelFile" name="modelFile" required><br><br>
<label for="csvTable">CSV表:</label>
<input type="file" id="csvTable" name="csvTable" accept=".csv" required><br><br>
<input type="submit" value="上传">
</form>
</body>
</html>