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.
50 lines
967 B
50 lines
967 B
<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>
|
|
|