<template>
  <div style="padding: 20px">
    <div style="display: flex; align-items: center; color: #000">
      <div>没有此功能权限;请联系管理员开通</div>
      <div class="btm">关闭</div>
    </div>
  </div>
</template>

<script>
  export default {}
</script>

<style lang="scss" scoped>
  .btm {
    width: 60px;
    height: 30px;
    background-color: #13ce66;
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 30px;
    border-radius: 2px;
    margin-left: 5px;
    cursor: pointer;
  }
</style>