You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.1 KiB

<template>
<view class="container">
<image class="bkg" mode="aspectFill" src="~@/package_sub/static/form-success.png"></image>
<view class="wrap">
<view class="icon">
<u-icon name="checkbox-mark" color="#d87d34" :size="120"></u-icon>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: "填报",
redirect: '/pages/index/index'
};
},
onLoad(options) {
if (options.title) {
this.title = options.title
}
if (options.redirect) {
this.title = options.redirect
}
}
}
</script>
<style lang="scss">
.container {
position: relative;
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
.icon {
width: 178rpx;
height: 178rpx;
border-radius: 89rpx;
filter: drop-shadow(1.597rpx 1.204rpx 20rpx rgba(29,73,128,0.56));
background: #fff;
display: flex;
align-items: center;
justify-content: center;
}
}
.bkg {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
</style>