一、该问题的重现步骤是什么?
1. 当用这两个属性时 表格加载不出来了
2.
3.
二、你期待的结果是什么?实际看到的又是什么?
三、你正在使用的是什么产品,什么版本?在什么操作系统上?
四、请提供详细的错误堆栈信息,这很重要。
五、若有更多详细信息,请在下面提供。
先把avue版本回退至没问题的版本,我把这个问题反馈给avue官方。另外请提供一段可以重现的复杂表头配置代码,这样方便本地重现调试
column: [
{
label: "A1",
prop: "A1",
},
{
label: "B1",
children: [
{
label: "B10",
prop: "B10",
},
{
label: "B11",
prop: "B11",
},
{
label: "B12",
prop: "B12",
},
{
label: "B13",
prop: "B13",
},
{
label: "B14",
prop: "B14",
},
{
label: "B15",
prop: "B15",
},
],
hide: false,
},
{
label: "C1",
children: [],
hide: true,
},
],
radioChange() {
if (this.queryForm.queryType === "1") {
this.workOption.column[1].hide = false;
this.workOption.column[2].hide = true;
} else if (this.queryForm.queryType === "2") {
this.workOption.column[1].hide = true;
this.workOption.column[2].hide = false;
} else if (!this.queryForm.queryType) {
this.workOption.column[1].hide = false;
this.workOption.column[2].hide = false;
}
this.getList();
},
扫一扫访问 Blade技术社区 移动端