45 lines
884 B
Vue
45 lines
884 B
Vue
<template>
|
||
<view class="submit">
|
||
<image :src="`${config.aliyunOssUrl}/static/images/app/serve/real_result_submit.png`" mode=""></image>
|
||
<view>你的表单已提交成功,请耐心等待我们联系您!</view>
|
||
<view class="submit-butt">
|
||
<u-button type="primary" shape="circle" text="返回首页" color="#13AFA8" @click="navBackFn"
|
||
:customStyle='{height: "80rpx",fontSize: "28rpx",width:"264rpx"}'></u-button>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import config from '@/config';
|
||
export default {
|
||
data() {
|
||
return {
|
||
config
|
||
}
|
||
},
|
||
methods: {
|
||
navBackFn() {
|
||
uni.switchTab({
|
||
url: '/pages/driver/home/home'
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.submit {
|
||
text-align: center;
|
||
|
||
.submit-butt {
|
||
margin-top: 96rpx;
|
||
}
|
||
|
||
image {
|
||
width: 148rpx;
|
||
height: 148rpx;
|
||
margin-top: 136rpx;
|
||
margin-bottom: 24rpx;
|
||
}
|
||
}
|
||
</style> |