@@ -7,7 +7,6 @@ | |||
_roadhog-api-doc | |||
# production | |||
/dist | |||
/.vscode | |||
# misc | |||
@@ -0,0 +1 @@ | |||
preview.pro.ant.design |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,205 @@ | |||
{ | |||
"/umi.css": "/umi.9887ccb0.css", | |||
"/umi.js": "/umi.f0731597.js", | |||
"/t__plugin-layout__Layout.css": "/t__plugin-layout__Layout.e1129705.chunk.css", | |||
"/t__plugin-layout__Layout.js": "/t__plugin-layout__Layout.cd650b7b.async.js", | |||
"/p__user__login.css": "/p__user__login.be4c47a7.chunk.css", | |||
"/p__user__login.js": "/p__user__login.4a254876.async.js", | |||
"/p__sys__company.js": "/p__sys__company.8a461af4.async.js", | |||
"/p__sys__org.js": "/p__sys__org.38892efa.async.js", | |||
"/p__sys__log.css": "/p__sys__log.b245b872.chunk.css", | |||
"/p__sys__log.js": "/p__sys__log.fae4b423.async.js", | |||
"/p__sys__user.css": "/p__sys__user.80ddd79c.chunk.css", | |||
"/p__sys__user.js": "/p__sys__user.aedeb678.async.js", | |||
"/p__sys__roles.css": "/p__sys__roles.80ddd79c.chunk.css", | |||
"/p__sys__roles.js": "/p__sys__roles.91d1b850.async.js", | |||
"/p__sys__menus.css": "/p__sys__menus.80ddd79c.chunk.css", | |||
"/p__sys__menus.js": "/p__sys__menus.efe57a2a.async.js", | |||
"/p__sys__dictionary__dictdata.js": "/p__sys__dictionary__dictdata.d665924a.async.js", | |||
"/p__sys__dictionary__dicttype.js": "/p__sys__dictionary__dicttype.ad5e0a10.async.js", | |||
"/p__sys__sysSettings.css": "/p__sys__sysSettings.a7e001bb.chunk.css", | |||
"/p__sys__sysSettings.js": "/p__sys__sysSettings.c22c40ef.async.js", | |||
"/p__sys__storemanage.css": "/p__sys__storemanage.11fa480c.chunk.css", | |||
"/p__sys__storemanage.js": "/p__sys__storemanage.cd466858.async.js", | |||
"/p__erp__basic__product.css": "/p__erp__basic__product.0306ba64.chunk.css", | |||
"/p__erp__basic__product.js": "/p__erp__basic__product.2eab28e3.async.js", | |||
"/p__erp__basic__unit.js": "/p__erp__basic__unit.9fcdb4bf.async.js", | |||
"/p__erp__basic__productType.js": "/p__erp__basic__productType.7381d6f5.async.js", | |||
"/p__erp__bill__receivingNote.css": "/p__erp__bill__receivingNote.80ddd79c.chunk.css", | |||
"/p__erp__bill__receivingNote.js": "/p__erp__bill__receivingNote.cdd0a873.async.js", | |||
"/p__erp__bill__purchaseOrder.css": "/p__erp__bill__purchaseOrder.80ddd79c.chunk.css", | |||
"/p__erp__bill__purchaseOrder.js": "/p__erp__bill__purchaseOrder.c4cf18e4.async.js", | |||
"/p__erp__stock.css": "/p__erp__stock.80ddd79c.chunk.css", | |||
"/p__erp__stock.js": "/p__erp__stock.10417d63.async.js", | |||
"/p__bom__manage.css": "/p__bom__manage.af57affb.chunk.css", | |||
"/p__bom__manage.js": "/p__bom__manage.57dcdd62.async.js", | |||
"/p__bom__bomtype.css": "/p__bom__bomtype.80ddd79c.chunk.css", | |||
"/p__bom__bomtype.js": "/p__bom__bomtype.810d87dd.async.js", | |||
"/p__bom__push.js": "/p__bom__push.ead42041.async.js", | |||
"/p__goods__goods-manage.js": "/p__goods__goods-manage.af310951.async.js", | |||
"/p__goods__newgoods.js": "/p__goods__newgoods.a5399580.async.js", | |||
"/p__goods__goods-taste.css": "/p__goods__goods-taste.b20b12da.chunk.css", | |||
"/p__goods__goods-taste.js": "/p__goods__goods-taste.b8431adf.async.js", | |||
"/p__goods__goods-type-manage.js": "/p__goods__goods-type-manage.117c8b62.async.js", | |||
"/p__goods__goodsParentTypemanage.js": "/p__goods__goodsParentTypemanage.3a3a95a9.async.js", | |||
"/p__goods__unit.js": "/p__goods__unit.cbcabdf7.async.js", | |||
"/p__goods__goodsInfo.js": "/p__goods__goodsInfo.df8cc1d3.async.js", | |||
"/p__goods__goodsPractice.js": "/p__goods__goodsPractice.a96fe5ec.async.js", | |||
"/p__goods__goodsPracticeType.css": "/p__goods__goodsPracticeType.80ddd79c.chunk.css", | |||
"/p__goods__goodsPracticeType.js": "/p__goods__goodsPracticeType.e1771028.async.js", | |||
"/p__goods__goodsPracticeInfo.css": "/p__goods__goodsPracticeInfo.80ddd79c.chunk.css", | |||
"/p__goods__goodsPracticeInfo.js": "/p__goods__goodsPracticeInfo.44918434.async.js", | |||
"/p__store__storeType.css": "/p__store__storeType.80ddd79c.chunk.css", | |||
"/p__store__storeType.js": "/p__store__storeType.cd36cbbf.async.js", | |||
"/p__store__printer__Printer.css": "/p__store__printer__Printer.d97bf0aa.chunk.css", | |||
"/p__store__printer__Printer.js": "/p__store__printer__Printer.5e3d5e85.async.js", | |||
"/p__store__printer__printerTemplate.css": "/p__store__printer__printerTemplate.11fa480c.chunk.css", | |||
"/p__store__printer__printerTemplate.js": "/p__store__printer__printerTemplate.1b3b9198.async.js", | |||
"/p__store__storeDesktopNumber.js": "/p__store__storeDesktopNumber.572c8e5f.async.js", | |||
"/p__store__storeLevel.css": "/p__store__storeLevel.80ddd79c.chunk.css", | |||
"/p__store__storeLevel.js": "/p__store__storeLevel.65862dc9.async.js", | |||
"/p__store__storeInfo.css": "/p__store__storeInfo.80ddd79c.chunk.css", | |||
"/p__store__storeInfo.js": "/p__store__storeInfo.6576ca65.async.js", | |||
"/p__store__storeAddGoodsInfo.css": "/p__store__storeAddGoodsInfo.80ddd79c.chunk.css", | |||
"/p__store__storeAddGoodsInfo.js": "/p__store__storeAddGoodsInfo.3eb30bb6.async.js", | |||
"/p__store__storeGoodsInfo.js": "/p__store__storeGoodsInfo.3b88aaa7.async.js", | |||
"/p__store__storeAdvertisement.css": "/p__store__storeAdvertisement.63cc2960.chunk.css", | |||
"/p__store__storeAdvertisement.js": "/p__store__storeAdvertisement.23588e66.async.js", | |||
"/p__device__deviceType.css": "/p__device__deviceType.80ddd79c.chunk.css", | |||
"/p__device__deviceType.js": "/p__device__deviceType.f8761f67.async.js", | |||
"/p__device__deviceInfo.css": "/p__device__deviceInfo.80ddd79c.chunk.css", | |||
"/p__device__deviceInfo.js": "/p__device__deviceInfo.63a0991b.async.js", | |||
"/p__device__deviceFood.js": "/p__device__deviceFood.0ebadd97.async.js", | |||
"/p__device__deviceBom.js": "/p__device__deviceBom.abb9a5b1.async.js", | |||
"/p__device__deviceStock.css": "/p__device__deviceStock.80ddd79c.chunk.css", | |||
"/p__device__deviceRecipeStock.css": "/p__device__deviceRecipeStock.80ddd79c.chunk.css", | |||
"/p__integral__integralConfigure.css": "/p__integral__integralConfigure.80ddd79c.chunk.css", | |||
"/p__integral__integralConfigure.js": "/p__integral__integralConfigure.441709d3.async.js", | |||
"/p__integral__integralDistribute.js": "/p__integral__integralDistribute.17a85273.async.js", | |||
"/p__foodMenu__foodMenuInfo.css": "/p__foodMenu__foodMenuInfo.80ddd79c.chunk.css", | |||
"/p__foodMenu__foodMenuInfo.js": "/p__foodMenu__foodMenuInfo.2853cdbb.async.js", | |||
"/p__foodMenu__storeFoodMenu.css": "/p__foodMenu__storeFoodMenu.11fa480c.chunk.css", | |||
"/p__foodMenu__storeFoodMenu.js": "/p__foodMenu__storeFoodMenu.56ac57f8.async.js", | |||
"/p__foodMenu__foodMenu.js": "/p__foodMenu__foodMenu.e90fbd98.async.js", | |||
"/p__member__memberInfo.css": "/p__member__memberInfo.80ddd79c.chunk.css", | |||
"/p__member__memberInfo.js": "/p__member__memberInfo.dc1e3ba8.async.js", | |||
"/p__member__membertag.js": "/p__member__membertag.a6e10299.async.js", | |||
"/p__member__memberAnalysis.css": "/p__member__memberAnalysis.cc76a03c.chunk.css", | |||
"/p__member__memberAnalysis.js": "/p__member__memberAnalysis.7f1765d7.async.js", | |||
"/p__activity__activityInfo.js": "/p__activity__activityInfo.645c6f8a.async.js", | |||
"/p__activity__activityRecord.css": "/p__activity__activityRecord.80ddd79c.chunk.css", | |||
"/p__activity__activityRecord.js": "/p__activity__activityRecord.d62f94b4.async.js", | |||
"/p__crm__coupon__couponInfo.css": "/p__crm__coupon__couponInfo.80ddd79c.chunk.css", | |||
"/p__crm__coupon__couponInfo.js": "/p__crm__coupon__couponInfo.565683e5.async.js", | |||
"/p__crm__coupon__coupon-Batch.js": "/p__crm__coupon__coupon-Batch.b1c7604d.async.js", | |||
"/p__crm__coupon__customerCoupon.css": "/p__crm__coupon__customerCoupon.80ddd79c.chunk.css", | |||
"/p__crm__coupon__customerCoupon.js": "/p__crm__coupon__customerCoupon.646fc6c3.async.js", | |||
"/p__split__account.js": "/p__split__account.adeacb06.async.js", | |||
"/p__split__FranchiseePlan.js": "/p__split__FranchiseePlan.5ba26a49.async.js", | |||
"/p__split__plan.js": "/p__split__plan.b9efe9c0.async.js", | |||
"/p__split__splitOrders.css": "/p__split__splitOrders.80ddd79c.chunk.css", | |||
"/p__split__splitOrders.js": "/p__split__splitOrders.302e360c.async.js", | |||
"/p__refundment__orderAfterSales.css": "/p__refundment__orderAfterSales.80ddd79c.chunk.css", | |||
"/p__refundment__orderAfterSales.js": "/p__refundment__orderAfterSales.672aba6d.async.js", | |||
"/p__order__order-summary-manage.css": "/p__order__order-summary-manage.80ddd79c.chunk.css", | |||
"/p__order__order-summary-manage.js": "/p__order__order-summary-manage.04959647.async.js", | |||
"/p__order__order-flow-manage.js": "/p__order__order-flow-manage.7eba5eb1.async.js", | |||
"/p__order__orderDetail.css": "/p__order__orderDetail.80ddd79c.chunk.css", | |||
"/p__order__orderDetail.js": "/p__order__orderDetail.09fd4f5e.async.js", | |||
"/p__order__ordersalescountbyday.css": "/p__order__ordersalescountbyday.80ddd79c.chunk.css", | |||
"/p__order__ordersalescountbyday.js": "/p__order__ordersalescountbyday.f99ac93a.async.js", | |||
"/p__order__exOrder.css": "/p__order__exOrder.80ddd79c.chunk.css", | |||
"/p__order__exOrder.js": "/p__order__exOrder.9e6e8084.async.js", | |||
"/p__order__order-market-report.css": "/p__order__order-market-report.72b61261.chunk.css", | |||
"/p__order__order-market-report.js": "/p__order__order-market-report.93f6f9b7.async.js", | |||
"/p__order__order-report.css": "/p__order__order-report.a21dae65.chunk.css", | |||
"/p__order__order-report.js": "/p__order__order-report.700bd1f1.async.js", | |||
"/p__order__order-report-detail.css": "/p__order__order-report-detail.8f08249b.chunk.css", | |||
"/p__order__order-report-detail.js": "/p__order__order-report-detail.604e77a5.async.js", | |||
"/p__order__order-revenue-statement.css": "/p__order__order-revenue-statement.85dfd643.chunk.css", | |||
"/p__order__order-revenue-statement.js": "/p__order__order-revenue-statement.a29f8977.async.js", | |||
"/p__order__order-product-report.css": "/p__order__order-product-report.a1f065c4.chunk.css", | |||
"/p__order__order-product-report.js": "/p__order__order-product-report.cda8a8c1.async.js", | |||
"/p__order__order-member-statement.css": "/p__order__order-member-statement.2238a84a.chunk.css", | |||
"/p__order__order-member-statement.js": "/p__order__order-member-statement.efefd1a6.async.js", | |||
"/p__order__cost-of-sales.css": "/p__order__cost-of-sales.9ae0085e.chunk.css", | |||
"/p__order__cost-of-sales.js": "/p__order__cost-of-sales.aa0e66c2.async.js", | |||
"/p__order__sales-gross-profit.css": "/p__order__sales-gross-profit.6aa08ab7.chunk.css", | |||
"/p__order__sales-gross-profit.js": "/p__order__sales-gross-profit.f0dc5c3d.async.js", | |||
"/p__order__gross-profit-store-sales.css": "/p__order__gross-profit-store-sales.88566727.chunk.css", | |||
"/p__order__gross-profit-store-sales.js": "/p__order__gross-profit-store-sales.87d06032.async.js", | |||
"/p__stockManager__stockItem.js": "/p__stockManager__stockItem.6758e1f6.async.js", | |||
"/p__stockManager__stockInventory.css": "/p__stockManager__stockInventory.80ddd79c.chunk.css", | |||
"/p__stockManager__stockInventory.js": "/p__stockManager__stockInventory.47d18fc0.async.js", | |||
"/p__stockManager__stockReports.css": "/p__stockManager__stockReports.80ddd79c.chunk.css", | |||
"/p__stockManager__stockReports.js": "/p__stockManager__stockReports.3d57a76f.async.js", | |||
"/p__financereport__finance.css": "/p__financereport__finance.ea072017.chunk.css", | |||
"/p__financereport__finance.js": "/p__financereport__finance.f848f772.async.js", | |||
"/p__Welcome.css": "/p__Welcome.a2d4086e.chunk.css", | |||
"/p__Welcome.js": "/p__Welcome.045d0c63.async.js", | |||
"/p__test__update.css": "/p__test__update.5b491966.chunk.css", | |||
"/p__test__update.js": "/p__test__update.4360eb9b.async.js", | |||
"/p__test.css": "/p__test.2fe21f78.chunk.css", | |||
"/p__test.js": "/p__test.8f18e899.async.js", | |||
"/p__404.css": "/p__404.b74445fb.chunk.css", | |||
"/p__404.js": "/p__404.7bdbd081.async.js", | |||
"/6342.a0296ac4.chunk.css": "/6342.a0296ac4.chunk.css", | |||
"/6342.9705c27e.async.js": "/6342.9705c27e.async.js", | |||
"/5223.e838a773.async.js": "/5223.e838a773.async.js", | |||
"/5372.e8016267.chunk.css": "/5372.e8016267.chunk.css", | |||
"/5372.b15eef5f.async.js": "/5372.b15eef5f.async.js", | |||
"/7552.ee3e421b.async.js": "/7552.ee3e421b.async.js", | |||
"/1069.89416762.chunk.css": "/1069.89416762.chunk.css", | |||
"/8009.3fe2069c.async.js": "/8009.3fe2069c.async.js", | |||
"/4107.cd3249d6.async.js": "/4107.cd3249d6.async.js", | |||
"/5630.beee018d.chunk.css": "/5630.beee018d.chunk.css", | |||
"/5630.6da7a779.async.js": "/5630.6da7a779.async.js", | |||
"/8980.4d0ed55f.chunk.css": "/8980.4d0ed55f.chunk.css", | |||
"/8980.770a4cfc.async.js": "/8980.770a4cfc.async.js", | |||
"/9597.f85bc708.async.js": "/9597.f85bc708.async.js", | |||
"/237.b4472596.async.js": "/237.b4472596.async.js", | |||
"/6358.d2e56356.async.js": "/6358.d2e56356.async.js", | |||
"/5092.c36f8830.chunk.css": "/5092.c36f8830.chunk.css", | |||
"/5092.cd9b5274.async.js": "/5092.cd9b5274.async.js", | |||
"/8151.e344b23c.async.js": "/8151.e344b23c.async.js", | |||
"/7751.da6ef122.async.js": "/7751.da6ef122.async.js", | |||
"/7921.bccee292.async.js": "/7921.bccee292.async.js", | |||
"/8321.fefb1cfc.chunk.css": "/8321.fefb1cfc.chunk.css", | |||
"/5806.3290b24d.chunk.css": "/5806.3290b24d.chunk.css", | |||
"/5806.57754f7f.async.js": "/5806.57754f7f.async.js", | |||
"/9396.fb293f3a.async.js": "/9396.fb293f3a.async.js", | |||
"/2400.09f1def5.chunk.css": "/2400.09f1def5.chunk.css", | |||
"/2400.c57eecc5.async.js": "/2400.c57eecc5.async.js", | |||
"/3667.a51bb1c9.async.js": "/3667.a51bb1c9.async.js", | |||
"/1791.1de7bedc.async.js": "/1791.1de7bedc.async.js", | |||
"/9361.2681a014.async.js": "/9361.2681a014.async.js", | |||
"/2255.3b04e662.async.js": "/2255.3b04e662.async.js", | |||
"/9669.75110ec8.async.js": "/9669.75110ec8.async.js", | |||
"/5427.e3693903.chunk.css": "/5427.e3693903.chunk.css", | |||
"/5427.a343a9c3.async.js": "/5427.a343a9c3.async.js", | |||
"/6486.837492aa.async.js": "/6486.837492aa.async.js", | |||
"/3679.db443652.async.js": "/3679.db443652.async.js", | |||
"/3682.fd105af1.chunk.css": "/3682.fd105af1.chunk.css", | |||
"/2946.69dedb3f.async.js": "/2946.69dedb3f.async.js", | |||
"/2669.502268b7.chunk.css": "/2669.502268b7.chunk.css", | |||
"/2669.ad29d5b1.async.js": "/2669.ad29d5b1.async.js", | |||
"/1283.77baa42a.chunk.css": "/1283.77baa42a.chunk.css", | |||
"/7913.d90ecffc.chunk.css": "/7913.d90ecffc.chunk.css", | |||
"/5284.11fa480c.chunk.css": "/5284.11fa480c.chunk.css", | |||
"/1915.11fa480c.chunk.css": "/1915.11fa480c.chunk.css", | |||
"/9130.11fa480c.chunk.css": "/9130.11fa480c.chunk.css", | |||
"/5081.11fa480c.chunk.css": "/5081.11fa480c.chunk.css", | |||
"/3995.1902a3a9.chunk.css": "/3995.1902a3a9.chunk.css", | |||
"/5754.597aadef.async.js": "/5754.597aadef.async.js", | |||
"/8234.ac9b4a50.async.js": "/8234.ac9b4a50.async.js", | |||
"/8267.77b2bbc1.async.js": "/8267.77b2bbc1.async.js", | |||
"/4658.ab0fc940.async.js": "/4658.ab0fc940.async.js", | |||
"/public/logo.png": "/logo.png", | |||
"/public/logo.svg": "/logo.svg", | |||
"/public/icons/icon-512x512.png": "/icons/icon-512x512.png", | |||
"/public/favicon.ico": "/favicon.ico", | |||
"/public/icons/icon-192x192.png": "/icons/icon-192x192.png", | |||
"/public/icons/icon-128x128.png": "/icons/icon-128x128.png", | |||
"/public/pro_icon.svg": "/pro_icon.svg", | |||
"/public/CNAME": "/CNAME" | |||
} |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,225 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta | |||
name="keywords" | |||
content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, console, homepage, out-of-the-box, middle and back office, solution, component library" | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
An out-of-box UI solution for enterprise applications as a React boilerplate." | |||
/> | |||
<meta | |||
name="description" | |||
content=" | |||
Out-of-the-box mid-stage front-end/design solution." | |||
/> | |||
<meta | |||
name="viewport" | |||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | |||
/> | |||
<title>Ant Design Pro</title> | |||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | |||
<link rel="stylesheet" href="/umi.9887ccb0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.41 | |||
</script> | |||
</head> | |||
<body> | |||
<noscript>Out-of-the-box mid-stage front/design solution!</noscript> | |||
<div id="root"> | |||
<style> | |||
html, | |||
body, | |||
#root { | |||
height: 100%; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
#root { | |||
background-repeat: no-repeat; | |||
background-size: 100% auto; | |||
} | |||
.page-loading-warp { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
padding: 98px; | |||
} | |||
.ant-spin { | |||
position: absolute; | |||
display: none; | |||
-webkit-box-sizing: border-box; | |||
box-sizing: border-box; | |||
margin: 0; | |||
padding: 0; | |||
color: rgba(0, 0, 0, 0.65); | |||
color: #1890ff; | |||
font-size: 14px; | |||
font-variant: tabular-nums; | |||
line-height: 1.5; | |||
text-align: center; | |||
list-style: none; | |||
opacity: 0; | |||
-webkit-transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: -webkit-transform 0.3s | |||
cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), | |||
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); | |||
-webkit-font-feature-settings: "tnum"; | |||
font-feature-settings: "tnum"; | |||
} | |||
.ant-spin-spinning { | |||
position: static; | |||
display: inline-block; | |||
opacity: 1; | |||
} | |||
.ant-spin-dot { | |||
position: relative; | |||
display: inline-block; | |||
width: 20px; | |||
height: 20px; | |||
font-size: 20px; | |||
} | |||
.ant-spin-dot-item { | |||
position: absolute; | |||
display: block; | |||
width: 9px; | |||
height: 9px; | |||
background-color: #1890ff; | |||
border-radius: 100%; | |||
-webkit-transform: scale(0.75); | |||
-ms-transform: scale(0.75); | |||
transform: scale(0.75); | |||
-webkit-transform-origin: 50% 50%; | |||
-ms-transform-origin: 50% 50%; | |||
transform-origin: 50% 50%; | |||
opacity: 0.3; | |||
-webkit-animation: antspinmove 1s infinite linear alternate; | |||
animation: antSpinMove 1s infinite linear alternate; | |||
} | |||
.ant-spin-dot-item:nth-child(1) { | |||
top: 0; | |||
left: 0; | |||
} | |||
.ant-spin-dot-item:nth-child(2) { | |||
top: 0; | |||
right: 0; | |||
-webkit-animation-delay: 0.4s; | |||
animation-delay: 0.4s; | |||
} | |||
.ant-spin-dot-item:nth-child(3) { | |||
right: 0; | |||
bottom: 0; | |||
-webkit-animation-delay: 0.8s; | |||
animation-delay: 0.8s; | |||
} | |||
.ant-spin-dot-item:nth-child(4) { | |||
bottom: 0; | |||
left: 0; | |||
-webkit-animation-delay: 1.2s; | |||
animation-delay: 1.2s; | |||
} | |||
.ant-spin-dot-spin { | |||
-webkit-transform: rotate(45deg); | |||
-ms-transform: rotate(45deg); | |||
transform: rotate(45deg); | |||
-webkit-animation: antrotate 1.2s infinite linear; | |||
animation: antRotate 1.2s infinite linear; | |||
} | |||
.ant-spin-lg .ant-spin-dot { | |||
width: 32px; | |||
height: 32px; | |||
font-size: 32px; | |||
} | |||
.ant-spin-lg .ant-spin-dot i { | |||
width: 14px; | |||
height: 14px; | |||
} | |||
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |||
.ant-spin-blur { | |||
background: #fff; | |||
opacity: 0.5; | |||
} | |||
} | |||
@-webkit-keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@keyframes antSpinMove { | |||
to { | |||
opacity: 1; | |||
} | |||
} | |||
@-webkit-keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
@keyframes antRotate { | |||
to { | |||
-webkit-transform: rotate(405deg); | |||
transform: rotate(405deg); | |||
} | |||
} | |||
</style> | |||
<div | |||
style=" | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
height: 100%; | |||
min-height: 420px; | |||
" | |||
> | |||
<img src="/pro_icon.svg" alt="logo" width="256" /> | |||
<div class="page-loading-warp"> | |||
<div class="ant-spin ant-spin-lg ant-spin-spinning"> | |||
<span class="ant-spin-dot ant-spin-dot-spin" | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i | |||
></span> | |||
</div> | |||
</div> | |||
<div | |||
style="display: flex; align-items: center; justify-content: center" | |||
> | |||
<img | |||
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" | |||
width="32" | |||
style="margin-right: 8px" | |||
/> | |||
Ant Design | |||
</div> | |||
</div> | |||
</div> | |||
<script src="/umi.f0731597.js"></script> | |||
</body> | |||
</html> |