fix: 统一数据 lang 中文为 zh

This commit is contained in:
@changcode
2021-11-04 16:00:20 +08:00
parent 774e80505a
commit 5f25238f70
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@
<span v-else-if="item.prop === 'lastLoginTime'">{{utcTimeToTimezoneStr(scope.row[item.prop])}}</span>
<template v-else-if="item.prop === 'lang'">
<span v-if="scope.row[item.prop] === 'en'">English</span>
<span v-else-if="scope.row[item.prop] === 'cn'">简体中文</span>
<span v-else-if="scope.row[item.prop] === 'zh'">简体中文</span>
</template>
<span v-else-if="scope.row[item.prop]">{{scope.row[item.prop]}}</span>
<span v-else>-</span>