3 changed files with 64 additions and 1 deletions
After Width: | Height: | Size: 9.0 KiB |
@ -0,0 +1,51 @@ |
|||
<template> |
|||
<div> |
|||
<div class="m-hint"> |
|||
<div class="wrap"> |
|||
<img src="@/assets/img/unopen-hint.png" alt="" /> |
|||
<span>功能暂未开放</span> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
export default { |
|||
data() { |
|||
return {}; |
|||
}, |
|||
components: {}, |
|||
mounted() {}, |
|||
methods: { |
|||
changeCustomerName(customerName) {}, |
|||
}, |
|||
}; |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.m-hint { |
|||
position: relative; |
|||
background-color: #ffffff; |
|||
height: calc(100vh - 150px); |
|||
|
|||
.wrap { |
|||
position: absolute; |
|||
display: block; |
|||
top: 0; |
|||
bottom: 0; |
|||
left: 0; |
|||
right: 0; |
|||
margin: auto; |
|||
width: 271px; |
|||
height: 240px; |
|||
font-size: 20px; |
|||
line-height: 30px; |
|||
font-weight: bold; |
|||
color: #aaa; |
|||
text-align: center; |
|||
img { |
|||
margin-bottom: 10px; |
|||
} |
|||
} |
|||
} |
|||
</style> |
Loading…
Reference in new issue