车管所-体检预约-前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
611 B

<template>
<basic-container>
<div style="text-align:center;">
<div class="page_title">欢迎使用车管所预约体检管理系统</div>
<img src="@/assets/image/wel.jpg" />
</div>
</basic-container>
</template>
<script>
import { mapGetters } from "vuex";
export default {
name: "wel",
data() {
return {
};
},
computed: {
...mapGetters(["userInfo"]),
},
methods: {
},
};
</script>
<style lang="scss" scoped>
.page_title {
color: #666;
font-size: 30px;
font-weight: bold;
letter-spacing: 2px;
text-align: center;
padding:30px 0 20px;
}
</style>