riku
2024-06-07 0a97c702074830791cb29a158098f05c8033c4b1
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
<template>
  <div class="border-r-small p-h-8">
    <el-row justify="space-between">
      <div>{{ title }}</div>
      <el-text size="small">{{ sceneType }}</el-text>
    </el-row>
    <el-row>
      <el-col :span="8">
        <el-statistic title="巡查" :value="10">
          <template #suffix>个</template>
        </el-statistic>
      </el-col>
      <el-col :span="8">
        <el-statistic title="问题" :value="16">
          <template #suffix>个</template>
        </el-statistic>
      </el-col>
      <el-col :span="8">
        <el-statistic title="整改" :value="8">
          <template #suffix>个</template>
        </el-statistic>
      </el-col>
    </el-row>
  </div>
</template>
 
<script>
export default {
  props: {
    title: String,
    sceneType: {
      type: String,
      default: '全场景'
    }
  }
}
</script>
 
<style scoped></style>