BladeX2.9.1 saber更新最新版2.9.5版本后 原本正常的复杂表头现在都出问题了

Blade 未结 2 716
1664087911
1664087911 剑圣 2022-04-20 15:32

一、该问题的重现步骤是什么?

1. image.png当用这两个属性时 表格加载不出来了

2. 

3.


二、你期待的结果是什么?实际看到的又是什么?


三、你正在使用的是什么产品,什么版本?在什么操作系统上?


四、请提供详细的错误堆栈信息,这很重要。


五、若有更多详细信息,请在下面提供。

2条回答
  • 2022-04-20 18:21

    先把avue版本回退至没问题的版本,我把这个问题反馈给avue官方。另外请提供一段可以重现的复杂表头配置代码,这样方便本地重现调试

    0 讨论(0)
  • 2022-04-21 12:06

    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();

        },


    0 讨论(0)
提交回复