gaoluyang
8 天以前 d67165bb2702c3e4dd14bfa8ba7b937f1f74d518
src/views/reportAnalysis/reportManagement/index.vue
@@ -170,15 +170,14 @@
         >
            <el-table-column prop="id" label="编号" width="80" />
            <el-table-column prop="name" label="名称" />
            <el-table-column prop="type" label="类型" width="120" />
            <el-table-column prop="status" label="状态" width="100">
            <el-table-column prop="status" label="状态">
               <template #default="scope">
                  <el-tag :type="getStatusType(scope.row.status)">
                     {{ scope.row.status }}
                  </el-tag>
               </template>
            </el-table-column>
            <el-table-column prop="progress" label="进度" width="120">
            <el-table-column prop="progress" label="进度">
               <template #default="scope">
                  <el-progress :percentage="scope.row.progress" :status="getProgressStatus(scope.row.progress)" />
               </template>