first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
GET http://127.0.0.1:3000/api/json/tvInfo HTTP/1.1
# POST http://127.0.0.1:3030/home/tab HTTP/1.1
# {
# thing_type:1,
# thing_category:-1,
# page:1
# }

View File

@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>封装map</title>
</head>
<body>
</body>
<script>
function a(callback) {
callback(v)
return v*3
}
var c = a( function (v) {
return "v"
})
$("body").insertAdjacentHTML("beforeend",
`
<ul class="footer top">
<li>
<a class="active" href="./index.html">
<i class="iconfont icon-home "></i>
<p>首页</p>
</a>
</li>
<li>
<a href="./mechanism.html">
<i class="iconfont icon-jigou"></i>
<p>机构</p>
</a>
</li>
<li>
<a href="./model.html">
<i class="iconfont icon-me"></i>
<p>模特</p>
</a>
</li>
<li>
<a href="./me.html">
<i class="iconfont icon-wo"></i>
<p>我的</p>
</a>
</li>
</ul>
`
)
</script>
</html>