提交代码

This commit is contained in:
wangchengming 2025-10-27 22:28:12 +08:00
parent daf8dc9ac8
commit ff6b88d496
2 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,7 @@
"amfe-flexible": "^2.2.1",
"axios": "1.9.0",
"clipboard": "2.0.11",
"dayjs": "^1.11.18",
"echarts": "5.6.0",
"element-plus": "2.9.9",
"file-saver": "2.0.5",

View File

@ -74,7 +74,7 @@
</el-table-column>
<el-table-column label="操作时间" align="center" prop="completed_at" width="210">
<template #default="scope">
<span>{{ parseTime(scope.row.completed_at) }}</span>
<span>{{ dayjs(scope.row.completed_at).format('YYYY-MM-DD HH:mm:ss') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" :width="160" align="center">
@ -100,6 +100,7 @@
<script setup>
import { onMounted, nextTick, defineEmits, ref } from 'vue'
import { Close } from '@element-plus/icons-vue'
import dayjs from 'dayjs'
import { uploadPPTAnalysisFile, pptAnalysisTaskPageList, pptAnalysisStatistics, deletePPTAnalysisTask, exportPPTAnalysisReport } from "@/api/pptAnalysis"