Newer
Older
iris_temperature_front_gz / src / views / dashboard / components / PanelGroup.vue
StephanieGitHub on 12 Mar 2020 4 KB first commit
<template>
  <el-row :gutter="10" class="panel-group">
    <el-col v-for="card in dataFilter" :key="card.title" :xs="12" :sm="12" :lg="6" class="card-panel-col">
      <card :title="card.title" :context="card.context" :icon="card.icon" :color="card.color" @click.native="goPage(card.path)"/>
    </el-col>
  </el-row>
</template>

<script>
import Card from '@/components/BigData/Card'
// import { wellCountByBfzt } from '@/api/well'
// import { deviceStaticByStatus, alarmNowStatic } from '@/api/dataStatics'
// import { jobCountByStatus } from '@/api/job'
export default {
  components: {
    Card
  },
  data() {
    return {
      dataGroup: [
        {
          title: '门禁授权',
          context: '',
          icon: 'icon-key',
          color: '#40c9c6',
          path: '/acsPermission',
          permission: '/accessPermission'
        },
        {
          title: '门禁管理',
          context: '',
          icon: 'icon-door',
          color: '#36a3f7',
          path: '/listDoor',
          permission: '/door'
        },
        {
          title: '员工管理',
          context: '',
          icon: 'icon-person',
          color: '#f78586',
          path: '/staff',
          permission: '/staff'
        },
        {
          title: '访客管理',
          context: '',
          icon: 'icon-visitor',
          color: '#ffb980',
          path: '/visitor',
          permission: '/visitor'
        },
        {
          title: '员工进出记录',
          context: '',
          icon: 'icon-step-staff',
          color: '#c4b4e4',
          path: '/querystaff',
          permission: '/query/staff'
        },
        {
          title: '访客进出记录',
          context: '',
          icon: 'icon-step-visitor',
          color: '#0067a6',
          path: '/queryvisitor',
          permission: '/query/visitor'
        },
        {
          title: '进出记录统计',
          context: '',
          icon: 'chart-pie',
          color: '#d87a80',
          path: '/statics',
          permission: '/statistics'
        },
        {
          title: '登录日志',
          context: '',
          icon: 'log',
          color: '#9cbbff',
          path: '/loginLog',
          permission: '/loginLog'
        }
      ]
    }
  },
  computed: {
    dataFilter() {
      const btns = this.$store.getters.menus
      // 获取用户全部权限url
      const permissions = btns.map(function(v) { return v.url })
      // 过滤dataGroup
      const datas = this.dataGroup.filter((item) => {
        console.log(permissions.indexOf(item.path))
        if (permissions.indexOf(item.permission) !== -1) {
          return true
        } else {
          return false
        }
      })
      return datas
    }
  },
  methods: {
    goPage(path) {
      this.$router.push(path)
    }
  }
}
</script>

<style lang="scss" scoped>
.panel-group {
  padding-right: 20px;
  .card-panel-col {
    margin-bottom: 22px;
  }

  .card-panel {
    height: 100px;
    cursor: pointer;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    color: #666;
    background: #fff;
    box-shadow: 4px 4px 40px rgba(0, 0, 0, .05);
    border-color: rgba(0, 0, 0, .05);

    &:hover {
      .card-panel-icon-wrapper {
        color: #fff;
      }

      .icon-people {
        background: #40c9c6;
      }

      .icon-message {
        background: #36a3f7;
      }

      .icon-money {
        background: #f4516c;
      }

      .icon-shopping {
        background: #34bfa3
      }
    }

    .icon-people {
      color: #40c9c6;
    }

    .icon-message {
      color: #36a3f7;
    }

    .icon-money {
      color: #f4516c;
    }

    .icon-shopping {
      color: #34bfa3
    }

    .card-panel-icon-wrapper {
      float: left;
      margin: 14px 0 0 14px;
      padding: 16px;
      transition: all 0.38s ease-out;
      border-radius: 6px;
    }

    .card-panel-icon {
      float: left;
      font-size: 48px;
    }

    .card-panel-description {
      float: right;
      font-weight: bold;
      margin: 26px;
      margin-left: 0px;

      .card-panel-text {
        line-height: 18px;
        color: rgba(0, 0, 0, 0.45);
        font-size: 16px;
        margin-bottom: 12px;
      }

      .card-panel-num {
        font-size: 20px;
      }
    }
  }
}

@media (max-width:550px) {
  .card-panel-description {
    display: none;
  }

  .card-panel-icon-wrapper {
    float: none !important;
    width: 100%;
    height: 100%;
    margin: 0 !important;

    .svg-icon {
      display: block;
      margin: 14px auto !important;
      float: none !important;
    }
  }
}
</style>