Browse Source

修改表格自定义列宽完整版

zq-tableui
zq 2 months ago
parent
commit
5b95ce30b0
  1. 13
      package-lock.json
  2. 2
      package.json
  3. 228
      src/mixins/tableResizeMixin.js
  4. 33
      src/views/elementGroups.vue
  5. 585
      src/views/super/Ranking/RankBatchList.vue

13
package-lock.json

@ -11,8 +11,10 @@
"axios": "^1.8.3", "axios": "^1.8.3",
"core-js": "^3.40.0", "core-js": "^3.40.0",
"element-ui": "^2.15.14", "element-ui": "^2.15.14",
"lodash-es": "^4.17.21",
"lottie-web": "^5.12.2", "lottie-web": "^5.12.2",
"regenerator-runtime": "^0.14.1", "regenerator-runtime": "^0.14.1",
"resize-observer-polyfill": "^1.5.1",
"vue": "^2.6.14", "vue": "^2.6.14",
"vue-clickaway": "^2.2.2", "vue-clickaway": "^2.2.2",
"vue-router": "^3.5.1", "vue-router": "^3.5.1",
@ -7568,6 +7570,12 @@
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
"dev": true "dev": true
}, },
"node_modules/lodash-es": {
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
"integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==",
"license": "MIT"
},
"node_modules/lodash.debounce": { "node_modules/lodash.debounce": {
"version": "4.0.8", "version": "4.0.8",
"resolved": "https://registry.npmmirror.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "resolved": "https://registry.npmmirror.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
@ -9695,8 +9703,9 @@
}, },
"node_modules/resize-observer-polyfill": { "node_modules/resize-observer-polyfill": {
"version": "1.5.1", "version": "1.5.1",
"resolved": "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
"integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==",
"license": "MIT"
}, },
"node_modules/resolve": { "node_modules/resolve": {
"version": "1.22.10", "version": "1.22.10",

2
package.json

@ -11,8 +11,10 @@
"axios": "^1.8.3", "axios": "^1.8.3",
"core-js": "^3.40.0", "core-js": "^3.40.0",
"element-ui": "^2.15.14", "element-ui": "^2.15.14",
"lodash-es": "^4.17.21",
"lottie-web": "^5.12.2", "lottie-web": "^5.12.2",
"regenerator-runtime": "^0.14.1", "regenerator-runtime": "^0.14.1",
"resize-observer-polyfill": "^1.5.1",
"vue": "^2.6.14", "vue": "^2.6.14",
"vue-clickaway": "^2.2.2", "vue-clickaway": "^2.2.2",
"vue-router": "^3.5.1", "vue-router": "^3.5.1",

228
src/mixins/tableResizeMixin.js

@ -0,0 +1,228 @@
import ResizeObserver from 'resize-observer-polyfill';
import {
debounce
} from 'lodash-es';
export default {
data() {
return {
tableResizeObserver: null,
tableWidth: 0
};
},
methods: {
// 初始化表格宽度监听
initTableResizeObserver(tableRef, containerRef) {
this.$nextTick(() => {
const container = containerRef ? this.$refs[containerRef] : this.$el;
if (!container) {
console.warn('Table container not found');
return;
}
// 先断开已有观察者
this.destroyTableResizeObserver();
this.tableResizeObserver = new ResizeObserver(
debounce(entries => {
const entry = entries[0];
const newWidth = entry.contentRect.width;
if (Math.abs(newWidth - this.tableWidth) > 5) {
this.tableWidth = newWidth;
this.syncTableColumns(tableRef);
}
}, 100)
);
try {
this.tableResizeObserver.observe(container);
} catch (err) {
console.error('Failed to observe table:', err);
}
});
},
// 同步表头和表体列宽
syncTableColumns(tableRef) {
// const table = this.$refs[tableRef];
const table = this.$refs[tableRef].$refs.guiptable;
// console.log(table, 'table====--');
if (!table) return;
let columns = table.columns;
// console.log(table,table['columns'],table.bodyWidth,'table.columns===');
// 计算各列宽度(由具体组件实现)
const columnWidths = this.calculateColumnWidths();
if (!columnWidths) return;
// console.log(columnWidths, 'table.columns===');
// 设置列宽并同步表头表体
this.$nextTick(() => {
// 设置列定义中的宽度
columns.forEach(column => {
// console.log(column.property,'columns====columns');
if (columnWidths[column.property]) {
column.width = columnWidths[column.property];
}
});
// 同步DOM元素的宽度
// const headerCols = table.$el.querySelectorAll('.el-table__header col');
// const bodyCols = table.$el.querySelectorAll('.el-table__body col');
// columns.forEach((column, index) => {
// if (columnWidths[column.property] && headerCols[index] && bodyCols[index]) {
// const width = columnWidths[column.property];
// headerCols[index].width = width;
// headerCols[index].style.setProperty('width',`${width}px`, 'important');
// // headerCols[index].style.width = `${width}px`;
// bodyCols[index].width = width;
// bodyCols[index].style.setProperty('width',`${width}px`, 'important');
// // bodyCols[index].style.width = `${width}px`;
// }
// });
// 强制表格重新布局
table.doLayout();
// this.syncFixedColumns(table);
this.$nextTick(() => {
// 3. 同步主表格
this.syncColumns(
table.$el,
columnWidths,
table.columns
);
// 4. 同步固定列
const fixedLeft = table.$el.querySelector('.el-table__fixed');
const fixedRight = table.$el.querySelector('.el-table__fixed-right');
if (fixedLeft) this.syncColumns(fixedLeft, columnWidths, table.columns);
if (fixedRight) this.syncColumns(fixedRight, columnWidths, table.columns);
// 5. 强制布局更新(需要两次nextTick确保固定列更新)
this.$nextTick(() => {
table.doLayout();
setTimeout(() => table.doLayout(), 50);
});
});
});
},
syncColumns(container, columnWidths, columns) {
const headerCols = container.querySelectorAll('.el-table__header col, [class*=-header-wrapper] col');
const bodyCols = container.querySelectorAll('.el-table__body col, [class*=-body-wrapper] col');
columns.forEach((column, index) => {
const width = columnWidths[column.property];
if (width && headerCols[index] && bodyCols[index]) {
headerCols[index].width = width;
// headerCols[index].style.width = `${width}px`;
headerCols[index].style.setProperty('width',`${width}px`, 'important');
bodyCols[index].width = width;
// bodyCols[index].style.width = `${width}px`;
bodyCols[index].style.setProperty('width',`${width}px`, 'important');
}
});
},
// syncTableColumns(tableRef) {
// const table = this.$refs[tableRef].$refs.guiptable;
// if (!table) return;
// // 计算各列宽度
// const columnWidths = this.calculateColumnWidths();
// if (!columnWidths) return;
// this.$nextTick(() => {
// // 1. 设置列定义的宽度
// table.columns.forEach(column => {
// if (columnWidths[column.property]) {
// column.width = columnWidths[column.property];
// column.realWidth = columnWidths[column.property]; // 关键:设置realWidth
// }
// });
// // 2. 同步DOM元素的宽度
// const headerCols = table.$el.querySelectorAll('.el-table__header col');
// const bodyCols = table.$el.querySelectorAll('.el-table__body col');
// const headerCells = table.$el.querySelectorAll('.el-table__header .cell');
// // const bodyCells = table.$el.querySelectorAll('.el-table__body .cell');
// table.columns.forEach((column, index) => {
// if (columnWidths[column.property]) {
// const width = columnWidths[column.property];
// // 同步colgroup中的宽度
// if (headerCols[index]) {
// headerCols[index].width = width;
// headerCols[index].style.width = `${width}px`;
// }
// if (bodyCols[index]) {
// bodyCols[index].width = width;
// bodyCols[index].style.width = `${width}px`;
// }
// // 同步单元格的实际宽度
// if (headerCells[index]) {
// headerCells[index].style.width = `${width}px`;
// }
// // body单元格通常不需要强制设置宽度
// }
// });
// // 3. 强制更新布局
// table.store.scheduleLayout();
// // 4. 处理固定列
// this.syncFixedColumns(table);
// });
// },
// syncFixedColumns(table) {
// // 处理左侧固定列
// const fixedLeftWrapper = table.$el.querySelector('.el-table__fixed');
// if (fixedLeftWrapper) {
// const fixedLeftCols = fixedLeftWrapper.querySelectorAll('col');
// const originalCols = table.$el.querySelectorAll('.el-table__header col');
// fixedLeftCols.forEach((col, index) => {
// if (originalCols[index]) {
// const width = originalCols[index].width;
// col.width = width;
// // col.style.width = `${width}px`;
// col.style.setProperty('width',`${width}px`, 'important');
// }
// });
// // 强制重绘固定列
// fixedLeftWrapper.style.display = 'none';
// this.$nextTick(() => {
// fixedLeftWrapper.style.display = '';
// });
// }
// // 同样处理右侧固定列...
// },
// 销毁观察者
destroyTableResizeObserver() {
if (this.tableResizeObserver) {
this.tableResizeObserver.disconnect();
this.tableResizeObserver = null;
}
},
// 需要组件自己实现的计算列宽方法
calculateColumnWidths() {
throw new Error('Component must implement calculateColumnWidths method');
}
},
beforeDestroy() {
this.destroyTableResizeObserver();
}
};

33
src/views/elementGroups.vue

@ -28,10 +28,10 @@
defaultValue="全部检测类型" @change="changeSelectType" /> defaultValue="全部检测类型" @change="changeSelectType" />
</template> </template>
<template slot-scope="scope"> <template slot-scope="scope">
{{ type2name[scope.row.type] }} {{ type2name[scope.row.type] }}
</template> </template>
</el-table-column> --> </el-table-column> -->
<el-table-column prop="created_at" label="时间" width="200"> <el-table-column prop="created_at" label="时间" width="200">
<template slot-scope="scope"> <template slot-scope="scope">
@ -43,8 +43,8 @@
'0' ? '文字居中' : '文字居中' }}</span> '0' ? '文字居中' : '文字居中' }}</span>
</GuipToolTip> </GuipToolTip>
<GuipToolTip content="图标居中"> <GuipToolTip content="图标居中">
<svg-icon size="16" :path="require('@/assets/register/tableEdit.svg')" :color="'#8A9099'" <svg-icon size="16" :path="require('@/assets/register/tableEdit.svg')"
:hoverColor="'#006AFF'" /> :color="'#8A9099'" :hoverColor="'#006AFF'" />
</GuipToolTip> </GuipToolTip>
</div> </div>
@ -58,8 +58,8 @@
scope.row.payment scope.row.payment
== ==
'0' ? '单元格局中' : '单元格局中' }}</span> '0' ? '单元格局中' : '单元格局中' }}</span>
<svg-icon size="16" :path="require('@/assets/register/tableEdit.svg')" :color="'#8A9099'" <svg-icon size="16" :path="require('@/assets/register/tableEdit.svg')"
:hoverColor="'#006AFF'" /> :color="'#8A9099'" :hoverColor="'#006AFF'" />
</div> </div>
</GuipToolTip> </GuipToolTip>
@ -218,8 +218,8 @@
</div> </div>
<div class="ele-item"> <div class="ele-item">
<label for="">文字按钮</label> <label for="">文字按钮</label>
<GuipButton type="text" >强引导</GuipButton> <GuipButton type="text">强引导</GuipButton>
<GuipButton type="grey" >弱引导</GuipButton> <GuipButton type="grey">弱引导</GuipButton>
</div> </div>
<div class="ele-item"> <div class="ele-item">
<label for="">独特按钮可以自定义划过时 图标图片文字颜色</label> <label for="">独特按钮可以自定义划过时 图标图片文字颜色</label>
@ -395,6 +395,7 @@ export default {
}, },
data() { data() {
return { return {
tableWidth: 0,
currentPage: 1, // currentPage: 1, //
pageSize: 5, // pageSize: 5, //
total: 0, // total: 0, //
@ -556,7 +557,7 @@ export default {
label: "广州", label: "广州",
} }
], ],
tableData:[], tableData: [],
input: 'hahhahah', input: 'hahhahah',
defaultValue: 'asdasda', defaultValue: 'asdasda',
radio: 3, radio: 3,
@ -605,10 +606,12 @@ export default {
}], }],
} }
}, },
mounted() { mounted() {
this.getList(); this.getList();
this.getStagePurchase() this.getStagePurchase()
// this.$loadingFn.show() // this.$loadingFn.show()
// setInterval(()=>{ // setInterval(()=>{
// this.$loadingFn.hide() // this.$loadingFn.hide()
@ -620,10 +623,11 @@ export default {
}, },
methods: { methods: {
openMessage(type){
openMessage(type) {
console.log(type); console.log(type);
// //
switch(type){ switch (type) {
case 'success': case 'success':
this.$Message.success('成功,文案自定义') this.$Message.success('成功,文案自定义')
break; break;
@ -666,15 +670,15 @@ export default {
type: 0, type: 0,
cur_page: 1, cur_page: 1,
page_size: 5, page_size: 5,
},{ }, {
headers:{ headers: {
'AUTH': '3c901fa4a19a7ad9d01238890863d499' 'AUTH': '3c901fa4a19a7ad9d01238890863d499'
} }
}).then(response => { }).then(response => {
this.tableLoading = false this.tableLoading = false
this.$nextTick(() => { this.$nextTick(() => {
that.tableData = response.data.list that.tableData = response.data.list
console.log(that.tableData,'---that.tableData'); console.log(that.tableData, '---that.tableData');
// that.type2name = response.data.type2name // that.type2name = response.data.type2name
that.total = response.data.total that.total = response.data.total
}) })
@ -830,6 +834,7 @@ export default {
// loading // loading
this.$store.dispatch('hideContentLoading') this.$store.dispatch('hideContentLoading')
} }
} }

585
src/views/super/Ranking/RankBatchList.vue

@ -2,17 +2,13 @@
<div class="demo-wrap min-flex-right"> <div class="demo-wrap min-flex-right">
<div class="flex-between"> <div class="flex-between">
<h2>{{ pageTitle }}</h2> <h2>{{ pageTitle }}</h2>
<CustomDropdown ref="dropdownRef" <CustomDropdown ref="dropdownRef" :placeholder="'('+viewDesc[this.view]+')'+text" width="280px">
:placeholder="'('+viewDesc[this.view]+')'+text" <DateSelect slot="normal" :view="view" v-model="selectedDate" @update-count="handleUpdateView"
width="280px"> @change="handleDateChange" />
<DateSelect slot="normal"
:view="view"
v-model="selectedDate"
@update-count="handleUpdateView"
@change="handleDateChange"/>
</CustomDropdown> </CustomDropdown>
</div> </div>
<div v-if="dataRank == 1 && (dataType == 'ver_type' || dataType == 'check_type')" style="margin-bottom: 20px;text-align: left"> <div v-if="dataRank == 1 && (dataType == 'ver_type' || dataType == 'check_type')"
style="margin-bottom: 20px;text-align: left">
<el-alert type="info" :closable="false" show-icon> <el-alert type="info" :closable="false" show-icon>
<template #title> <template #title>
未计成本 未计成本
@ -33,55 +29,61 @@
</div> </div>
<div class=" flex-common" id=""> <div class=" flex-common" id="">
<el-form> <el-form>
<el-table :data="tableData" <div class="table-container" ref="tableContainer">
style="width: 100%" <!-- @cell-mouse-enter="handleRowHover" -->
@sort-change="handleSortChange"
@cell-mouse-enter="handleRowHover">
<el-table-column prop="sort" label="排序" width="95"></el-table-column> <GuipTable :tableData="tableData" style="width: 100%;" @sort-change="handleSortChange"
ref="elTable" >
<el-table-column prop="sort" label="排序" fixed="left"></el-table-column>
<el-table-column prop="sort" label="排序"></el-table-column>
<el-table-column prop="sort" label="排序"></el-table-column>
<el-table-column prop="sort" label="排序"></el-table-column>
<el-table-column prop="sort" label="排序"></el-table-column>
<el-table-column <el-table-column
v-if="(dataRank == 1 || dataRank == 2) && (dataType == 'ver_type' || dataType == 'check_type')" v-if="(dataRank == 1 || dataRank == 2) && (dataType == 'ver_type' || dataType == 'check_type')"
prop="name" prop="name" :key="selectedType" :label="type_select[selectedType]">
:key="selectedType"
:label="type_select[selectedType]" width="250">
<template slot="header"> <template slot="header">
<el-select class="custom-select" popper-class="custom-select-dropdown" v-model="selectedType" @change="changeRankType"> <el-select class="custom-select tableHeaderSelect" popper-class="custom-select-dropdown"
<el-option v-for="(item,type) in type_select" v-model="selectedType" @change="changeRankType">
:key="type" <el-option v-for="(item,type) in type_select" :key="type" :label="item"
:label="item"
:value="type"> :value="type">
</el-option> </el-option>
</el-select> </el-select>
</template> </template>
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.name }} <GuipToolTip :content="scope.row.name">
<div class="cell-content nowrap">{{ scope.row.name }}</div>
</GuipToolTip>
</template>
</el-table-column>
<el-table-column v-else prop="name" :label="type_desc[dataType]">
<template slot-scope="scope">
<GuipToolTip :content="scope.row.name">
<div class="cell-content nowrap">{{ scope.row.name }}</div>
</GuipToolTip>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-else prop="name" :label="type_desc[dataType]" width="250"></el-table-column>
<el-table-column v-for="(field, index) in valueFields" <el-table-column v-for="(field, index) in valueFields" :key="field"
:key="field" :label="labels[index] + (index == 3 ? current_month : '')" :prop="'value_' + String(index + 1)"
:label="labels[index] + (index == 3 ? current_month : '')"
:prop="String(index + 1)"
sortable="custom"> sortable="custom">
<!--产品利润排行展示查看更多--> <!--产品利润排行展示查看更多-->
<template v-if="index == 3 && dataRank == 1" v-slot="{ row, $index }"> <template v-if="index == 3 && dataRank == 1" v-slot="{ row, $index }">
<el-popover v-model="row.id_popover" <el-popover v-model="row.id_popover" placement="top" trigger="manual"
placement="top" :ref="`popover-${$index}`" @show="popshow">
trigger="manual"
:ref="`popover-${$index}`"
@show="popshow">
<div v-if="type != 'agent'" class="pop-wrap"> <div v-if="type != 'agent'" class="pop-wrap">
<div class="flex-between flex pop-top"> <div class="flex-between flex pop-top">
<h3> <h3>
{{ text }} {{ row.name }} {{ text }} {{ row.name }}
<span @click="goLookMoreData(row.id)">查看更多</span> <span class="lookMore" @click="goLookMoreData(row.id)">查看更多</span>
</h3> </h3>
<span class="flex point" @click="closePop(row,'id')"> <span class="flex point" @click="closePop(row,'id')">
关闭<img src="@/assets/register/close.svg"> 关闭<img src="@/assets/register/close.svg">
@ -103,7 +105,7 @@
<div class="flex-between flex pop-top"> <div class="flex-between flex pop-top">
<h3> <h3>
{{ text }} {{ row.name }} {{ text }} {{ row.name }}
<span @click="goLookCheckTypeRank(row.id)">查看更多</span> <span class="lookMore" @click="goLookCheckTypeRank(row.id)">查看更多</span>
</h3> </h3>
<span class="flex point" @click="closePop(row,'id')"> <span class="flex point" @click="closePop(row,'id')">
关闭<img src="@/assets/register/close.svg"> 关闭<img src="@/assets/register/close.svg">
@ -132,10 +134,13 @@
<div class="flex" slot="reference"> <div class="flex" slot="reference">
{{ row[field] }} {{ row[field] }}
<HoverImage v-if="show_detail_index == row.sort && row[field] > 0" <!-- <HoverImage v-if="show_detail_index == row.sort && row[field] > 0"
@click="handleClick(row, $index, 'id')" @click="handleClick(row, $index, 'id')"
:normal="require('@/assets/super/list-detail.svg')" :normal="require('@/assets/super/list-detail.svg')"
:hover="require('@/assets/super/list-detail-hover.svg')"/> :hover="require('@/assets/super/list-detail-hover.svg')" /> -->
<svg-icon :size="16" :path="require('@/assets/super/list-detail.svg')"
:color="'#8A9099'" :hoverColor="'#006AFF'"
@click="handleClick(row, $index, 'id')" />
</div> </div>
</el-popover> </el-popover>
</template> </template>
@ -147,18 +152,17 @@
</el-table-column> </el-table-column>
<!--产品利润排行展示代理商排行--> <!--产品利润排行展示代理商排行-->
<el-table-column v-if="dataRank == 1 && (dataType == 'ver_type' || dataType == 'check_type')" key="top" prop="top" :label="'代理商排行'+current_month" width="250"> <el-table-column fixed="right" v-if="dataRank == 1 && (dataType == 'ver_type' || dataType == 'check_type')"
key="top" prop="id" :label="'代理商排行'+current_month" :width="valueFields.id">
<template v-slot="{ row, $index }"> <template v-slot="{ row, $index }">
<el-popover v-model="row.id_popover_2" <el-popover v-model="row.id_popover_2" :append-to-body="false"
placement="top" popper-class="custom-popover" trigger="manual" :visible-arrow="true"
trigger="manual" :ref="`popover_2-${$index}`" @show="popshow">
:ref="`popover_2-${$index}`"
@show="popshow">
<div class="pop-wrap"> <div class="pop-wrap">
<div class="flex-between flex pop-top"> <div class="flex-between flex pop-top">
<h3> <h3>
{{ row.name }} 代理商排行 {{ row.name }} 代理商排行
<span @click="goLookAgentRank(row.id)">查看更多</span> <span class="lookMore" @click="goLookAgentRank(row.id)">查看更多</span>
</h3> </h3>
<span class="flex point" @click="closePop(row,'id')"> <span class="flex point" @click="closePop(row,'id')">
关闭<img src="@/assets/register/close.svg"> 关闭<img src="@/assets/register/close.svg">
@ -170,25 +174,29 @@
<el-table-column prop="value_1" width="200" label="销售额"></el-table-column> <el-table-column prop="value_1" width="200" label="销售额"></el-table-column>
</el-table> </el-table>
</div> </div>
<span v-if="top_list[row.id]" slot="reference"> <div slot="reference">
No.1 {{ top_list[row.id]['name'] }} <GuipToolTip :content="' No.1 '+top_list[row.id]['name']"
<HoverImage v-if="show_detail_index == row.sort" v-if="top_list[row.id]">
@click="handleClick2(row, $index, 'id')" <div class="flex">
:normal="require('@/assets/super/list-detail.svg')" <span class="cell-content nowrap"> No.1 {{ top_list[row.id]['name']
:hover="require('@/assets/super/list-detail-hover.svg')"/> }}</span>
</span> <svg-icon :size="16" :path="require('@/assets/super/list-detail.svg')"
<span v-else slot="reference">暂无排行</span> :color="'#8A9099'" :hoverColor="'#006AFF'"
@click="handleClick2(row, $index, 'id')" />
</div>
</GuipToolTip>
<span class="cell-content" v-else>暂无排行</span>
</div>
</el-popover> </el-popover>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </GuipTable>
<el-pagination background </div>
@size-change='handleSizeChange' <el-pagination background @size-change='handleSizeChange' @current-change='handleCurrentChange'
@current-change='handleCurrentChange' :current-page="currentPage" :page-size=pageSize layout="prev, pager, next,jumper" :total="total">
:current-page="currentPage"
:page-size=pageSize
layout="prev, pager, next,jumper"
:total="parseInt(total)">
</el-pagination> </el-pagination>
</el-form> </el-form>
</div> </div>
@ -196,11 +204,17 @@
</template> </template>
<script> <script>
import DateSelect from '@/components/super/DateSelect.vue'; import DateSelect from '@/components/super/DateSelect.vue';
import HoverImage from '@/components/super/HoverImage.vue'; // import HoverImage from '@/components/super/HoverImage.vue';
import CustomDropdown from '@/components/CustomDropdown.vue'; import CustomDropdown from '@/components/CustomDropdown.vue';
import GuipTable from '@/components/GuipTable.vue';
import GuipToolTip from '@/components/GuipToolTip.vue';
import SvgIcon from '@/components/SvgIcon.vue';
// import { debounce } from 'lodash-es';
// import ResizeObserver from 'resize-observer-polyfill';
import tableResizeMixin from '@/mixins/tableResizeMixin'
export default { export default {
name: 'rank_batch_list', name: 'rank_batch_list',
mixins: [tableResizeMixin],
props: { props: {
pageTitle: { pageTitle: {
type: String, type: String,
@ -216,12 +230,17 @@ export default {
} }
}, },
components: { components: {
HoverImage, // HoverImage,
GuipToolTip,
DateSelect, DateSelect,
GuipTable,
SvgIcon,
CustomDropdown CustomDropdown
}, },
data() { data() {
return { return {
resizePending: false,
resizeObserver: null,
viewDesc: { viewDesc: {
'month': '月份', 'month': '月份',
'monthTwo': '月份', 'monthTwo': '月份',
@ -242,10 +261,31 @@ export default {
'ver_type': '按品牌名称', 'ver_type': '按品牌名称',
'check_type': '按服务名称', 'check_type': '按服务名称',
}, },
tableWidth: 0,
//
columnRatios: {
sort: 0.08, // 20%
name: 0.12, // 30%
value_1: 0.14, // 50%
value_2: 0.14, // 50%
value_3: 0.16, // 50%
value_4: 0.18, // 50%
id: 0.18 // 50%
},
//
minWidths: {
name: 120, // 30%
sort: 90, // 20%
value_1: 120, // 50%
value_2: 120, // 50%
value_3: 120, // 50%
value_4: 120, // 50%
id: 120 // 50%
},
selectedType: 'check_type', selectedType: 'check_type',
view: 'month', view: 'month',
labels: ['', '', '', ''], labels: ['', '', '', ''],
current_month:'', current_month: '',
valueFields: ['value_1', 'value_2', 'value_3', 'value_4'], valueFields: ['value_1', 'value_2', 'value_3', 'value_4'],
currentPage: 1, // currentPage: 1, //
pageSize: 20, // pageSize: 20, //
@ -264,14 +304,176 @@ export default {
}, },
mounted() { mounted() {
this.init() this.init()
this.$nextTick(() => {
this.initTableResizeObserver('elTable', 'tableContainer')
});
},
computed: {
//
// columnWidths() {
// if (!this.tableWidth) return {};
// //
// const availableWidth = this.tableWidth - 2;
// return Object.keys(this.columnRatios).reduce((acc, key) => {
// const calculatedWidth = Math.floor(availableWidth * this.columnRatios[key]);
// acc[key] = Math.max(calculatedWidth, this.minWidths[key]);
// return acc;
// }, {});
// }
}, },
computed: {},
watch: { watch: {
'$route'() { '$route'() {
this.init() this.init()
} }
}, },
methods: { methods: {
calculateColumnWidths() {
if (!this.tableWidth) return {};
const availableWidth = this.tableWidth ;
const widths = {};
Object.keys(this.columnRatios).forEach(prop => {
const calculatedWidth = Math.floor(availableWidth * this.columnRatios[prop]);
// acc[key] = Math.max(calculatedWidth, this.minWidths[key]);
widths[prop] = Math.max(
Math.floor(calculatedWidth, this.minWidths[prop]),
80 //
);
});
return widths;
},
// destroyResizeObserver() {
// if (this.resizeObserver) {
// this.resizeObserver.disconnect();
// this.resizeObserver = null;
// }
// },
// // ResizeObserver
// initResizeObserver() {
// const container = this.$refs.tableContainer;
// if (!container) {
// console.error('Table container element not found');
// return;
// }
// //
// this.destroyResizeObserver();
// //
// this.resizeObserver = new ResizeObserver(
// debounce((entries) => {
// this.handleResize(entries);
// }, 100) // 100ms
// );
// console.log( this.resizeObserver,' this.resizeObserver');
// try {
// //
// this.resizeObserver.observe(container);
// } catch (error) {
// console.error('Failed to observe element11:', error);
// }
// },
// handleResize(entries) {
// for (const entry of entries) {
// this.tableWidth = entry.contentRect.width;
// this.$nextTick(() => {
// if (this.$refs.comTable) {
// this.$refs.comTable.doLayout();
// }
// });
// }
// },
// handleResize(entries) {
// const entry = entries[0];
// const newWidth = entry.contentRect.width;
// if (Math.abs(newWidth - this.tableWidth) > 5) {
// this.tableWidth = newWidth;
// this.syncColumnWidths();
// }
// },
// syncColumnWidths() {
// const table = this.$refs.comTable;
// if (!table) return;
// const availableWidth = this.tableWidth - 20;
// //
// table.columns.forEach(column => {
// const ratio = this.columnRatios[column.property];
// if (ratio) {
// column.width = Math.max(
// Math.floor(availableWidth * ratio),
// 80
// );
// }
// });
// //
// this.$nextTick(() => {
// const headerCols = table.$el.querySelectorAll('.el-table__header col');
// const bodyCols = table.$el.querySelectorAll('.el-table__body col');
// table.columns.forEach((col, index) => {
// if (headerCols[index] && bodyCols[index] && col.width) {
// headerCols[index].width = col.width;
// headerCols[index].style.width = `${col.width}px`;
// bodyCols[index].width = col.width;
// bodyCols[index].style.width = `${col.width}px`;
// }
// });
// console.log(table.columns,'table.columns=---');
// table.doLayout();
// });
// },
// //
// updateTableLayout() {
// if (this.$refs.elTable) {
// this.$refs.elTable.doLayout();
// }
// },
// //
// handleColumnResize(newWidth, oldWidth, column) {
// if (!this.tableWidth) return;
// // key
// const columnKey = column.property;
// if (!columnKey || !this.columnRatios[columnKey]) return;
// //
// const availableWidth = this.tableWidth - 2;
// const newRatio = newWidth / availableWidth;
// //
// this.columnRatios[columnKey] = Math.max(
// newRatio,
// this.minWidths[columnKey] / availableWidth
// );
// //
// this.balanceColumnRatios(columnKey);
// },
// //
// balanceColumnRatios(changedColumnKey) {
// const otherColumns = Object.keys(this.columnRatios).filter(key => key !== changedColumnKey);
// const totalUsedRatio = Object.values(this.columnRatios).reduce((sum, ratio) => sum + ratio, 0);
// if (totalUsedRatio > 1) {
// // 1
// const overflow = totalUsedRatio - 1;
// const otherTotalRatio = otherColumns.reduce((sum, key) => sum + this.columnRatios[key], 0);
// otherColumns.forEach(key => {
// this.columnRatios[key] -= (this.columnRatios[key] / otherTotalRatio) * overflow;
// });
// }
// },
init() { init() {
document.title = this.pageTitle; document.title = this.pageTitle;
@ -381,11 +583,11 @@ export default {
if (this.dataType == 'check_type') { if (this.dataType == 'check_type') {
obj.check_type = row.id obj.check_type = row.id
} }
if(this.dataType == 'agent'){ if (this.dataType == 'agent') {
let obj = {} let obj = {}
obj.aid = row.id obj.aid = row.id
this.getCheckTypeRankingList(obj); this.getCheckTypeRankingList(obj);
}else{ } else {
this.getRankingDetail(obj); this.getRankingDetail(obj);
} }
}, },
@ -423,7 +625,7 @@ export default {
item.removeAttribute('aria-hidden') item.removeAttribute('aria-hidden')
}) })
}, },
handleSortChange({prop, order}) { handleSortChange({ prop, order }) {
this.sort_by = 4; this.sort_by = 4;
this.sort_order = 2; this.sort_order = 2;
if (order == 'ascending') { if (order == 'ascending') {
@ -466,7 +668,7 @@ export default {
const currentMonth = new Date().getMonth() + 1; const currentMonth = new Date().getMonth() + 1;
this.current_month = ''; this.current_month = '';
if(this.view === 'month' && year == currentYear && month == currentMonth){ if (this.view === 'month' && year == currentYear && month == currentMonth) {
this.current_month = '(当月)'; this.current_month = '(当月)';
} }
@ -528,27 +730,194 @@ export default {
console.error(error, 'error') console.error(error, 'error')
}) })
}, },
getTypeRanking() { async getTypeRanking() {
// //
const that = this const that = this
that.tableData = [] that.tableData = [
that.top_list = [] {
this.$http('POST', '/supernew/ajax_get_type_batch_list', { id: 6,
date: that.text, name: "维普大学生版",
rank_type: that.dataRank, sort: 1,
sort_by: that.sort_by, value_1: "23754.25",
sort_order: that.sort_order, value_2: "43012.15",
cur_page: that.currentPage, value_3: "61869.09",
page_size: that.pageSize, value_4: "425537.45"
}).then(response => { },
this.$nextTick(() => { {
that.tableData = response.data.list id: 94,
that.top_list = response.data.top_list name: "AI中文范文",
that.total = response.data.total sort: 2,
}) value_1: "8839.00",
}).catch(error => { value_2: "50174.00",
console.error(error, 'error') value_3: "120911.00",
}) value_4: "158772.50"
},
{
id: 6,
name: "维普大学生版",
sort: 11,
value_1: "23754.25",
value_2: "43012.15",
value_3: "61869.09",
value_4: "425537.45"
},
{
id: 94,
name: "AI中文范文",
sort: 21,
value_1: "8839.00",
value_2: "50174.00",
value_3: "120911.00",
value_4: "158772.50"
},
{
id: 6,
name: "维普大学生版",
sort: 12,
value_1: "23754.25",
value_2: "43012.15",
value_3: "61869.09",
value_4: "425537.45"
},
{
id: 94,
name: "AI中文范文",
sort: 22,
value_1: "8839.00",
value_2: "50174.00",
value_3: "120911.00",
value_4: "158772.50"
},
{
id: 6,
name: "维普大学生版",
sort: 13,
value_1: "23754.25",
value_2: "43012.15",
value_3: "61869.09",
value_4: "425537.45"
},
{
id: 94,
name: "AI中文范文",
sort: 23,
value_1: "8839.00",
value_2: "50174.00",
value_3: "120911.00",
value_4: "158772.50"
},
{
id: 6,
name: "维普大学生版",
sort: 14,
value_1: "23754.25",
value_2: "43012.15",
value_3: "61869.09",
value_4: "425537.45"
},
{
id: 94,
name: "AI中文范文",
sort: 24,
value_1: "8839.00",
value_2: "50174.00",
value_3: "120911.00",
value_4: "158772.50"
},
{
id: 6,
name: "维普大学生版",
sort: 15,
value_1: "23754.25",
value_2: "43012.15",
value_3: "61869.09",
value_4: "425537.45"
},
{
id: 94,
name: "AI中文范文",
sort: 25,
value_1: "8839.00",
value_2: "50174.00",
value_3: "120911.00",
value_4: "158772.50"
},
{
id: 6,
name: "维普大学生版",
sort: 16,
value_1: "23754.25",
value_2: "43012.15",
value_3: "61869.09",
value_4: "425537.45"
},
{
id: 94,
name: "AI中文范文",
sort: 26,
value_1: "8839.00",
value_2: "50174.00",
value_3: "120911.00",
value_4: "158772.50"
},
{
id: 6,
name: "维普大学生版",
sort: 17,
value_1: "23754.25",
value_2: "43012.15",
value_3: "61869.09",
value_4: "425537.45"
},
{
id: 94,
name: "AI中文范文",
sort: 27,
value_1: "8839.00",
value_2: "50174.00",
value_3: "120911.00",
value_4: "158772.50"
},
{
id: 6,
name: "维普大学生版",
sort: 18,
value_1: "23754.25",
value_2: "43012.15",
value_3: "61869.09",
value_4: "425537.45"
},
]
that.top_list = {
6: {
id: "6",
name: "千校论文查重平台",
value_1: "214535.80"
},
94: {
id: "94",
name: "尚志教育",
value_1: "149840.50"
}
}
// this.$http('POST', '/supernew/ajax_get_type_batch_list', {
// date: that.text,
// rank_type: that.dataRank,
// sort_by: that.sort_by,
// sort_order: that.sort_order,
// cur_page: that.currentPage,
// page_size: that.pageSize,
// }).then(response => {
// this.$nextTick(() => {
// that.tableData = response.data.list
// that.top_list = response.data.top_list
// that.total = response.data.total
// })
// }).catch(error => {
// console.error(error, 'error')
// })
}, },
getRankingDetail(obj) { getRankingDetail(obj) {
const that = this const that = this
@ -609,8 +978,50 @@ export default {
this.currentPage = val this.currentPage = val
this.getRankingData() this.getRankingData()
}, },
},
beforeDestory() {
if (this.resizeObserver) {
this.resizeObserver.disconnect();
}
} }
} }
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
/* 防止表头单元格内容换行 */
// .table-container .el-table__header .cell {
// white-space: nowrap;
// }
// /* */
// .table-container .el-table__body .cell {
// overflow: hidden;
// text-overflow: ellipsis;
// white-space: nowrap;
// }
// ::v-deep .el-table__header colgroup col {
// width: auto !important;
// }
.lookMore {
cursor: pointer;
font-weight: 400;
}
.table-container {
width: 100%;
overflow: hidden;
}
// .cell-content {
// white-space: nowrap;
// overflow: hidden;
// text-overflow: ellipsis;
// max-width: 100px; /* */
// }
.tableHeaderSelect ::v-deep .el-input__inner {
font-size: 14px;
font-weight: normal;
letter-spacing: 0.08em;
font-family: Microsoft YaHei UI;
color: #1E2226;
}
</style> </style>
Loading…
Cancel
Save