看下效果,可以将相同表名称的字段放在一起
排序适用于中英文、数字
// 排序
function sortByType(items: any) {// 先按照类型进行排序items.sort((a: any, b: any) => {if (a.label < b.label) return -1;if (a.label > b.label) return 1;return 0;});return items;
}
// // 示例用法:
const items: Item[] = [{ type: "哈哈" },{ type: "第三方代发" },{ type: "第三方代发" },{ type: "哈哈" },{ type: "蛋蛋蛋" },{ type: "烦烦烦" },// more items
];const sortedItems = sortByType(items);