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

84 lines
1.7 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="unbindresult">
<view class="re_up">
<image class="re_img" src="https://qicheoss.oss-cn-shanghai.aliyuncs.com/static/images/images/car_unbindresult.png" mode=""></image>
<view class="re_txt"> 你的车辆信息已解绑成功如要还车请重新校验车辆信息 </view>
</view>
<view class="re_inspect" @click="toBindingPage"> 校验车辆信息 </view>
<view class="re_return" @click="toHomePage"> 返回首页 </view>
</view>
</template>
<script>
export default{
data(){
return{
}
},
methods:{
toBindingPage(){
uni.redirectTo({
url:'/pages/driver/serve/repair/re_binding'
})
},
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-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #555555;
line-height: 36rpx;
text-align: center;
margin-top: 24rpx;
}
}
.re_inspect{
width: 332rpx;
height: 80rpx;
background: #13AFA8;
border-radius: 60rpx;
font-size: 34rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #FFFFFF;
line-height: 80rpx;
text-align: center;
margin: 96rpx auto 0;
}
.re_return{
width: 136rpx;
height: 48rpx;
font-size: 34rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 400;
color: #13AFA8;
margin: 32rpx auto;
}
.unbindresult{
background: #FFFFFF;
height: 100vh;
// border: 1px solid blue;
}
</style>