17 changed files with 186 additions and 50 deletions
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,45 @@ |
|||
<template> |
|||
<van-dialog v-model="show" show-cancel-button confirm-button-text="确定" @confirm="$router.push('/register')" @cancel="$emit('close')"> |
|||
<div class="tip"> |
|||
<h3>温馨提示</h3> |
|||
<p>请您先进行手号注册。</p> |
|||
</div> |
|||
</van-dialog> |
|||
</template> |
|||
|
|||
<script> |
|||
export default { |
|||
name: 'Perfect', |
|||
data() { |
|||
return { |
|||
show: true |
|||
} |
|||
}, |
|||
|
|||
mounted() { |
|||
|
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style scoped lang="less"> |
|||
:deep(.van-dialog) { |
|||
display: flex; |
|||
flex-direction: column; |
|||
} |
|||
|
|||
:deep(.van-dialog__content) { |
|||
flex: 1; |
|||
background: url('@/assets/dialog_bg.png') no-repeat; |
|||
background-size: 100%; |
|||
min-height: 180px; |
|||
width: 100%; |
|||
padding: 25px; |
|||
box-sizing: border-box; |
|||
|
|||
p { |
|||
margin-top: 48px; |
|||
font-family: pingfang-bold; |
|||
} |
|||
} |
|||
</style> |
@ -0,0 +1,26 @@ |
|||
<template> |
|||
<div class="container"> |
|||
|
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
export default { |
|||
name: 'houseQR', |
|||
data() { |
|||
return { |
|||
houesId:this.$route.query.houseId, |
|||
} |
|||
}, |
|||
created(){ |
|||
console.log(this.houesId,'房屋Id'); |
|||
}, |
|||
mounted() { |
|||
|
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style scoped lang="less"> |
|||
|
|||
</style> |
Loading…
Reference in new issue