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

80 lines
1.5 KiB
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="report_result">
<view>
<view class="re_up">
<!-- #ifdef MP-WEIXIN -->
<image class="re_img" :src="`${config.aliyunOssUrl}/static/images/app/icon/report.png`" mode="">
</image>
<!-- #endif -->
<!-- #ifdef APP -->
<image class="re_img" src="@/static/images/app/icon/report.png" mode=""></image>
<!-- #endif -->
<view class="re_txt"> 你举报的内容平台已收到感谢您的配合 </view>
</view>
<view class="re_return" @click="toHomePage"> 返回首页 </view>
</view>
</view>
</template>
<script>
import config from '@/config';
export default {
data() {
return {
config,
}
},
methods: {
toHomePage() {
uni.switchTab({
url: '/pages/driver/home/home'
});
}
},
}
</script>
<style lang="scss" scoped>
.re_up {
// border: 1px solid red;
margin-top: 136rpx;
display: flex;
flex-direction: column;
align-items: center;
.re_img {
width: 148rpx;
height: 148rpx;
margin: 0 auto;
}
.re_txt {
height: 36rpx;
font-size: 26rpx;
font-weight: 400;
color: #555555;
line-height: 36rpx;
text-align: center;
margin-top: 24rpx;
}
}
.re_return {
width: 332rpx;
height: 80rpx;
background: #13AFA8;
border-radius: 60rpx;
font-size: 34rpx;
font-weight: 400;
color: #FFFFFF;
line-height: 80rpx;
text-align: center;
margin: 96rpx auto 0;
}
.report_result {
background: #FFFFFF;
height: 100vh;
border-top: 1rpx solid #E6E6E6;
}
</style>