美文网首页
记录一下。ele表格按照首字母排序

记录一下。ele表格按照首字母排序

作者: 85a77deca79c | 来源:发表于2021-09-29 15:21 被阅读0次

changeTableSort_1(column){

        var sortingType = column.order;

        if(sortingType == "descending"){

          this.tableData = this.tableData.sort((a, b) =>b.name.localeCompare(a.name));

        }

        else{

          this.tableData = this.tableData.sort((a, b) => a.name.localeCompare(b.name));

        }

    },

相关文章

网友评论

      本文标题:记录一下。ele表格按照首字母排序

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