<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>
|