<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
相关推荐
小时前端几秒前
微信小程序选不了本地文件?用 web-view + H5 一招搞定71Ove几秒前
告别手写字符串!UniApp 路由全自动类型生成工具掘金安东尼3 分钟前
从平面到空间:用 React Three Fiber 构建 3D 产品网格小时前端3 分钟前
HTTPS 页面加载 HTTP 脚本被拦?同源代理来救场用户683709359553 分钟前
在 Rokid AR 眼镜里玩消消乐:基于 Unity 2022 LTS + UXR 3.0 SDK 的轻量级 AR 游戏尝试zzjyr5 分钟前
@umijs/max 中导出的 request 方法,如何实现 GET/POST/PUT/DELETE 这四种核心请求swipe5 分钟前
#用这 9 个浏览器 API,我把页面从“卡成 PPT”救回到 90+(每个都有能直接抄的例子)zzjyr7 分钟前
基于 @umijs/max 的 request 补充常见错误统一处理、请求取消、重复请求防抖的完整方案拖拉斯旋风19 分钟前
深入浅出 RAG:从网页爬取到智能问答的完整链路解析Mintopia32 分钟前
Vite 发展现状与回顾:从“极致开发体验”到生态基础设施