美文网首页
vue 冻结

vue 冻结

作者: 秀萝卜 | 来源:发表于2022-06-15 08:55 被阅读0次
        // 不用了,因为不能修改hover的颜色
        // :row-style="rowstyle"
        // 冻结的颜色设置
        // rowstyle({ row, rowIndex }) {
        //     if (row.frozen == 1) {
        //         let stylejson = {};
        //         stylejson.background = "#afd6ff";
        //         return stylejson
        //     } else {
        //         return ''
        //     }
        // },
        // 冻结的颜色设置
        tableRowClassName({ row, rowIndex }) {
            if (row.frozen == 1) {
                return 'tableRowFrozenColor'
            } else {
                return ''
            }
        },

    相关文章

      网友评论

          本文标题:vue 冻结

          本文链接:https://www.haomeiwen.com/subject/hhjzmrtx.html