update:简化验证

This commit is contained in:
2021-03-03 16:53:55 +08:00
parent 8214973184
commit 5234d3358b
7 changed files with 27 additions and 18 deletions

View File

@@ -3,18 +3,29 @@
*@
@{
}
@model QRCodeService.Application.Queries.Link
<!DOCTYPE html>
<html>
<head>
<style>
body{
margin:0;
padding:0;
border:0;
height:100vh;
width:100%;
display:flex;
justify-content:center;
align-items:center;
font-size:3em;
}
</style>
</head>
<body>
<div>
loading...
</div>
<script>
location.href = "@Html.Raw(Model.FullUrl)"
location.href = "@Html.Raw(ViewBag.FullUrl as string)";
</script>
</body>
</html>