OfficeApp/subpkg/property/success.vue

73 lines
1.0 KiB
Vue
Raw Normal View History

2023-08-31 10:44:45 +08:00
<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>
2023-09-01 21:40:33 +08:00
export default {
onLoad() {
2023-09-05 18:09:37 +08:00
setTimeout(() => {
uni.redirectTo({
url: '/subpkg/property/index'
})
2023-09-06 14:18:52 +08:00
}, 2000)
2023-09-01 21:40:33 +08:00
}
}
2023-08-31 10:44:45 +08:00
</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>