Blame view

frontend/manage/src/views/portal/appcenter/AppCardView.vue 1.93 KB
8d73e917   陈威   初始化提交
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<template>
  <div class="main">
    <el-card
      v-for="(item, index) in data"
      :key="index"
      shadow="always"
      :body-style="{padding: 0}"
    >
      <app-item
        ref="appItem"
        :data="item"
        @command="handleCommand"
        @check-change="handleCheckChange"
        @card-click="cardClick"
      ></app-item>
    </el-card>
  </div>
</template>

<script>
const AppItem = () => import('./AppItem')
export default {
  name: 'AppCardView',
  components: {
    AppItem,
  },
  props: {
    data: Array,
  },
  watch: {
    data: {
      handler() {
        this.refreshItem()
        this.handleCheckChange()
      },
    },
  },
  methods: {
    cardClick(data) {
      this.$emit('card-click', data)
    },
    handleCommand(data) {
      this.$emit('command', data)
    },
    handleCheckChange() {
      let selection = !!this.$refs.appItem
        ? this.$refs.appItem
            .filter((item) => item.checked)
            .map((item) => item.data)
        : []
      this.$emit('selection-change', selection)
    },
    refreshItem() {
      this.$refs.appItem &&
        this.$refs.appItem.forEach((item) => {
          item.refresh()
        })
    },
    selectAll(checked) {
      this.$refs.appItem &&
        this.$refs.appItem.forEach((item) => {
          item.handleChecked(checked)
        })
    },
    selectedAll() {
      let appItems = this.$refs.appItem || []
      let checkedLength = appItems.filter((item) => item.checked).length
      return checkedLength === appItems.length
    },
    indeterminate() {
      let appItems = this.$refs.appItem || []
      let checkedLength = appItems.filter((item) => item.checked).length
      return checkedLength > 0 && checkedLength < appItems.length
    },
  },
}
</script>

<style lang="scss" scoped>
.main {
  &::after {
    content: '';
    display: block;
    clear: both;
  }

  .el-card {
    float: left;
    margin-right: 16px;
    margin-bottom: 16px;
  }
}
</style>