53 lines
1.9 KiB
HTML
53 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{.TableAlias}} - 数据管理</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="bg-gray-50">
|
|
<div class="container mx-auto px-4 py-8">
|
|
<h1 class="text-3xl font-bold mb-6">{{.TableAlias}}</h1>
|
|
|
|
{{if gt (len .Data) 0}}
|
|
<div class="bg-white rounded-lg shadow overflow-hidden">
|
|
<table class="min-w-full divide-y divide-gray-200">
|
|
<thead class="bg-gray-50">
|
|
<tr>
|
|
{{range .Columns}}
|
|
{{if .ShowInList}}
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">
|
|
{{.Alias}}
|
|
</th>
|
|
{{end}}
|
|
{{end}}
|
|
</tr>
|
|
</thead>
|
|
<tbody class="bg-white divide-y divide-gray-200">
|
|
{{range $row := .Data}}
|
|
<tr class="hover:bg-gray-50">
|
|
{{range $col := $.Columns}}
|
|
{{if $col.ShowInList}}
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
|
|
{{index $row $col.Name}}
|
|
</td>
|
|
{{end}}
|
|
{{end}}
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{{else}}
|
|
<div class="text-center py-8">
|
|
<p class="text-gray-500">暂无数据</p>
|
|
</div>
|
|
{{end}}
|
|
|
|
<div class="mt-4 text-sm text-gray-600">
|
|
总计: {{.Total}} 条记录
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |