Skip to content

Instantly share code, notes, and snippets.

@dearmark
Last active July 16, 2024 07:49
Show Gist options
  • Save dearmark/60d377c6abdfb57725f5d27132d1e09e to your computer and use it in GitHub Desktop.
Save dearmark/60d377c6abdfb57725f5d27132d1e09e to your computer and use it in GitHub Desktop.
columns多语言转化
function printC(list, flag) {
let columns = {};
let columnsI = [];
list.map((item) => {
columns[item.dataIndex] = item.title;
item.title = `t('${flag}.${item.dataIndex}')`;
});
console.log(columns);
console.log(list);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment