riku
2024-06-12 58a5242ff58523f5d048da13fc543ffba5065414
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
  <div class="border-r-small">
    <div class="font-large">风险评估</div>
    <el-row justify="space-evenly">
      <el-statistic title="高风险" :value="10"> </el-statistic>
      <el-statistic title="中风险" :value="10"> </el-statistic>
      <el-statistic title="低风险" :value="10"> </el-statistic>
    </el-row>
  </div>
</template>
 
<script setup>
/**
 * 对完成的任务进行评估风险,显示高风险场景,显示复核的场景的情况
 */
</script>
 
<style scoped></style>