公司渲染表格数据时需要将空数据显示‘-’,并且对于每一列数据的显示也有一定的要求,基于这个需求对element-plus简单进行了二次封装。
具体包括以下几点(持续更新中):
1.空数据显示‘-’
2.固定表格高度
3.支持多选表格
4. 自定义列宽
{{ checkEmpty(row[column.prop]) }}import { checkEmpty, getColumnWidth } from "@/utils/util"; const props = defineProps({ dataSource: { type: Array, default: () => [], }, columns: { type: Array, default: () => [], }, vdaH: { type: Number, default: 300, }, hideOperation: { type: Boolean, default: false, }, operationWidth: { type: String, default: "100", }, loading: { type: Boolean, default: false, }, //是否多选显示 isMoreSelect: { type: Boolean, default: false, }, fit: { type: Boolean, default: true, }, border: { type: Boolean, default: false, }, headerCellClassName: { type: String, default: "custmorTableHeader", }, // 当前页 currentPage: { type: Number, default: 0, }, // 展示页数 pageSize: { type: Number, default: 0, }, //总页数 totalNum: { type: Number, default: 0, }, //多选 handleSelection: { type: Function, default: () => {}, }, }); // // 测试列宽 // /** // * el-table扩展工具 -- 列宽度自适应 // * @param {*} prop 字段名称(string) // * @param {*} records table数据列表集(array) // * @returns 列宽(int) // */ // function getColumnWidth(prop: string, records: any) { // const minWidth = 80; // 最小宽度 // const padding = 12; // 列内边距 // const contentWidths = records.map((item: any) => { // console.log("item", item); // console.log("PROP", prop); // const value = item[prop] ? String(item[prop]) : ""; // const textWidth = getTextWidth(value); // return textWidth + padding; // }); // console.log("contentWidths", contentWidths); // let maxWidth = Math.max(...contentWidths); // if (maxWidth > 240) { // maxWidth = 240; // } // return Math.max(minWidth, maxWidth); // } // /** // * el-table扩展工具 -- 列宽度自适应 - 获取列宽内文本宽度 // * @param {*} text 文本内容 // * @returns 文本宽度(int) // */ // function getTextWidth(text: string) { // const span = document.createElement("span"); // span.style.visibility = "hidden"; // span.style.position = "absolute"; // span.style.top = "-9999px"; // span.style.whiteSpace = "nowrap"; // span.innerText = text; // document.body.appendChild(span); // const width = span.offsetWidth + 5; // document.body.removeChild(span); // return width; // } // ...其他方法 const emit = defineEmits([ "pagination", "update:currentPage", "update:pageSize", "selection-change", ]); const page = useVModel(props, "currentPage", emit); const size = useVModel(props, "pageSize", emit); function handleSizeChange(val: number) { emit("pagination", { currentPage: page, pageSize: val }); } function handleCurrentChange(val: number) { // console.log("val", val); page.value = val; emit("pagination", { currentPage: val, pageSize: props.pageSize }); } const handleSelectionChange = (val: any) => { emit("selection-change", val); }; const handleSelectable = (row: any) => { // console.log("row", row); return row.selectable; }; .pagination { display: flex; justify-content: end; padding: 12px; margin-top: 5px; &.hidden { display: none; } }
对于表格列宽实现了根据数据长度进行每一列的展示:
/** * el-table扩展工具 -- 列宽度自适应 * @param {*} prop 字段名称(string) * @param {*} records table数据列表集(array) * @returns 列宽(int) */ export function getColumnWidth(label: string, prop: string, tableData: any) { //label表头名称 //prop对应的内容 //tableData表格数据 const minWidth = 90; // 最小宽度 const padding = 10; // 列内边距 const arr = tableData.map((item: any) => item[prop]); arr.push(label); //拼接内容和表头数据 const contentWidths = arr.map((item: any) => { // console.log("item", item); // console.log("PROP", prop); const value = item ? String(item) : ""; const textWidth = getTextWidth(value); return textWidth + padding; }); // console.log("contentWidths", contentWidths); let maxWidth = Math.max(...contentWidths); if (maxWidth > 240) { maxWidth = 240; } return Math.max(minWidth, maxWidth); } /** * el-table扩展工具 -- 列宽度自适应 - 获取列宽内文本宽度 * @param {*} text 文本内容 * @returns 文本宽度(int) */ function getTextWidth(text: string) { const span = document.createElement("span"); span.style.visibility = "hidden"; span.style.position = "absolute"; span.style.top = "-9999px"; span.style.whiteSpace = "nowrap"; span.innerText = text; document.body.appendChild(span); const width = span.offsetWidth + 5; document.body.removeChild(span); return width; }
到此这篇关于vue3基于elementplus 简单实现表格二次封装过程的文章就介绍到这了,更多相关vue表格二次封装内容请搜索IT俱乐部以前的文章或继续浏览下面的相关文章希望大家以后多多支持IT俱乐部!