NoPermission.vue 699 Bytes
Newer Older
liang ce committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<template>
    <div class="noPermission">
      <div><img src="../../assets/noPrremission.png"/></div>
      <div>抱歉,您无访问权限</div>
    </div>
</template>

<script>
export default {
  name: 'noPermission',
  components: {},
  data () {
    return {}
  },
  watch: {},
liang ce committed
16
  created: function () {},
liang ce committed
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
  computed: {},
  methods: {},
  mounted () {}
}
</script>

<style scoped>
.noPermission{
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noPermission>div:nth-of-type(2){
  font-size: 20px;
}
.noPermission image {
  width: 402px;
  height: 284px;
}
.noPermission>div:nth-of-type(1){
  margin-right: 88px;
}
</style>