This commit is contained in:
liuye
2024-04-17 17:48:42 +08:00
parent e72f7c5e9f
commit 6dbe6365e8
36 changed files with 689 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
<template>
<div class="AppCheckInfo">
<div class="home-content">
</div>
</div>
</template>
<script>
export default {
name: 'CheckInfo',
label: '入住信息',
props: {
instance: Function,
dict: Object,
menuName: {default: "入住信息"}
},
data() {
return {
}
},
mounted() {
},
methods: {
}
}
</script>
<style lang="scss">
.AppCheckInfo {
height: 100%;
width: 100%;
background-image: url("./img/detail-bg.png");
background-size: 100% 100%;
.home-content {
height: calc(100% - 158px);
width: calc(100% - 32px);
margin: 0 16px;
background: #FFF;
border-radius: 12px;
}
}
</style>