IDCDatasync-vue/src/views/task/statistics.vue
wangchengming b81c0a28a0 提交
2025-06-17 11:09:46 +08:00

368 lines
14 KiB
Vue

<template>
<div>
<a-row :gutter=20>
<a-col :md="7">
<div class="linese"></div>
<div class="table-page-search-wrapper" style="background:#e6e9f1;padding: 10px;">
<a-form layout="inline">
<a-row :gutter="30">
<a-col :md="18" :sm="10">
<a-form-item label="关键词">
<a-input placeholder="请输入搜索关键词" v-model="queryParam.name"></a-input>
</a-form-item>
</a-col>
<a-col :md="6" :sm="10">
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-button @click="loadData" type="primary" icon="search">查询</a-button>
</span>
</a-col>
</a-row>
</a-form>
</div>
<a-table ref="table" size="middle" style="height:calc(100vh - 343px);background:#e6e9f1;padding: 10px;"
bordered rowKey="id" :custom-row="handleCustomRow" :columns="columns" :dataSource="dataSource"
@change="handleTableChange">
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)">选中</a>
</span>
</a-table>
<div class="linese"></div>
</a-col>
<a-col :md="17" style="padding-right:10px;">
<div class="linese"></div>
<a-row>
<div style="margin-left: 10px; background: #092776;">
<a-col :span="5" class="quarter-div">
<a-col :span="8">
<img src="~@/assets/img/icon-结构化数据条数.png" />
</a-col>
<a-col :span="16">
<div class="datanum" style="color: #26E0EC;">{{ fileNum.totalNumRow }}</div>
<div>结构化数据条数</div>
</a-col>
</a-col>
<a-col :span="5" class="quarter-div">
<a-col :span="8">
<img src="~@/assets/img/icon非结构化文件大小.png" />
</a-col>
<a-col :span="16">
<div class="datanum" style="color: #15C029;">{{ fileNum.totalFileSize }}GB</div>
<div>非结构化文件(大小)</div>
</a-col>
</a-col>
<a-col :span="4" class="quarter-div">
<a-col :span="10">
<img src="~@/assets/img/icon-表数量.png" />
</a-col>
<a-col :span="14">
<div class="datanum" style="color: #FF8A00;">{{ fileNum.tableCount }}</div>
<div>表数量</div>
</a-col>
</a-col>
<a-col :span="4" class="quarter-div">
<a-col :span="10">
<img src="~@/assets/img/icon-文件接引数量.png" />
</a-col>
<a-col :span="14">
<div class="datanum" style="color: #FFFD2E;">{{ fileNum.fileLinkCount }}</div>
<div>文件接引数量</div>
</a-col>
</a-col>
<a-col :span="4" class="quarter-div">
<a-col :span="10">
<img src="~@/assets/img/icon-文档数量.png" />
</a-col>
<a-col :span="14">
<div class="datanum" style="color: #2EA4FF;">{{ fileNum.docFileCount }}</div>
<div>文档数量</div>
</a-col>
</a-col>
</div>
</a-row>
<div class="linese"></div>
<div class="linese"></div>
<a-row :gutter="20">
<a-col :md="12" :sm="1" style="height:calc(100vh - 422px);">
<div class="echartsTitle">
<div class="ecicon"></div>数据总量统计
</div>
<div id="cleaningVariance" ref="cleaningVariance"
style="width: 100%; height: calc(100% - 31px);background:#e6e9f1;"></div>
</a-col>
<a-col :md="12" :sm="2" style="height:calc(100vh - 422px);padding-right:20px;">
<div class="echartsTitle">
<div class="ecicon"></div>数据类型存储占比统计
</div>
<div id="totalNumberCatalogues" ref="totalNumberCatalogues"
style="width: 100%; height: calc(100% - 31px);background:#e6e9f1;"></div>
</a-col>
</a-row>
<div class="linese"></div>
</a-col>
</a-row>
</div>
</template>
<script>
import {
shipModelPageList,
shipModeldeleteById
} from '@/api/ship'
import {
getDataAnalysis,
taskPageList,
getTaskDataTypeAnalysis
} from '@/api/task'
import { getAction } from '@/api/manage'
import JEllipsis from "@/components/jeecg/JEllipsis";
export default {
name: "statistics",
components: {
JEllipsis
},
data() {
return {
description: '任务统计',
dataSource: [],
queryParam: {
pageNum: 1,
pageSize: 20,
name: ""
},
columns: [
{
title: '#',
dataIndex: '',
key: 'id',
width: 60,
align: "id",
customRender: function (t, r, index) {
return parseInt(index) + 1;
}
},
{
title: '任务名称',
align: "name",
dataIndex: 'name',
},
{
title: '结束时间',
align: "endTime",
dataIndex: 'endTime',
},
{
title: '操作',
dataIndex: 'action',
align: "center",
scopedSlots: { customRender: 'action' },
}
],
fileNum: {
totalNumRow: 0,
tableCount: 0,
docFileCount: 0,
totalFileSize: 0,
fileLinkCount: 0
},
cleaningVariancesource: [],
totalNumberCataloguesData: [],
selectedRowId: null
}
},
mounted() {
this.loadData();
},
computed: {
},
destroyed: function () {
},
created() {
},
methods: {
handleCustomRow(record) {
return {
onClick: () => {
console.log(record.id)
this.selectedRowId = record.id;
},
class: {
'row-highlight': this.selectedRowId === record.id
}
};
},
handleTableChange(pagination, filters, sorter) {
if (Object.keys(sorter).length > 0) {
this.isorter.column = sorter.field;
this.isorter.order = "ascend" == sorter.order ? "asc" : "desc"
}
this.ipagination = pagination;
this.loadData();
},
handleEdit(value) {
this.cleaningVariancesource = [];
this.selectedRowId = value.id;
getDataAnalysis({ taskId: value.id, startDate: value.startTime, endDate: value.endTime }).then((res) => {
if (res.success) {
res.result.schemaNames.forEach(row => {
this.cleaningVariancesource.push([row, parseInt(res.result.numRowMap[row])])
})
this.fileNum.totalNumRow = res.result.totalNumRow
this.fileNum.tableCount = res.result.tableCount
this.fileNum.docFileCount = res.result.docFileCount
this.fileNum.totalFileSize = res.result.totalFileSize
this.fileNum.fileLinkCount = res.result.fileLinkCount
this.getcleaningVariance();
} else {
this.$message.warning(res.message);
}
});
this.totalNumberCataloguesData = []
getTaskDataTypeAnalysis({ taskId: value.id, startDate: value.startTime, endDate: value.endTime }).then((res) => {
if (res.success) {
res.result.typeName.forEach(row => {
this.totalNumberCataloguesData.push({ value: parseFloat(res.result.numRowMap[row]), name: row })
})
this.gettotalNumberCatalogues();
} else {
this.$message.warning(res.message);
}
});
},
loadData() {
taskPageList(this.queryParam).then((res) => {
if (res.success) {
this.dataSource = res.result.rows || res.result;
this.handleEdit(res.result.rows[0]);
} else {
this.$message.warning(res.message);
}
});
},
getcleaningVariance() {
var myChart = this.$echarts.init(this.$refs.cleaningVariance);
var option = {
dataZoom: [
// 鼠标滚轮缩放
{
type: 'inside'
}
],
legend: {},
tooltip: {},
grid: {
left: '50px',
right: '20px',
top: '20px',
bottom: '30px'
},
dataset: {
source: this.cleaningVariancesource
},
xAxis: {
type: 'category',
axisLabel: {
color: '#6C758B'
},
axisLine: {
lineStyle: {
color: '#6C758B'
}
},
axisLine: {
lineStyle: {
color: '#6C758B'
}
},
},
yAxis: {
axisLabel: {
color: '#6C758B'
},
splitLine: {
lineStyle: {
color: '#6C758B'
}
},
axisLine: {
lineStyle: {
color: '#6C758B'
}
},
},
// Declare several bar series, each will be mapped
// to a column of dataset.source by default.
series: [{ type: 'bar', barMaxWidth: 20, }],
color: ['#5470c6', '#91cc75', '#fac858', '#ee6666', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc']
};
myChart.setOption(option);
window.addEventListener('resize', function () {
myChart.resize();
});
},
gettotalNumberCatalogues() {
var myChart = this.$echarts.init(this.$refs.totalNumberCatalogues);
var option = {
tooltip: {
trigger: 'item'
},
series: [
{
name: 'MB',
type: 'pie',
radius: '80%',
data: this.totalNumberCataloguesData,
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
}
}
],
color: ['#5470c6', '#91cc75', '#fac858', '#ee6666', '#73c0de', '#3ba272', '#fc8452', '#9a60b4', '#ea7ccc']
};
myChart.setOption(option);
window.addEventListener('resize', function () {
myChart.resize();
});
},
}
}
</script>
<style scoped>
.quarter-div {
height: 100px;
float: left;
margin-right: 16px;
background: #092776;
color: #fff;
font-size: 16px;
text-align: center;
padding: 20px 0;
}
.quarter-div div {
text-align: left;
line-height: 30px;
}
.quarter-div .datanum {
font-size: 26px;
}
/* 高亮样式 */
/deep/.row-highlight {
background-color: #ffffff !important;
}
.quarter-div .ant-col-8,
.quarter-div .ant-col-10 {
text-align: center;
}
</style>