diff --git a/rc-busness/assets/css/discount.less b/rc-busness/assets/css/discount.less index f4b5552a..0179576e 100644 --- a/rc-busness/assets/css/discount.less +++ b/rc-busness/assets/css/discount.less @@ -275,6 +275,7 @@ margin-top: 8px; justify-content: end; padding-right: 17px; margin-bottom: 8px; + float: right; } .ts-standard-btn{ diff --git a/rc-busness/assets/css/global.less b/rc-busness/assets/css/global.less index 40b65189..729c275f 100644 --- a/rc-busness/assets/css/global.less +++ b/rc-busness/assets/css/global.less @@ -4,6 +4,48 @@ body{ line-height: 1.5; color: #666; } +.fade-enter, +.fade-leave-active { + opacity: 0; +} +.userloding { + position: fixed; + left: 50%; + margin-left: -1.56rem; + top: 50%; + margin-top: -3.75rem; + background: url(../image/onloading.png) center center no-repeat; + width: 3.12rem; + background-size: contain; + height: 7.5rem; + z-index: 1000; + animation: rolling 4s infinite; + -webkit-animation:rolling 4s infinite; +} + +@keyframe rolling +{ + from{ + transform: rotateZ(0deg); + } + to{ + transform: rotate(360deg); + } +} +@-webkit-keyframes rolling +{ + from{ + transform: rotateZ(0deg); + } + to{ + transform: rotate(360deg); + } +} + +.fade-enter-active, +.fade-leave-active { + transition: opacity 0.5s; +} //用户光点 .rc-screen-reader{ width: 0.81rem; diff --git a/rc-busness/assets/image/onloading.png b/rc-busness/assets/image/onloading.png new file mode 100644 index 00000000..e55f1645 Binary files /dev/null and b/rc-busness/assets/image/onloading.png differ