@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,272 @@ | |||
{ | |||
"/umi.css": "/umi.ed4fa1d0.css", | |||
"/umi.js": "/umi.8d8b8d4d.js", | |||
"/t__plugin-layout__Layout.css": "/t__plugin-layout__Layout.e1129705.chunk.css", | |||
"/t__plugin-layout__Layout.js": "/t__plugin-layout__Layout.5d0197aa.async.js", | |||
"/p__user__login.css": "/p__user__login.86a3eff2.chunk.css", | |||
"/p__user__login.js": "/p__user__login.742db7c5.async.js", | |||
"/p__card__gateAdmin.css": "/p__card__gateAdmin.124832a5.chunk.css", | |||
"/p__card__gateAdmin.js": "/p__card__gateAdmin.5e0d045d.async.js", | |||
"/p__quickStart.css": "/p__quickStart.cb2e67ac.chunk.css", | |||
"/p__quickStart.js": "/p__quickStart.5a24698e.async.js", | |||
"/p__sys__company.js": "/p__sys__company.1d7e7413.async.js", | |||
"/p__sys__companyApply.css": "/p__sys__companyApply.80ddd79c.chunk.css", | |||
"/p__sys__companyApply.js": "/p__sys__companyApply.a8740ab3.async.js", | |||
"/p__sys__paytemplate.css": "/p__sys__paytemplate.80ddd79c.chunk.css", | |||
"/p__sys__paytemplate.js": "/p__sys__paytemplate.45ef97d1.async.js", | |||
"/p__sys__org.css": "/p__sys__org.907fcb3a.chunk.css", | |||
"/p__sys__org.js": "/p__sys__org.8c0e51ef.async.js", | |||
"/p__sys__log.css": "/p__sys__log.b245b872.chunk.css", | |||
"/p__sys__log.js": "/p__sys__log.096e9a97.async.js", | |||
"/p__sys__user.css": "/p__sys__user.80ddd79c.chunk.css", | |||
"/p__sys__user.js": "/p__sys__user.e4d0e619.async.js", | |||
"/p__sys__roles.css": "/p__sys__roles.80ddd79c.chunk.css", | |||
"/p__sys__roles.js": "/p__sys__roles.4869c067.async.js", | |||
"/p__sys__menus.css": "/p__sys__menus.80ddd79c.chunk.css", | |||
"/p__sys__menus.js": "/p__sys__menus.e9738422.async.js", | |||
"/p__sys__dictionary__dictdata.js": "/p__sys__dictionary__dictdata.d61ed930.async.js", | |||
"/p__sys__dictionary__dicttype.js": "/p__sys__dictionary__dicttype.bfdabe89.async.js", | |||
"/p__sys__deviceTypeConfig.js": "/p__sys__deviceTypeConfig.bebb3353.async.js", | |||
"/p__sys__sysSettings.css": "/p__sys__sysSettings.a7e001bb.chunk.css", | |||
"/p__sys__sysSettings.js": "/p__sys__sysSettings.32067def.async.js", | |||
"/p__sys__storemanage.css": "/p__sys__storemanage.b7a7f0af.chunk.css", | |||
"/p__sys__storemanage.js": "/p__sys__storemanage.e046e3e7.async.js", | |||
"/p__applet__pageManage.css": "/p__applet__pageManage.ab14847b.chunk.css", | |||
"/p__applet__pageManage.js": "/p__applet__pageManage.b92e901e.async.js", | |||
"/p__applet__material.css": "/p__applet__material.8f885168.chunk.css", | |||
"/p__applet__material.js": "/p__applet__material.26df2b73.async.js", | |||
"/p__card__memberAccount.css": "/p__card__memberAccount.fde7eb30.chunk.css", | |||
"/p__card__memberAccount.js": "/p__card__memberAccount.2841d055.async.js", | |||
"/p__card__storedValueCard.css": "/p__card__storedValueCard.80ddd79c.chunk.css", | |||
"/p__card__storedValueCard.js": "/p__card__storedValueCard.cf7f16b7.async.js", | |||
"/p__card__gate.css": "/p__card__gate.db80797a.chunk.css", | |||
"/p__card__gate.js": "/p__card__gate.f524fe00.async.js", | |||
"/p__card__machine.css": "/p__card__machine.277eff6a.chunk.css", | |||
"/p__card__machine.js": "/p__card__machine.4e421fce.async.js", | |||
"/p__card__checkgoods.css": "/p__card__checkgoods.80ddd79c.chunk.css", | |||
"/p__card__checkgoods.js": "/p__card__checkgoods.640ca889.async.js", | |||
"/p__card__reservation.css": "/p__card__reservation.46405ca6.chunk.css", | |||
"/p__card__reservation.js": "/p__card__reservation.1b9499c8.async.js", | |||
"/p__card__reservationReport.css": "/p__card__reservationReport.a1100fd8.chunk.css", | |||
"/p__card__reservationReport.js": "/p__card__reservationReport.66ed27e6.async.js", | |||
"/p__card__enterpriseReservation.css": "/p__card__enterpriseReservation.80ddd79c.chunk.css", | |||
"/p__card__enterpriseReservation.js": "/p__card__enterpriseReservation.d56311e1.async.js", | |||
"/p__erp__basic__product.css": "/p__erp__basic__product.0306ba64.chunk.css", | |||
"/p__erp__basic__product.js": "/p__erp__basic__product.ce145e5a.async.js", | |||
"/p__erp__basic__unit.js": "/p__erp__basic__unit.220404ff.async.js", | |||
"/p__erp__basic__productType.js": "/p__erp__basic__productType.ff545472.async.js", | |||
"/p__erp__bill__receivingNote.css": "/p__erp__bill__receivingNote.80ddd79c.chunk.css", | |||
"/p__erp__bill__receivingNote.js": "/p__erp__bill__receivingNote.927c8591.async.js", | |||
"/p__erp__bill__purchaseOrder.css": "/p__erp__bill__purchaseOrder.80ddd79c.chunk.css", | |||
"/p__erp__bill__purchaseOrder.js": "/p__erp__bill__purchaseOrder.8ee54c1e.async.js", | |||
"/p__erp__stock.css": "/p__erp__stock.80ddd79c.chunk.css", | |||
"/p__erp__stock.js": "/p__erp__stock.b85a2049.async.js", | |||
"/p__bom__manage.css": "/p__bom__manage.af57affb.chunk.css", | |||
"/p__bom__manage.js": "/p__bom__manage.d69e1e6d.async.js", | |||
"/p__bom__bomtype.css": "/p__bom__bomtype.80ddd79c.chunk.css", | |||
"/p__bom__bomtype.js": "/p__bom__bomtype.8314a9ef.async.js", | |||
"/p__bom__cookingentry.css": "/p__bom__cookingentry.80ddd79c.chunk.css", | |||
"/p__bom__cookingentry.js": "/p__bom__cookingentry.fcd12ec8.async.js", | |||
"/p__goods__goods-manage.js": "/p__goods__goods-manage.2fa26909.async.js", | |||
"/p__goods__newgoods.js": "/p__goods__newgoods.8861b208.async.js", | |||
"/p__goods__goods-taste.css": "/p__goods__goods-taste.b20b12da.chunk.css", | |||
"/p__goods__goods-taste.js": "/p__goods__goods-taste.bbf3833d.async.js", | |||
"/p__goods__goods-type-manage.js": "/p__goods__goods-type-manage.7030b174.async.js", | |||
"/p__goods__goodsParentTypemanage.js": "/p__goods__goodsParentTypemanage.b7a3bb04.async.js", | |||
"/p__goods__unit.js": "/p__goods__unit.69c3b837.async.js", | |||
"/p__goods__goodsInfo.js": "/p__goods__goodsInfo.b62b97e1.async.js", | |||
"/p__goods__goodsPractice.js": "/p__goods__goodsPractice.bad5ced0.async.js", | |||
"/p__goods__goodsPracticeType.css": "/p__goods__goodsPracticeType.80ddd79c.chunk.css", | |||
"/p__goods__goodsPracticeType.js": "/p__goods__goodsPracticeType.b3eea57a.async.js", | |||
"/p__goods__goodsPracticeInfo.css": "/p__goods__goodsPracticeInfo.80ddd79c.chunk.css", | |||
"/p__goods__goodsPracticeInfo.js": "/p__goods__goodsPracticeInfo.0b38925a.async.js", | |||
"/p__store__storeType.css": "/p__store__storeType.80ddd79c.chunk.css", | |||
"/p__store__storeType.js": "/p__store__storeType.386172f1.async.js", | |||
"/p__store__storeStaff.css": "/p__store__storeStaff.80ddd79c.chunk.css", | |||
"/p__store__storeStaff.js": "/p__store__storeStaff.7b0c26b3.async.js", | |||
"/p__store__printer__Printer.css": "/p__store__printer__Printer.80ddd79c.chunk.css", | |||
"/p__store__printer__Printer.js": "/p__store__printer__Printer.c1d102b4.async.js", | |||
"/p__store__printer__printerTemplate.css": "/p__store__printer__printerTemplate.3ce60723.chunk.css", | |||
"/p__store__printer__printerTemplate.js": "/p__store__printer__printerTemplate.fda40a1d.async.js", | |||
"/p__store__storeDesktopNumber.js": "/p__store__storeDesktopNumber.830f9055.async.js", | |||
"/p__store__storeLevel.css": "/p__store__storeLevel.80ddd79c.chunk.css", | |||
"/p__store__storeLevel.js": "/p__store__storeLevel.5461e270.async.js", | |||
"/p__store__storeInfo.css": "/p__store__storeInfo.80ddd79c.chunk.css", | |||
"/p__store__storeInfo.js": "/p__store__storeInfo.ac189c35.async.js", | |||
"/p__store__storeAddGoodsInfo.css": "/p__store__storeAddGoodsInfo.80ddd79c.chunk.css", | |||
"/p__store__storeAddGoodsInfo.js": "/p__store__storeAddGoodsInfo.361f43ab.async.js", | |||
"/p__store__storeGoodsInfo.js": "/p__store__storeGoodsInfo.3a5ee02d.async.js", | |||
"/p__store__storeAdvertisement.css": "/p__store__storeAdvertisement.63cc2960.chunk.css", | |||
"/p__store__storeAdvertisement.js": "/p__store__storeAdvertisement.b07b0e9c.async.js", | |||
"/p__device__deviceType.css": "/p__device__deviceType.80ddd79c.chunk.css", | |||
"/p__device__deviceType.js": "/p__device__deviceType.7ec9fe56.async.js", | |||
"/p__device__deviceInfo.css": "/p__device__deviceInfo.80ddd79c.chunk.css", | |||
"/p__device__deviceInfo.js": "/p__device__deviceInfo.f48bac17.async.js", | |||
"/p__device__deviceFood.js": "/p__device__deviceFood.f1e584cf.async.js", | |||
"/p__device__deviceStirFryTime.js": "/p__device__deviceStirFryTime.8419737b.async.js", | |||
"/p__device__deviceBom.js": "/p__device__deviceBom.c2c93196.async.js", | |||
"/p__device__deviceStock.css": "/p__device__deviceStock.80ddd79c.chunk.css", | |||
"/p__device__deviceRecipeStock.css": "/p__device__deviceRecipeStock.80ddd79c.chunk.css", | |||
"/p__device__devicemorkmwpush.js": "/p__device__devicemorkmwpush.9b7ff245.async.js", | |||
"/p__integral__integralConfigure.css": "/p__integral__integralConfigure.80ddd79c.chunk.css", | |||
"/p__integral__integralConfigure.js": "/p__integral__integralConfigure.c399d361.async.js", | |||
"/p__integral__integralDistribute.js": "/p__integral__integralDistribute.14f54272.async.js", | |||
"/p__foodMenu__foodMenuInfo.css": "/p__foodMenu__foodMenuInfo.80ddd79c.chunk.css", | |||
"/p__foodMenu__foodMenuInfo.js": "/p__foodMenu__foodMenuInfo.00b22a9c.async.js", | |||
"/p__foodMenu__storeFoodMenu.css": "/p__foodMenu__storeFoodMenu.b7a7f0af.chunk.css", | |||
"/p__foodMenu__storeFoodMenu.js": "/p__foodMenu__storeFoodMenu.f8e62acc.async.js", | |||
"/p__foodMenu__foodMenu.js": "/p__foodMenu__foodMenu.c30a4ade.async.js", | |||
"/p__member__memberInfo.css": "/p__member__memberInfo.80ddd79c.chunk.css", | |||
"/p__member__memberInfo.js": "/p__member__memberInfo.5a08efc6.async.js", | |||
"/p__member__membertag.js": "/p__member__membertag.4b39848a.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.dbb2212c.async.js", | |||
"/p__activity__rechargeactivity.css": "/p__activity__rechargeactivity.80ddd79c.chunk.css", | |||
"/p__activity__rechargeactivity.js": "/p__activity__rechargeactivity.ae27c627.async.js", | |||
"/p__activity__activityRecord.css": "/p__activity__activityRecord.80ddd79c.chunk.css", | |||
"/p__activity__activityRecord.js": "/p__activity__activityRecord.ac26f9c2.async.js", | |||
"/p__activity__activityStart.css": "/p__activity__activityStart.55fc7c72.chunk.css", | |||
"/p__activity__activityStart.js": "/p__activity__activityStart.03142722.async.js", | |||
"/p__crm__coupon__couponInfo.css": "/p__crm__coupon__couponInfo.80ddd79c.chunk.css", | |||
"/p__crm__coupon__couponInfo.js": "/p__crm__coupon__couponInfo.2fcd52c4.async.js", | |||
"/p__crm__coupon__coupon-Batch.js": "/p__crm__coupon__coupon-Batch.47f0d255.async.js", | |||
"/p__crm__coupon__customerCoupon.css": "/p__crm__coupon__customerCoupon.80ddd79c.chunk.css", | |||
"/p__crm__coupon__customerCoupon.js": "/p__crm__coupon__customerCoupon.a855fa68.async.js", | |||
"/p__crm__coupon__paperCoupon.css": "/p__crm__coupon__paperCoupon.80ddd79c.chunk.css", | |||
"/p__crm__coupon__paperCoupon.js": "/p__crm__coupon__paperCoupon.19bdb9de.async.js", | |||
"/p__crm__coupon__goodsCoupon.js": "/p__crm__coupon__goodsCoupon.d1a90272.async.js", | |||
"/p__crm__coupon__paperCouponReport.css": "/p__crm__coupon__paperCouponReport.80ddd79c.chunk.css", | |||
"/p__crm__coupon__paperCouponReport.js": "/p__crm__coupon__paperCouponReport.313d93bb.async.js", | |||
"/p__crm__coupon__goodsCouponReport.css": "/p__crm__coupon__goodsCouponReport.80ddd79c.chunk.css", | |||
"/p__crm__coupon__goodsCouponReport.js": "/p__crm__coupon__goodsCouponReport.b61151c3.async.js", | |||
"/p__split__account.js": "/p__split__account.7df24ef1.async.js", | |||
"/p__split__FranchiseePlan.js": "/p__split__FranchiseePlan.b4984030.async.js", | |||
"/p__split__plan.js": "/p__split__plan.9bd63172.async.js", | |||
"/p__split__splitOrders.css": "/p__split__splitOrders.80ddd79c.chunk.css", | |||
"/p__split__splitOrders.js": "/p__split__splitOrders.6d44687a.async.js", | |||
"/p__refundment__orderAfterSales.css": "/p__refundment__orderAfterSales.80ddd79c.chunk.css", | |||
"/p__refundment__orderAfterSales.js": "/p__refundment__orderAfterSales.a5400a74.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.b35ec053.async.js", | |||
"/p__order__order-flow-manage.js": "/p__order__order-flow-manage.b8f4d0ce.async.js", | |||
"/p__order__order-nopay-detail.js": "/p__order__order-nopay-detail.323e43b3.async.js", | |||
"/p__order__orderDetail.css": "/p__order__orderDetail.80ddd79c.chunk.css", | |||
"/p__order__orderDetail.js": "/p__order__orderDetail.96cd32f5.async.js", | |||
"/p__order__refundOrder.js": "/p__order__refundOrder.ed5b6c83.async.js", | |||
"/p__order__salesReport.css": "/p__order__salesReport.4298ea67.chunk.css", | |||
"/p__order__salesReport.js": "/p__order__salesReport.f5db2788.async.js", | |||
"/p__order__ordersalescountbyday.css": "/p__order__ordersalescountbyday.80ddd79c.chunk.css", | |||
"/p__order__ordersalescountbyday.js": "/p__order__ordersalescountbyday.df35306e.async.js", | |||
"/p__order__DailyReport.css": "/p__order__DailyReport.25bb6810.chunk.css", | |||
"/p__order__DailyReport.js": "/p__order__DailyReport.e7e06759.async.js", | |||
"/p__order__exOrder.css": "/p__order__exOrder.80ddd79c.chunk.css", | |||
"/p__order__exOrder.js": "/p__order__exOrder.186a03c6.async.js", | |||
"/p__order__order-market-report.css": "/p__order__order-market-report.62bb373c.chunk.css", | |||
"/p__order__order-market-report.js": "/p__order__order-market-report.7f46b037.async.js", | |||
"/p__order__order-report.css": "/p__order__order-report.f8901448.chunk.css", | |||
"/p__order__order-report.js": "/p__order__order-report.14737ca3.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.759637e7.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.75dc89be.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.172548ce.async.js", | |||
"/p__order__cost-of-sales.css": "/p__order__cost-of-sales.a555d269.chunk.css", | |||
"/p__order__cost-of-sales.js": "/p__order__cost-of-sales.b1bd07eb.async.js", | |||
"/p__order__sales-gross-profit.css": "/p__order__sales-gross-profit.31cffa42.chunk.css", | |||
"/p__order__sales-gross-profit.js": "/p__order__sales-gross-profit.832c1913.async.js", | |||
"/p__order__gross-profit-store-sales.css": "/p__order__gross-profit-store-sales.fe0363be.chunk.css", | |||
"/p__order__gross-profit-store-sales.js": "/p__order__gross-profit-store-sales.82c5bcdf.async.js", | |||
"/p__stockManager__stockItem.js": "/p__stockManager__stockItem.217721f3.async.js", | |||
"/p__stockManager__stockInventory.css": "/p__stockManager__stockInventory.80ddd79c.chunk.css", | |||
"/p__stockManager__stockInventory.js": "/p__stockManager__stockInventory.0279c2c0.async.js", | |||
"/p__stockManager__stockReports.css": "/p__stockManager__stockReports.80ddd79c.chunk.css", | |||
"/p__stockManager__stockReports.js": "/p__stockManager__stockReports.d180d95c.async.js", | |||
"/p__financereport__finance.css": "/p__financereport__finance.ea072017.chunk.css", | |||
"/p__financereport__finance.js": "/p__financereport__finance.94b46fae.async.js", | |||
"/p__Welcome.css": "/p__Welcome.a2d4086e.chunk.css", | |||
"/p__Welcome.js": "/p__Welcome.56a1757a.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.e265c96a.async.js", | |||
"/p__404.css": "/p__404.b74445fb.chunk.css", | |||
"/p__404.js": "/p__404.7bdbd081.async.js", | |||
"/2664.a0296ac4.chunk.css": "/2664.a0296ac4.chunk.css", | |||
"/2664.f9ceb3c1.async.js": "/2664.f9ceb3c1.async.js", | |||
"/5429.54d3a3f3.chunk.css": "/5429.54d3a3f3.chunk.css", | |||
"/5429.0c280e31.async.js": "/5429.0c280e31.async.js", | |||
"/2339.bdbfbaf3.async.js": "/2339.bdbfbaf3.async.js", | |||
"/6487.89416762.chunk.css": "/6487.89416762.chunk.css", | |||
"/8009.d8e56eb7.async.js": "/8009.d8e56eb7.async.js", | |||
"/8928.26563c15.async.js": "/8928.26563c15.async.js", | |||
"/4107.373c2fd8.async.js": "/4107.373c2fd8.async.js", | |||
"/2323.f0e18d96.async.js": "/2323.f0e18d96.async.js", | |||
"/4332.e34c6631.async.js": "/4332.e34c6631.async.js", | |||
"/7866.5de37fd0.async.js": "/7866.5de37fd0.async.js", | |||
"/7335.1df1d163.chunk.css": "/7335.1df1d163.chunk.css", | |||
"/7335.e519791a.async.js": "/7335.e519791a.async.js", | |||
"/9597.3aaf12cb.async.js": "/9597.3aaf12cb.async.js", | |||
"/6358.93252bf8.async.js": "/6358.93252bf8.async.js", | |||
"/6587.f2bc03f5.chunk.css": "/6587.f2bc03f5.chunk.css", | |||
"/6587.92ad04ea.async.js": "/6587.92ad04ea.async.js", | |||
"/4480.e92c4184.async.js": "/4480.e92c4184.async.js", | |||
"/8151.e344b23c.async.js": "/8151.e344b23c.async.js", | |||
"/3390.a23d1d23.chunk.css": "/3390.a23d1d23.chunk.css", | |||
"/3390.9366325d.async.js": "/3390.9366325d.async.js", | |||
"/7751.8d3970bf.async.js": "/7751.8d3970bf.async.js", | |||
"/7921.0f9d6341.async.js": "/7921.0f9d6341.async.js", | |||
"/9567.307506ed.async.js": "/9567.307506ed.async.js", | |||
"/7068.fefb1cfc.chunk.css": "/7068.fefb1cfc.chunk.css", | |||
"/4374.84c7764e.chunk.css": "/4374.84c7764e.chunk.css", | |||
"/4374.c59ab6d9.async.js": "/4374.c59ab6d9.async.js", | |||
"/9396.82d7aca4.async.js": "/9396.82d7aca4.async.js", | |||
"/3315.09f1def5.chunk.css": "/3315.09f1def5.chunk.css", | |||
"/3315.a32a1a4f.async.js": "/3315.a32a1a4f.async.js", | |||
"/3667.a51bb1c9.async.js": "/3667.a51bb1c9.async.js", | |||
"/1791.3d891c89.async.js": "/1791.3d891c89.async.js", | |||
"/9669.75110ec8.async.js": "/9669.75110ec8.async.js", | |||
"/9361.2681a014.async.js": "/9361.2681a014.async.js", | |||
"/2255.a25b6bb8.async.js": "/2255.a25b6bb8.async.js", | |||
"/8764.93d0bdf6.async.js": "/8764.93d0bdf6.async.js", | |||
"/7118.e3693903.chunk.css": "/7118.e3693903.chunk.css", | |||
"/7118.bf14ecb6.async.js": "/7118.bf14ecb6.async.js", | |||
"/8321.6607b2ea.async.js": "/8321.6607b2ea.async.js", | |||
"/6486.837492aa.async.js": "/6486.837492aa.async.js", | |||
"/9464.b7a7f0af.chunk.css": "/9464.b7a7f0af.chunk.css", | |||
"/983.d8608375.async.js": "/983.d8608375.async.js", | |||
"/7679.f79a9ae6.async.js": "/7679.f79a9ae6.async.js", | |||
"/9199.d840247c.async.js": "/9199.d840247c.async.js", | |||
"/8691.53033a17.async.js": "/8691.53033a17.async.js", | |||
"/1981.b7a7f0af.chunk.css": "/1981.b7a7f0af.chunk.css", | |||
"/9645.697e668e.async.js": "/9645.697e668e.async.js", | |||
"/9357.609d4c87.async.js": "/9357.609d4c87.async.js", | |||
"/3888.c8d267bf.chunk.css": "/3888.c8d267bf.chunk.css", | |||
"/242.77baa42a.chunk.css": "/242.77baa42a.chunk.css", | |||
"/9447.d90ecffc.chunk.css": "/9447.d90ecffc.chunk.css", | |||
"/5329.502268b7.chunk.css": "/5329.502268b7.chunk.css", | |||
"/2869.b7a7f0af.chunk.css": "/2869.b7a7f0af.chunk.css", | |||
"/7013.b7a7f0af.chunk.css": "/7013.b7a7f0af.chunk.css", | |||
"/9719.b7a7f0af.chunk.css": "/9719.b7a7f0af.chunk.css", | |||
"/2383.b7a7f0af.chunk.css": "/2383.b7a7f0af.chunk.css", | |||
"/6977.b7a7f0af.chunk.css": "/6977.b7a7f0af.chunk.css", | |||
"/2125.b7a7f0af.chunk.css": "/2125.b7a7f0af.chunk.css", | |||
"/546.b7a7f0af.chunk.css": "/546.b7a7f0af.chunk.css", | |||
"/4670.1902a3a9.chunk.css": "/4670.1902a3a9.chunk.css", | |||
"/3453.fd105af1.chunk.css": "/3453.fd105af1.chunk.css", | |||
"/5754.629f22ea.async.js": "/5754.629f22ea.async.js", | |||
"/8234.f793165b.async.js": "/8234.f793165b.async.js", | |||
"/8267.48813cc4.async.js": "/8267.48813cc4.async.js", | |||
"/4658.1c951f72.async.js": "/4658.1c951f72.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,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |
@@ -0,0 +1,226 @@ | |||
<!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" /> | |||
<!-- <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=Rvf71uBzNi7rWo1bhCvzbmLTFbPihNur"></script> --> | |||
<link rel="stylesheet" href="/umi.ed4fa1d0.css" /> | |||
<script> | |||
window.routerBase = "/"; | |||
</script> | |||
<script> | |||
//! umi version: 3.5.39 | |||
</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.8d8b8d4d.js"></script> | |||
</body> | |||
</html> |