|
怎么解决点击右边树 可以增删 右边datatable的列
暂时只能 删除
增加 数据变了 但是页面并没有刷新
代码如下:
if(exportData01.length>treeState.checkedNodes.length){
exportData01.forEach((item,index)=>{
if(item.label==data.label){
exportData01.splice(index,1)
}
})
this.getWidgetRef('datatable37231').$options.propsData.parentWidget.widgetList[0].options.tableColumns=exportData01
// console.info('减少!')
}else {
let obj={
align:"left",
children:[],
columnId:exportData01.length+1,
fixed:"false",
label:data.label,
prop:data.id,
show:true,
sortable:false,
width:"100"
}
exportData01.push(obj)
this.getWidgetRef('datatable37231').$options.propsData.parentWidget.widgetList[0].options.tableColumns=exportData01
this.getWidgetRef('datatable37231').setTableData(tableData)
// console.info('增加!')
}
我知道答案
回答被采纳将会获得 200 威望 已有5人回答
|
|