<template> <div class="contain"> <div> <div style="text-align:center;margin-top: 50%;"> <div class="circle"></div> </div> <h6>专柜未配置</h6> <p>当前专柜未配置任何信息,请尽快完成配置</p> <van-button class="back" plain type="info" size="large" @click="handleBack">返回</van-button> </div> </div> </template> <script> export default { data() { return { } }, methods: { handleBack() { this.$router.push('counterInfo') } } } </script> <style scoped> .circle { display: inline-block; width: 100px; height: 100px; border-radius: 100%; background-color: #7b7b7b; } .contain { justify-content: center; height: 100%; text-align: center; } h6{ margin-top:30px; } p { font-size: 16px; margin-top: 10px; } .back { width: 70%; margin-top: 30px; } </style>