noSet.vue 880 Bytes
Newer Older
xd's avatar
xd committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
<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>