-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlessons.php
43 lines (43 loc) · 1.55 KB
/
lessons.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
<head>
<title>iBlog</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
</head>
<body>
<?php include "navbar.php" ?>
<div class="header-content">
<div class="container">
<div class="header-content-title">
<h1 class="text-center" id='title'>成绩单</h1>
</div>
</div>
</div>
<div class="score-container">
<div class="container">
<table class="table table-striped ">
<thead><tr>
<th>节次\星期</th><th>星期一</th><th>星期二</th>
<th>星期三</th><th>星期四</th><th>星期五</th>
<th>星期六</th><th>星期日</th>
</tr></thead>
<tbody id="data">
<tr v-for="(data, index) in datalist">
<th>{{ 2*index+1 }}-{{ 2*index+2 }}</th>
<td>{{ data[0] }}</td><td>{{ data[1] }}</td>
<td>{{ data[2] }}</td><td>{{ data[3] }}</td>
<td>{{ data[4] }}</td><td>{{ data[5] }}</td>
<td>{{ data[6] }}</td>
</tr>
</tbody>
</table>
</div>
</div>
<?php include "script.php" ?>
<script>
$(document).ready(function(){
lessonsInit();
});
</script>
</body>
</html>