2023-09-06 14:18:52 +08:00

73 lines
1.0 KiB
Vue

<template>
<view class="">
<view class="box">
<view class="">
<u--image :showLoading="true" src="/static/img/contract/ok_b.png" width="150rpx" height="150rpx"
mode="aspectFill">
</u--image>
</view>
<view class="info">
生成合同成功,等待风控部审核 <text class="dots">...</text>
</view>
</view>
</view>
</template>
<script>
export default {
onLoad() {
setTimeout(() => {
uni.redirectTo({
url: '/subpkg/property/index'
})
}, 2000)
}
}
</script>
<style lang="scss" scoped>
.box {
// background-color: red;
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
margin-top: 30vh;
}
.info {
margin-top: 50rpx;
// font-size: 52.63rpx;
font-weight: bold;
}
.dots {
animation: loadingDots 1s infinite;
opacity: 0;
animation-delay: 0.2s;
}
@keyframes loadingDots {
0% {
opacity: 0;
}
25% {
opacity: 0;
}
50% {
opacity: 1;
}
75% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style>