22 lines
637 B
HTML
22 lines
637 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>量化因子评价系统 - Demo</title>
|
||
|
|
<link rel="stylesheet" href="/static/css/demo.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<h1>量化因子评价系统</h1>
|
||
|
|
<div class="timestamp">
|
||
|
|
<div>服务端时间戳:</div>
|
||
|
|
<div class="timestamp-value" id="timestamp">
|
||
|
|
<span class="loading">加载中...</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<script src="/static/js/demo.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|