<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
相关推荐
IT女孩儿15 分钟前
CSS查缺补漏(补充上一条)吃杠碰小鸡1 小时前
commitlint校验git提交信息天天进步20152 小时前
Vue+Springboot用Websocket实现协同编辑虾球xz2 小时前
游戏引擎学习第20天我爱李星璇2 小时前
HTML常用表格与标签疯狂的沙粒2 小时前
如何在Vue项目中应用TypeScript?应该注意那些点?小镇程序员2 小时前
vue2 src_Todolist全局总线事件版本野槐2 小时前
前端图像处理(一)程序猿阿伟2 小时前
《智能指针频繁创建销毁:程序性能的“隐形杀手”》疯狂的沙粒2 小时前
对 TypeScript 中函数如何更好的理解及使用?与 JavaScript 函数有哪些区别?