|
@@ -1,22 +1,83 @@
|
|
|
<template>
|
|
|
- <div class="table-box" v-if="compData" ref="compRef" v-loading="loading">
|
|
|
+ <div
|
|
|
+ class="table-box"
|
|
|
+ v-if="compData"
|
|
|
+ ref="compRef"
|
|
|
+ v-loading="loading"
|
|
|
+ element-loading-text="拼命加载中"
|
|
|
+ >
|
|
|
<div class="top-title-box">
|
|
|
- <div class="title">{{ compData.ExcelName }}</div>
|
|
|
+ <div class="title">{{ info&&info.ExcelName }}</div>
|
|
|
<div class="opt-box">
|
|
|
<img
|
|
|
class="icon"
|
|
|
src="~@/assets/img/icons/refresh_blue_new.png"
|
|
|
alt=""
|
|
|
+ @click="handleRefresh"
|
|
|
/>
|
|
|
<slot name="drag"></slot>
|
|
|
<slot name="delete"></slot>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <img class="bg" :src="compData.ExcelImage" alt="" />
|
|
|
+ <!-- 无权限 -->
|
|
|
+ <div class="nodata" v-if="!info">
|
|
|
+ <noDataAuth text="暂无数据" />
|
|
|
+ </div>
|
|
|
+ <div class="table-render-wrap" v-else>
|
|
|
+ <div class="table-wrapper pc-sty" >
|
|
|
+ <table
|
|
|
+ cellpadding="0"
|
|
|
+ cellspacing="0"
|
|
|
+ :style="`font-size: ${info.Config.FontSize || 12}px`"
|
|
|
+ >
|
|
|
+ <tbody>
|
|
|
+ <tr v-for="(item, index) in info.TableInfo.TableDataList" :key="index">
|
|
|
+ <td
|
|
|
+ :class="[
|
|
|
+ 'data-cell',
|
|
|
+ {
|
|
|
+ 'one-bg': (index + 1) % 2 && index > 0,
|
|
|
+ 'tow-bg': (index + 1) % 2 !== 0 && index > 0,
|
|
|
+ 'head-column': index === 0,
|
|
|
+ },
|
|
|
+ ]"
|
|
|
+ v-for="(cell, cell_index) in item"
|
|
|
+ :key="cell_index"
|
|
|
+ :colspan="cell.mc.cs || 1"
|
|
|
+ :rowspan="cell.mc.rs || 1"
|
|
|
+ :style="`
|
|
|
+ color: ${cell.fc};
|
|
|
+ font-weight: ${cell.bl ? 'bold' : 'normal'};
|
|
|
+ font-style: ${cell.it ? 'italic' : 'normal'};
|
|
|
+ background: ${cell.bg};
|
|
|
+ `"
|
|
|
+ >
|
|
|
+ <!-- 单元格拆分 -->
|
|
|
+ <div class="split-word" v-if="cell.ct.s">
|
|
|
+ <span
|
|
|
+ v-for="(word, word_index) in cell.ct.s"
|
|
|
+ :key="`${index}_${cell_index}_${word_index}`"
|
|
|
+ :style="`
|
|
|
+ color: ${word.fc};
|
|
|
+ font-weight: ${word.bl ? 'bold' : 'normal'};
|
|
|
+ font-style: ${word.it ? 'italic' : 'normal'};
|
|
|
+ `"
|
|
|
+ >{{ word.v }}</span
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ <div v-else>{{ cell.m }}</div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import apiBiBoard from '@/api/modules/BIBoard.js'
|
|
|
+import * as sheetInterface from "@/api/modules/sheetApi.js";
|
|
|
export default {
|
|
|
props: {
|
|
|
compData: null
|
|
@@ -24,12 +85,13 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
loading: true,
|
|
|
- observer:null,
|
|
|
+ observer: null,
|
|
|
isVisible: false, // 是否可见
|
|
|
+ info:null,
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
- console.log('表格组件挂载', this.compData.ExcelInfoId);
|
|
|
+ console.log('表格组件挂载',);
|
|
|
this.createObserver();
|
|
|
},
|
|
|
beforeUnmount() {
|
|
@@ -38,12 +100,25 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ handleRefresh: _.debounce(async function () {
|
|
|
+ if(this.loading) return
|
|
|
+ this.loading = true
|
|
|
+ const res = await sheetInterface.refreshCustomSheet({
|
|
|
+ ExcelInfoId: this.info.ExcelInfoId,
|
|
|
+ });
|
|
|
+ this.loading=false
|
|
|
+
|
|
|
+ if (res.Ret !== 200) return;
|
|
|
+ this.$message.success(this.$t('ETable.Msg.refresh_success_msg') );
|
|
|
+ this.handleGetTableData()
|
|
|
+ }, 300),
|
|
|
+
|
|
|
// 获取表格数据
|
|
|
- handleGetTableData(){
|
|
|
- setTimeout(() => {
|
|
|
- console.log('表格组件加载结束', this.compData.ExcelInfoId);
|
|
|
- this.loading=false
|
|
|
- }, 2000);
|
|
|
+ async handleGetTableData() {
|
|
|
+ const res = await apiBiBoard.tableDetail({ UniqueCode: this.compData.UniqueCode })
|
|
|
+ this.loading = false
|
|
|
+ if (res.Ret !== 200) return;
|
|
|
+ this.info=res.Data
|
|
|
},
|
|
|
|
|
|
// 利用判断是否进入可视区域 来加载数据
|
|
@@ -58,7 +133,7 @@ export default {
|
|
|
this.observer.observe(this.$refs.compRef); // 监听组件
|
|
|
},
|
|
|
handleIntersect(entries) {
|
|
|
- if(this.isVisible) return
|
|
|
+ if (this.isVisible) return
|
|
|
entries.forEach(entry => {
|
|
|
// 判断是否在可视范围内
|
|
|
if (entry.isIntersecting) {
|
|
@@ -79,6 +154,8 @@ export default {
|
|
|
height: 100%;
|
|
|
padding: 20px;
|
|
|
box-sizing: border-box;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
.top-title-box {
|
|
|
display: flex;
|
|
|
margin-bottom: 10px;
|
|
@@ -107,9 +184,87 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .bg {
|
|
|
- width: 100%;
|
|
|
- height: 200px;
|
|
|
+ ::-webkit-scrollbar {
|
|
|
+ width: 6px;
|
|
|
+ height: 6px;
|
|
|
+}
|
|
|
+::-webkit-scrollbar-track {
|
|
|
+ background: rgb(239, 239, 239);
|
|
|
+ border-radius: 2px;
|
|
|
+}
|
|
|
+::-webkit-scrollbar-thumb {
|
|
|
+ background: #ccc;
|
|
|
+ border-radius: 10px;
|
|
|
+}
|
|
|
+::-webkit-scrollbar-thumb:hover {
|
|
|
+ background: #888;
|
|
|
+}
|
|
|
+::-webkit-scrollbar-corner {
|
|
|
+ background: #666;
|
|
|
+}
|
|
|
+.table-render-wrap{
|
|
|
+ width: 100%;
|
|
|
+ flex: 1;
|
|
|
+ height: 100%;
|
|
|
+ overflow-y: auto;
|
|
|
+}
|
|
|
+.table-wrapper {
|
|
|
+ max-width: calc(100vw - 20px);
|
|
|
+ margin: 0 auto;
|
|
|
+ overflow: auto;
|
|
|
+}
|
|
|
+table {
|
|
|
+ width: 100%;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #333;
|
|
|
+ td,
|
|
|
+ th {
|
|
|
+ // min-width: 120px;
|
|
|
+ word-break: break-all;
|
|
|
+ word-wrap: break-word;
|
|
|
+ line-height: 1.2em;
|
|
|
+ border: 1px solid #dcdfe6;
|
|
|
+ // height: 40px;
|
|
|
+ text-align: center;
|
|
|
+ background-color: #fff;
|
|
|
+ border-left: none;
|
|
|
+ border-top: none;
|
|
|
+ &:first-child {
|
|
|
+ border-left: 1px solid #dcdfe6;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .data-cell{
|
|
|
+ color: #333;
|
|
|
+ &.one-bg {
|
|
|
+ background-color: #EFEEF1;
|
|
|
+ }
|
|
|
+ &.two-bg {
|
|
|
+ background-color: #fff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .thead-sticky {
|
|
|
+ position: sticky;
|
|
|
+ top: 0;
|
|
|
}
|
|
|
+
|
|
|
+ .head-column {
|
|
|
+ background-color: #505B78;
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ .split-word {
|
|
|
+ span { display: inline; }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.pc-sty table {
|
|
|
+ table-layout: auto;
|
|
|
+ td,th {
|
|
|
+ width: auto;
|
|
|
+ height: auto;
|
|
|
+ padding: 0.4em 0;
|
|
|
+ }
|
|
|
+}
|
|
|
}
|
|
|
</style>
|