@@ -177,6 +177,9 @@
font-size: 14px;
color: #AAAAAA;
}
+ &::-webkit-scrollbar {
+ display: none;
+ }
@@ -235,6 +235,12 @@
align-items: center;
z-index: 10000;
background: rgba(0, 0, 0, .6);
+ &.isPreView{
+ background:transparent;
+ .loadingTip{
+ color: #999;
.lottie{
width: 120px;
@@ -18,7 +18,7 @@ export default defineComponent({
setup(props) {
return () =>
(
- <div class={styles.loadingPop} style={{display:state.isLoading? "flex" : "none"}}>
+ <div class={[styles.loadingPop, state.isPreView && styles.isPreView]} style={{display:state.isLoading? "flex" : "none"}}>
<img class={styles.lottie} src={animGif} />
{/* <Vue3Lottie class={styles.lottie} animationData={animBg}></Vue3Lottie> */}
<div class={styles.loadingTip}>{props.tipText}</div>