<template>
|
<view class="main_app">
|
<view class="ima_wrap">
|
<image src="@/static/driver/btn_qiandao@2x.png" mode="widthFix"></image>
|
<u-icon class="txt" color="#fff" size="72" name="checkbox-mark"></u-icon>
|
</view>
|
<view class="h1">提交成功</view>
|
<view class="placeholder9">感谢你的反馈,我们将尽快核实处理</view>
|
<view class="btn" @click="$jump('/pages/staff/index')">返回首页</view>
|
</view>
|
</template>
|
|
<script>
|
export default {
|
data() {
|
return {
|
|
};
|
}
|
}
|
</script>
|
|
<style lang="scss">
|
.main_app{
|
text-align: center;
|
.btn{
|
margin-top: 60rpx;
|
padding-bottom: env(safe-area-inset-bottom);
|
box-sizing: border-box;
|
width: 300rpx;
|
margin: 60rpx auto;
|
height: 88rpx;
|
line-height: 88rpx;
|
text-align: center;
|
background: #fff;
|
border-radius: 44rpx;
|
font-size: 32rpx;
|
border: 1rpx solid #4e99a9;
|
border-radius: 50rpx;
|
color: #4e99a9;
|
}
|
.h1{
|
font-size: 44rpx;
|
font-weight: 600;
|
margin-bottom: 30rpx;
|
}
|
.ima_wrap{
|
width: 300rpx;
|
height: 300rpx;
|
margin: 300rpx auto 40rpx;
|
position: relative;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
image{
|
width: 100%;
|
position: absolute;
|
}
|
.txt{
|
font-size: 50rpx;
|
color: #fff;
|
}
|
}
|
}
|
</style>
|