Riku
2025-06-09 2547159bbd781c8e1a41ecc939385396c85f9766
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
    <BaseCard title="整改跟踪">
    <el-row justify="space-between" align="middle">
      <!-- <div class="font-large">问题整改跟踪</div> -->
      <el-button></el-button>
      <OptionTime v-model="time" type="date"></OptionTime>
    </el-row>
    <div>
      <ProblemSummary :data="subtaskList" :proStatistic="proStatistic"></ProblemSummary>
      <ProblemTable :data="subtaskList"></ProblemTable>
    </div>
  </BaseCard>
</template>
<script setup> 
import { ref } from "vue";
 
import ProblemTable from './component/ProblemTable.vue'
import ProblemSummary from './component/ProblemSummary.vue'
 
 
</script>