Files
car-system-app/pages/driver/mine/business_cooperation/submit.vue
2024-06-17 10:29:45 +08:00

45 lines
884 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>