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.

70 lines
1.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<view class="containers">
<view>
<img :src="succ" alt="">
<view>提交成功等待审核</view>
<view>审核通过后系统将在第一时间通知你</view>
<view>
<button @click="toHistory">访</button>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
succ: require('../../static/img/success.png')
}
},
onLoad() {
},
methods: {
toHistory() {
uni.navigateTo({
url: '/pages/visit/visithistory'
})
}
}
}
</script>
<style scoped>
.containers {
background-color: #fff;
min-height: 80vh;
padding: 20rpx;
position: relative;
}
.containers>view {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 70%;
text-align: center;
}
.containers>view img {
width: 200rpx;
height: 200rpx;
}
.containers>view view {
margin-bottom: 40rpx
}
.containers>view view:first-child {
font-size: 40rpx;
color: #000
}
.containers>view button {
background-color: #044ed7;
color: #fff
}
</style>