YouKeChuanMei_VUE/src/views/mediaTool/pptAnalysisIndex.vue

346 lines
11 KiB
Vue
Raw Normal View History

2025-09-02 22:55:31 +08:00
<template>
<div class="app-container">
<el-card>
<template #header>
<div class="card-header">
<span>{{ formTitle }}</span>
<el-icon style="float: right;cursor: pointer;" @click="handleClose">
<Close />
</el-icon>
</div>
</template>
<div class="tool-content">
<el-row :gutter="20" style="margin: 0 -10px 30px -10px;">
2025-09-16 16:06:23 +08:00
<el-col :span="12">
2025-09-02 22:55:31 +08:00
<div class="toolItemTitle mb20">上传文件</div>
<el-upload class="my-upload-demo" drag action="#" :http-request="requestDocUpload"
:file-list="docUploadList" :before-upload="beforeDocUpload" :on-remove="removeDocUpload">
<el-icon class="el-icon--upload"><upload-filled /></el-icon>
<div class="el-upload__text">
<span class="upload_tip">将文件拖曳至此区域</span> <em>点击上传</em>
</div>
<div class="el-upload__text">
2025-09-16 16:06:23 +08:00
支持扩展名.pptx
2025-09-02 22:55:31 +08:00
</div>
</el-upload>
</el-col>
2025-09-16 16:06:23 +08:00
<el-col :span="12">
2025-09-02 22:55:31 +08:00
<div class="toolItemTitle mb20">使用统计</div>
2025-09-16 16:06:23 +08:00
<el-form ref="detailFormRef" :model="detailForm" label-width="160px" class="myUsingDetail">
<div class="splineBar" />
<el-form-item label="处理PPT文件数">
2025-09-16 21:54:23 +08:00
{{ detailForm.analysis_statistics.unique_tools }}
2025-09-16 16:06:23 +08:00
</el-form-item>
<div class="splineBar" />
<el-form-item label="提取图片总数">
2025-09-16 21:54:23 +08:00
{{ detailForm.analysis_statistics.total_images }}
2025-09-16 16:06:23 +08:00
</el-form-item>
<div class="splineBar" />
<el-form-item label="生成报告总数">
2025-09-16 21:54:23 +08:00
{{ detailForm.task_statistics.completed_tasks }}
2025-09-16 16:06:23 +08:00
</el-form-item>
<div class="splineBar" />
2025-09-16 21:54:23 +08:00
<el-form-item label="生成失败报告数量">
{{ detailForm.task_statistics.failed_tasks }}
2025-09-16 16:06:23 +08:00
</el-form-item>
2025-09-16 21:54:23 +08:00
<div class="splineBar" />
2025-09-16 16:06:23 +08:00
<el-form-item label="Adobe图片数量">
2025-09-16 21:54:23 +08:00
{{ detailForm.analysis_statistics.adobe_images }}
2025-09-16 16:06:23 +08:00
</el-form-item>
<div class="splineBar" />
</el-form>
2025-09-02 22:55:31 +08:00
</el-col>
</el-row>
2025-09-16 21:54:23 +08:00
<div class="toolItemTitle mb20">
任务记录
<el-icon class="refreshIcon" @click="getTaskRecordPageList">
<Refresh />
</el-icon>
</div>
2025-09-02 22:55:31 +08:00
<el-table v-loading="loading" :data="taskList" height="calc(100% - 422px)">
<el-table-column label="序号" align="center" width="80">
<template #default="scope">
{{ scope.$index + 1 }}
</template>
</el-table-column>
2025-09-16 21:54:23 +08:00
<el-table-column label="文件名称" align="left" prop="file_name" min-width="180"
2025-09-02 22:55:31 +08:00
:show-overflow-tooltip="true" />
2025-09-16 21:54:23 +08:00
<el-table-column label="任务进度" align="center" prop="progress" min-width="150">
2025-09-02 22:55:31 +08:00
<template #default="scope">
2025-09-16 21:54:23 +08:00
<el-progress class="myprogress" type="circle"
:percentage="scope.row.progress == null ? 0 : scope.row.progress" :width="40"
:stroke-width="2" :color="colors" />
</template>
</el-table-column>
<el-table-column label="操作时间" align="center" prop="completed_at" width="210">
<template #default="scope">
<span>{{ parseTime(scope.row.completed_at) }}</span>
2025-09-02 22:55:31 +08:00
</template>
</el-table-column>
<el-table-column label="操作" :width="160" align="center">
<template #default="scope">
2025-09-16 21:54:23 +08:00
<el-button v-if="scope.row.progress == 100" link type="primary"
@click="handleResultOption(scope.row)">
导出结果
2025-09-02 22:55:31 +08:00
</el-button>
2025-09-16 21:54:23 +08:00
<el-button link type="primary" @click="handleDeleteTask(scope.row)">
2025-09-02 22:55:31 +08:00
删除
</el-button>
</template>
</el-table-column>
</el-table>
2025-09-16 16:06:23 +08:00
<pagination :total="total" v-model:page="queryParams.page" v-model:limit="queryParams.per_page"
2025-09-02 22:55:31 +08:00
@pagination="getTaskRecordPageList" />
</div>
</el-card>
</div>
</template>
<script setup>
import { onMounted, nextTick, defineEmits, ref } from 'vue'
import { Close } from '@element-plus/icons-vue'
2025-09-16 21:54:23 +08:00
import { uploadPPTAnalysisFile, pptAnalysisTaskPageList, pptAnalysisStatistics, deletePPTAnalysisTask, exportPPTAnalysisReport } from "@/api/pptAnalysis"
2025-09-02 22:55:31 +08:00
const { proxy } = getCurrentInstance()
const emit = defineEmits(['handleGoBack']);
2025-09-16 16:06:23 +08:00
const baseUrl = import.meta.env.VITE_APP_BASE_API
2025-09-02 22:55:31 +08:00
const formTitle = ref('')
2025-09-16 21:54:23 +08:00
const detailForm = ref({
analysis_statistics: {},
task_statistics: {}
})
2025-09-16 16:06:23 +08:00
// 上传文件列表
2025-09-02 22:55:31 +08:00
const docUploadList = ref([])
2025-09-16 16:06:23 +08:00
// 进度条颜色设置
2025-09-02 22:55:31 +08:00
const colors = [
{ color: '#EDEDED', percentage: 0 },
{ color: '#FFC63D', percentage: 99 },
{ color: '#ADE8BD', percentage: 100 },
]
2025-09-16 16:06:23 +08:00
// 任务列表
const taskList = ref([])
2025-09-02 22:55:31 +08:00
const total = ref(0)
const loading = ref(false)
const data = reactive({
queryParams: {
2025-09-16 16:06:23 +08:00
page: 1,
per_page: 10
2025-09-02 22:55:31 +08:00
}
})
const { queryParams } = toRefs(data)
2025-09-16 21:54:23 +08:00
2025-09-16 16:06:23 +08:00
// 自定义上传经纬度文件
2025-09-02 22:55:31 +08:00
const requestDocUpload = (options) => {
const { file } = options
var formData = new FormData();
formData.append('file', file);
2025-09-16 21:54:23 +08:00
proxy.$modal.loading('正在上传文件,请耐心等待...')
2025-09-16 16:06:23 +08:00
uploadPPTAnalysisFile(formData).then(res => {
2025-09-16 21:54:23 +08:00
proxy.$modal.msgSuccess("上传成功")
proxy.$modal.closeLoading()
docUploadList.value = []
getTaskRecordPageList()
}).catch(res => {
proxy.$modal.msgError(res.msg);
proxy.$modal.closeLoading()
2025-09-16 16:06:23 +08:00
})
2025-09-02 22:55:31 +08:00
}
//自定义上传文件资料校验
const beforeDocUpload = (file) => {
const type = [
2025-09-16 16:06:23 +08:00
'application/vnd.openxmlformats-officedocument.presentationml.presentation'
2025-09-02 22:55:31 +08:00
];
const isXlsx = type.includes(file.type);
// 检验文件格式
if (!isXlsx) {
2025-09-16 16:06:23 +08:00
proxy.$modal.msgError("文件格式错误,请上传.pptx后缀的文件。");
2025-09-02 22:55:31 +08:00
return false;
}
}
// 移除已上传文件列表
const removeDocUpload = (file, fileList) => {
docUploadList.value = docUploadList.value.filter(
item => item.name != file.name
);
}
2025-09-16 21:54:23 +08:00
// 删除任务
const handleDeleteTask = (row) => {
proxy.$modal.confirm('是否确认该任务?').then(function () {
return deletePPTAnalysisTask(row.task_id)
}).then(() => {
getTaskRecordPageList()
proxy.$modal.msgSuccess("删除成功")
}).catch(() => { })
}
2025-09-02 22:55:31 +08:00
// 结果操作
const handleResultOption = (row) => {
2025-09-16 21:54:23 +08:00
if (row.progress == 0) {
return
}
exportPPTAnalysisReport(row.task_id).then(res => {
const downLoadName = 'PPT分析结果_' + getCurrentTime() + '.xlsx'
// 通过a标签打开新页面下载文件
const a = document.createElement('a')
a.href = URL.createObjectURL(res)
// a标签里有download属性可以自定义文件名
a.setAttribute('download', downLoadName)
document.body.appendChild(a)
a.click()
document.body.removeChild(a)
})
}
const getCurrentTime = () => {
//获取当前时间并打印
var getTime = new Date().getTime(); //获取到当前时间戳
var time = new Date(getTime); //创建一个日期对象
var year = time.getFullYear(); // 年
var month = (time.getMonth() + 1).toString().padStart(2, '0'); // 月
var date = time.getDate().toString().padStart(2, '0'); // 日
var hour = time.getHours().toString().padStart(2, '0'); // 时
var minute = time.getMinutes().toString().padStart(2, '0'); // 分
var second = time.getSeconds().toString().padStart(2, '0'); // 秒
var gettime = year + month + date + hour + minute + second
return gettime
2025-09-16 16:06:23 +08:00
}
// 获取使用统计
const getStatistics = () => {
2025-09-18 23:40:09 +08:00
pptAnalysisStatistics().then(res => {
2025-09-16 21:54:23 +08:00
detailForm.value = res
2025-09-16 16:06:23 +08:00
})
2025-09-16 21:54:23 +08:00
2025-09-16 16:06:23 +08:00
}
// 获取分析任务列表
const getTaskRecordPageList = () => {
loading.value = true
2025-09-18 23:40:09 +08:00
pptAnalysisTaskPageList(queryParams.value).then(res => {
2025-09-16 21:54:23 +08:00
taskList.value = res.tasks
total.value = res.pagination.total
loading.value = false
2025-09-16 16:06:23 +08:00
})
2025-09-02 22:55:31 +08:00
}
// 关闭
const handleClose = () => {
emit('handleGoBack')
}
// 初始化
2025-09-16 16:06:23 +08:00
const initTool = () => {
formTitle.value = 'PPT分析工具'
getStatistics()
getTaskRecordPageList()
2025-09-02 22:55:31 +08:00
}
// 暴露方法\属性给父组件
defineExpose({
initTool
});
</script>
<style lang="scss">
.tool-content {
width: 100%;
2025-09-16 16:06:23 +08:00
padding: 30px 20% 10px;
2025-09-02 22:55:31 +08:00
height: calc(100vh - 180px);
overflow-y: auto;
}
.toolItemTitle {
position: relative;
width: 100%;
height: 40px;
line-height: 40px;
font-family: Microsoft YaHei;
font-weight: 600;
font-size: 22px;
text-align: left;
color: #1E1E1E;
padding-left: 20px;
}
.toolItemTitle::before {
content: "■";
position: absolute;
left: 0px;
top: -4px;
width: 8px;
height: 8px;
border-radius: 2px;
color: #ffc63d;
}
.my-upload-demo .el-upload-dragger {
background: #0090ff05;
border: 1px dashed #1A75E6;
border-radius: 6px;
}
.my-upload-demo .upload_tip {
font-family: Microsoft YaHei;
font-weight: 400;
font-size: 18px;
color: #000000;
}
.my-upload-demo em {
font-family: Microsoft YaHei;
font-weight: 400;
font-size: 18px;
color: #1A75E6;
}
.my-upload-demo .el-upload__text {
font-family: Microsoft YaHei;
font-weight: 400;
font-size: 16px;
color: #8C8C8C;
}
.myprogress .el-progress__text {
min-width: 40px !important;
}
.myprogress .el-progress__text span {
font-family: Arial;
font-weight: 700;
font-size: 14px;
color: #8F8F8F;
}
.mybadge1 .el-badge__content.is-dot {
width: 6px;
height: 6px;
background-color: #126601;
margin-right: 10px;
}
.myMedioStatus1 {
font-family: Microsoft YaHei;
font-weight: 400;
font-size: 16px;
color: #126601;
}
.mybadge2 .el-badge__content.is-dot {
width: 6px;
height: 6px;
background-color: #E12500;
margin-right: 10px;
}
.myMedioStatus2 {
font-family: Microsoft YaHei;
font-weight: 400;
font-size: 16px;
color: #E12500;
}
2025-09-16 16:06:23 +08:00
// 分割线
.splineBar {
width: 100%;
height: 1px;
background: #D9DFE5;
}
2025-09-02 22:55:31 +08:00
</style>