|
@@ -4,13 +4,13 @@
|
|
|
<div class="content-container">
|
|
|
<div class="file-list">
|
|
|
<ul>
|
|
|
- <li v-for="item in selectList" :key="item.fileId" :class="{ selected: item.fileId === selectedFileId }" @click="handleFileClick(item)">
|
|
|
+ <li v-for="item in selectList" :key="item.id" :class="{ selected: item.id === selectedFileId }" @click="handleFileClick(item)">
|
|
|
{{ item.fileName }}
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
<div class="table-container">
|
|
|
- <a-table :columns="computedColumns" :data-source="tableData" size="small" :scroll="{ y: 250 }" class="tableW">
|
|
|
+ <a-table :columns="computedColumns" :data-source="tableData" size="small" :pagination="false" :scroll="{ y: 250 }" class="tableW">
|
|
|
<template #bodyCell="{ column, record }">
|
|
|
<template v-if="column.dataIndex === 'action'">
|
|
|
<a class="action-link" @click="toDetail(record)">数据分析</a>
|
|
@@ -65,7 +65,7 @@ let jcddArr = ref<any[]>([]);
|
|
|
let formSearch = reactive({
|
|
|
pageNum: 1,
|
|
|
pageSize: 1000,
|
|
|
- fileId: '',
|
|
|
+ id: '',
|
|
|
fileName: '',
|
|
|
});
|
|
|
const total = ref(0);
|
|
@@ -411,6 +411,27 @@ function updateChart(data: any) {
|
|
|
color: '#ffffff',
|
|
|
},
|
|
|
},
|
|
|
+ dataZoom: [
|
|
|
+ {
|
|
|
+ type: 'slider', // 会创建一个滑块来选择要显示的区域
|
|
|
+ start: 0, // 初始选中范围的起始百分比
|
|
|
+ end: (5 / categories.length) * 100, // 初始选中范围的结束百分比,根据数据条数调整
|
|
|
+ minSpan: (5 / categories.length) * 100, // 最小选中范围,根据数据条数调整
|
|
|
+ maxSpan: (5 / categories.length) * 100, // 最大选中范围,根据数据条数调整
|
|
|
+ show: true,
|
|
|
+ height: 10, // 设置滑块高度
|
|
|
+ bottom: 1, // 设置滑块距离容器底部的距离
|
|
|
+ borderColor: 'transparent', // 设置边框颜色为透明
|
|
|
+ backgroundColor: '#F6F7FB', // 设置背景颜色
|
|
|
+ handleIcon: 'path://M512,512m-448,0a448,448,0,1,0,896,0a448,448,0,1,0,-896,0Z', // 设置手柄图标为圆形
|
|
|
+ handleColor: '#C2D2FF', // 设置手柄颜色
|
|
|
+ handleSize: 13, // 设置手柄大小
|
|
|
+ handleStyle: {
|
|
|
+ borderColor: '#C2D2FF', // 设置手柄边框颜色
|
|
|
+ },
|
|
|
+ fillerColor: '#C2D2FF', // 设置选中范围的填充颜色
|
|
|
+ },
|
|
|
+ ],
|
|
|
grid: {
|
|
|
top: '21%', // 设置 grid 距离顶部的距离,增加间隔
|
|
|
left: '3%',
|
|
@@ -491,29 +512,29 @@ async function getTableListById(params: any) {
|
|
|
async function getAllFile() {
|
|
|
let res = await getAllFileList({ type: 'bundle' });
|
|
|
selectList.value = res.records.map((item: any) => ({
|
|
|
- fileId: item.fileId,
|
|
|
+ id: item.id,
|
|
|
fileName: item.fileName,
|
|
|
}));
|
|
|
jcddArr.value = res.records.map((item: any) => ({
|
|
|
- fileId: item.jcdd,
|
|
|
+ id: item.jcdd,
|
|
|
}));
|
|
|
if (selectList.value.length > 0) {
|
|
|
- formSearch.fileId = selectList.value[0].fileId;
|
|
|
+ formSearch.id = selectList.value[0].id;
|
|
|
getSearch();
|
|
|
}
|
|
|
}
|
|
|
// 处理文件点击事件
|
|
|
function handleFileClick(item: any) {
|
|
|
- formSearch.fileId = item.fileId;
|
|
|
+ formSearch.id = item.id;
|
|
|
formSearch.fileName = item.fileName;
|
|
|
- selectedFileId.value = item.fileId;
|
|
|
+ selectedFileId.value = item.id;
|
|
|
getSearch();
|
|
|
}
|
|
|
//查询
|
|
|
function getSearch() {
|
|
|
- // const selectedFile = selectList.value.find((item) => item.fileId === formSearch.fileId);
|
|
|
+ // const selectedFile = selectList.value.find((item) => item.id === formSearch.id);
|
|
|
const params = {
|
|
|
- fileId: formSearch.fileId,
|
|
|
+ id: formSearch.id,
|
|
|
// fileName: selectedFile ? selectedFile.fileName : '',
|
|
|
};
|
|
|
getTableListById(params);
|
|
@@ -522,8 +543,8 @@ onMounted(() => {
|
|
|
getTableList({ type: 'bundle' });
|
|
|
getAllFile().then(() => {
|
|
|
if (selectList.value.length > 0) {
|
|
|
- formSearch.fileId = selectList.value[0].fileId;
|
|
|
- selectedFileId.value = selectList.value[0].fileId;
|
|
|
+ formSearch.id = selectList.value[0].id;
|
|
|
+ selectedFileId.value = selectList.value[0].id;
|
|
|
getSearch();
|
|
|
}
|
|
|
});
|
|
@@ -574,6 +595,7 @@ onMounted(() => {
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
.data-container {
|
|
|
+ margin-top: 40px;
|
|
|
display: flex;
|
|
|
width: 100%;
|
|
|
height: 100%;
|