城阳pc工作端前端代码
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.

51 lines
967 B

3 years ago
<template>
10 months ago
<div>
<div class="m-hint">
<div class="wrap">
<img src="@/assets/img/unopen-hint.png" alt="" />
<span>功能暂未开放</span>
</div>
</div>
3 years ago
</div>
</template>
<script>
export default {
10 months ago
data() {
return {};
},
components: {},
mounted() { },
methods: {
changeCustomerName(customerName) { },
},
3 years ago
};
</script>
<style lang="scss" scoped>
.m-hint {
10 months ago
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;
}
3 years ago
}
}
</style>