<vxe-table
ref="table"
v-loading="listLoading"
:data="tableData"
border
stripe
:height="tableHeight"
:seq-config="{seqMethod}"
@resizable-change="resizableChange"
>
resizableChange({ resizeWidth, column }) {
const one = this.tableObj.baselistcolumnList.find(el => { return el.strfield === column.property })
if (one) {
one.intwidth = resizeWidth
this.listStyle()
}
},
<el-table
ref="table"
v-loading="importLoading"
:data="mainForm.ceCapitalpaymentdetailList"
border
stripe
class="tb-edit"
:header-cell-class-name="headerIconEdit"
@header-dragend="dragendEvent"
>
dragendEvent(newWidth, oldWidth, column) {
const one = this.tableObj.baselistcolumnList.find(el => { return el.strfield === column.property })
if (one) {
one.intwidth = newWidth
this.listStyle()
}
},
el-table vxe-table 表格宽度拖拽
hello芳芳2024-05-10 15:40
相关推荐
bitbitDown4 分钟前
重构缓存时踩的坑:注释了三行没用的代码却导致白屏xiaopengbc8 分钟前
火狐(Mozilla Firefox)浏览器离线安装包下载用户0165238444129 分钟前
Webpack5 入门与实战,前端开发必备技能无密小高00729 分钟前
🔥🔥🔥前端性能优化实战手册:从网络到运行时,一套可复制落地的清单古夕32 分钟前
my-first-ai-web_问题记录01:Next.js的App Router架构下的布局(Layout)使用Solon阿杰35 分钟前
solon-flow基于bpmnJs的流程设计器Solon阿杰35 分钟前
前端(react/vue)实现全景图片(360°)查看器杨超越luckly38 分钟前
HTML应用指南:利用POST请求获取上海黄金交易所金价数据郝学胜-神的一滴38 分钟前
Three.js 材质系统深度解析Jerry42 分钟前
Compose 中的基本布局