|
@@ -1,7 +1,8 @@
|
|
|
<script setup>
|
|
|
-import { ref } from 'vue'
|
|
|
-import ClassifyWrapVue from "./components/ClassifyWrap.vue";
|
|
|
+import { ref, useTemplateRef } from 'vue'
|
|
|
+import ClassifyWrap from "./components/ClassifyWrap.vue";
|
|
|
import ChartWrap from './components/ChartWrap.vue'
|
|
|
+import ChartList from './components/chartList/Index.vue'
|
|
|
import { apiETAChart } from '@/api/etaChart'
|
|
|
import {useClassify} from './hooks/useClassify'
|
|
|
|
|
@@ -29,6 +30,8 @@ const pageSize = 50
|
|
|
let finished = false
|
|
|
const tableData = ref([])
|
|
|
const tableLoading = ref(false)
|
|
|
+const chartTotal=ref(0)
|
|
|
+const showChartNameWrap=ref(true)
|
|
|
async function getTableData() {
|
|
|
tableLoading.value = true
|
|
|
const res = await apiETAChart.chartList({
|
|
@@ -42,10 +45,7 @@ async function getTableData() {
|
|
|
const arr = res.Data.AllNodes || []
|
|
|
tableData.value = [...tableData.value, ...arr]
|
|
|
finished = res.Data.Paging.IsEnd
|
|
|
- // 如果是获取第一页数组则默认选中第一个图表
|
|
|
- if(res.Data.Paging.IsStart&&arr.length>0){
|
|
|
- activeChartId.value=arr[0].ChartInfoId
|
|
|
- }
|
|
|
+ chartTotal.value=res.Data.Paging.Totals
|
|
|
}
|
|
|
}
|
|
|
getTableData()
|
|
@@ -57,12 +57,16 @@ function tableScroll(opt) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+const chartListRef=useTemplateRef('chartListRef')
|
|
|
+
|
|
|
function handleFilterList() {
|
|
|
activeChartId.value=''
|
|
|
tableData.value=[]
|
|
|
finished=false
|
|
|
page=1
|
|
|
getTableData()
|
|
|
+ // 更新右侧图列表的数据
|
|
|
+ chartListRef.value.handleRefreshList()
|
|
|
// 取消掉右侧图表
|
|
|
activeChartId.value=''
|
|
|
}
|
|
@@ -77,42 +81,34 @@ function handleSelectChart(item) {
|
|
|
|
|
|
<template>
|
|
|
<div class="eta-chart-page">
|
|
|
- <ClassifyWrapVue @filter="handleFilterList" @change="handleSelectChart" />
|
|
|
- <div class="table-wrap" v-loading="tableLoading">
|
|
|
- <t-list style="height: 100%" :onScroll="tableScroll">
|
|
|
- <table class="table-box" cellpadding="0" cellspacing="0">
|
|
|
- <thead class="table-head thead-sticky">
|
|
|
- <tr>
|
|
|
- <td
|
|
|
- v-for="opt in tableColOpts"
|
|
|
- :key="opt.colKey"
|
|
|
- :style="{ width: opt.width }"
|
|
|
- >
|
|
|
- {{ opt.title }}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- <tbody>
|
|
|
- <tr
|
|
|
- :class="row.ChartInfoId === activeChartId ? 'active_row' : ''"
|
|
|
- v-for="row in tableData"
|
|
|
- :key="row.index"
|
|
|
- @click="handleSelectChart(row)"
|
|
|
- >
|
|
|
- <td
|
|
|
- v-for="opt in tableColOpts"
|
|
|
- :key="opt.colKey"
|
|
|
- :style="{ width: opt.width }"
|
|
|
- >
|
|
|
- {{ row[opt.colKey] }}
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
+ <ClassifyWrap @filter="handleFilterList" @change="handleSelectChart" />
|
|
|
+ <div class="center-wrap">
|
|
|
+ <svg-icon name="show_arrow" class="show_chart_name_wrap_btn" v-if="!showChartNameWrap" @click="showChartNameWrap=true"></svg-icon>
|
|
|
+ <div :class="['flex chart-name-list-wrap',!showChartNameWrap?'chart-name-list-wrap_close':'']" v-loading="tableLoading">
|
|
|
+ <div class="flex top-box">
|
|
|
+ <span>所选图表</span>
|
|
|
+ <t-icon name="chevron-left-double" style="font-size:20px;cursor: pointer;" @click="showChartNameWrap=false"></t-icon>
|
|
|
+ </div>
|
|
|
+ <t-list class="list-content" :onScroll="tableScroll">
|
|
|
+ <li
|
|
|
+ :class="['text-ellipsis--l1 chart-name',item.ChartInfoId === activeChartId ? 'active_row' : '']"
|
|
|
+ v-for="item in tableData"
|
|
|
+ :key="item.ChartInfoId"
|
|
|
+ @click="handleSelectChart(item)"
|
|
|
+ >{{item.ChartClassifyName}}</li>
|
|
|
<empty-wrap v-if="tableData.length===0"/>
|
|
|
</t-list>
|
|
|
+ <div class="flex bottom-box">
|
|
|
+ <span>共{{chartTotal}}张图表</span>
|
|
|
+ <span class="clear-btn" @click="activeChartId=''">清除选择</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="right-wrap">
|
|
|
+ <ChartList ref="chartListRef"/>
|
|
|
+ <!-- 图表详情 -->
|
|
|
+ <ChartWrap :chartInfoId="activeChartId" v-if="activeChartId"/>
|
|
|
</div>
|
|
|
- <ChartWrap :chartInfoId="activeChartId"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -120,40 +116,72 @@ function handleSelectChart(item) {
|
|
|
.eta-chart-page {
|
|
|
display: flex;
|
|
|
gap: 0 20px;
|
|
|
- .table-wrap {
|
|
|
- flex-shrink: 0;
|
|
|
+
|
|
|
+ .center-wrap{
|
|
|
height: calc(100vh - 120px);
|
|
|
- .table-box {
|
|
|
- width: 100%;
|
|
|
- border-color: #dcdfe6;
|
|
|
- td,
|
|
|
- th {
|
|
|
- word-break: break-all;
|
|
|
- word-wrap: break-word;
|
|
|
- border: 1px solid #dcdfe6;
|
|
|
- height: 40px;
|
|
|
- text-align: center;
|
|
|
- border-left: none;
|
|
|
- border-top: none;
|
|
|
- &:first-child {
|
|
|
- border-left: 1px solid #dcdfe6;
|
|
|
- }
|
|
|
- }
|
|
|
- .thead-sticky {
|
|
|
- position: sticky;
|
|
|
- top: 0;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ .show_chart_name_wrap_btn{
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: -36px;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ font-size: 48px;
|
|
|
+ color: #D8D8D8;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ .chart-name-list-wrap {
|
|
|
+ background-color: #fff;
|
|
|
+ flex-shrink: 0;
|
|
|
+ width: 200px;
|
|
|
+ height: 100%;
|
|
|
+ flex-direction: column;
|
|
|
+ box-shadow: 0px 4px 12px 0px #2300351F;
|
|
|
+ border: 1px solid var(--border-color);
|
|
|
+ border-radius: 4px;
|
|
|
+ overflow: hidden;
|
|
|
+ transition: all .3s;
|
|
|
+ .top-box{
|
|
|
+ color: #666;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 10px;
|
|
|
+ border-bottom: 1px solid var(--border-color);
|
|
|
+ }
|
|
|
+ .bottom-box{
|
|
|
+ color: #666;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 10px;
|
|
|
+ border-top: 1px solid var(--border-color);
|
|
|
+ .clear-btn{
|
|
|
+ color: var(--red-color);
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
- .table-head {
|
|
|
- background-color: #ebeef5;
|
|
|
- font-weight: bold;
|
|
|
+ }
|
|
|
+ .list-content{
|
|
|
+ flex: 1;
|
|
|
+ padding: 10px 0;
|
|
|
+ .chart-name{
|
|
|
+ padding: 0 10px;
|
|
|
+ line-height: 32px;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
- tbody {
|
|
|
- color: #666;
|
|
|
- .active_row{
|
|
|
- background-color: #ECF5FF;
|
|
|
- }
|
|
|
+ .active_row{
|
|
|
+ background-color: #F1EBFF;
|
|
|
+ color: var(--td-brand-color);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ }
|
|
|
+ .chart-name-list-wrap_close{
|
|
|
+ visibility: hidden;
|
|
|
+ width: 0;
|
|
|
+ overflow: auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .right-wrap{
|
|
|
+ min-width: 600px;
|
|
|
+ flex: 1;
|
|
|
+ position: relative;
|
|
|
}
|
|
|
}
|
|
|
</style>
|