1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00

fix[Excel]: fixed export style bug

This commit is contained in:
codersjj 2022-05-11 19:19:25 +08:00
parent 0caa975ee2
commit 755609a419

View File

@ -182,14 +182,16 @@ export function export_json_to_excel({
'wch': 10 'wch': 10
}; };
} }
/*再判断是否为中文*/ /*再判断是否存在中文*/
else if (val.toString().charCodeAt(0) > 255) { val = val.toString()
const chineseCharacters = val.match(/[\u4E00-\u9FA5]/g)
if (chineseCharacters) {
return { return {
'wch': val.toString().length * 2 'wch': chineseCharacters.length * 2 + (val.length - chineseCharacters.length)
}; };
} else { } else {
return { return {
'wch': val.toString().length 'wch': val.length
}; };
} }
})) }))