NCNU-Scholarship/templates/audit.html
2024-07-06 15:21:03 +08:00

105 lines
4.3 KiB
HTML

<!DOCTYPE html>
<html>
<link href="/css/audit.css" rel="stylesheet">
<head>
<title>國立暨南國際大學資管系獎學金審核表</title>
</head>
<body>
<h1 align="center">國立暨南國際大學資管系獎學金審核表</h1>
<div id="assistant">
<div>
<label>系所助理:<span id="assistant_name"></span></label>
</div>
<br>
<div>
<label>選擇要審核的學號</label>
<select id="student_id_select">
<option value="">請選擇</option>
</select>
</div>
<br>
<fieldset>
<table border="1">
<tr>
<td>
<h2 align="center">申請資料</h2>
<table id="application_table" border="1">
<tr>
<td>申請編號</td>
<td>申請日期</td>
<td>申請人學號</td>
<td>申請人姓名</td>
</tr>
</table>
</td>
<td>
<h2 align="center">申請詳細資訊</h2>
<div id="application_info"></div>
<table id="application_detail" border="1">
</table>
</td>
<td>
<h2 align="center">申請審核</h2>
<h3>證明文件是否備齊</h3>
<div>
<label>
<input type="radio" name="doc_checkbox" id="doc_checkbox_yes"/>
</label>
<label>
<input type="radio" name="doc_checkbox" id="doc_checkbox_no"/>
</label>
,尚須補繳:<input type="text" id="missing_docs"/>
</div>
<h2>學生事務委員會審核結果</h2>
<div>
<input type="radio" name="passed" id="passed">
<label ></label>
會議名稱("學期-次數"):<input type="text" id="passedTimes" style="width: 50px;">,核發獎學金
<input type="number" id="scholarshipAmount" style="width: 100px;">
<br>
<blockquote>
<div >
<label>通過日期:</label>
<input type="date" id="passed_date">
</div>
</blockquote>
</div>
<div>
<input type="radio" name="passed" id="notPassed">
<label>未通過</label>
</div>
<br>
<div>
<label for="noSupportProof"> 未獲補助證明檔案繳交處:</label>
<input type="file" id="noSupportProof" accept=".pdf, .doc, .docx, .jpg, .jpeg, .png">
</div>
<br></br>
<button onclick="sendReviewResult()">送出審核結果</button>
</td>
</tr>
</table>
</fieldset>
<br>
<fieldset>
<h2 align="center">審核區</h2>
<table id="audit_table" border="1">
</table>
<form id="audit_item" border="1">
</form></fieldset>
</body>
<script src="https://cdn.jsdelivr.net/npm/axios@1.6.7/dist/axios.min.js"></script>
<script src = "/js/audit.js"></script>
</html>