forked from github/dataease
Merge pull request #6472 from dataease/pr@dev-v2@perf_license_copywriting
Pr@dev v2@perf license copywriting
This commit is contained in:
commit
bff2b41f9b
@ -1430,8 +1430,9 @@ export default {
|
||||
auth_num: '授权数量',
|
||||
version: '版本',
|
||||
version_num: '版本号',
|
||||
standard: '标准版',
|
||||
standard: '社区版',
|
||||
enterprise: '企业版',
|
||||
Embedded: '嵌入式版',
|
||||
support: '获取技术支持',
|
||||
update_success: '更新成功',
|
||||
serial_no: '序列号',
|
||||
|
@ -150,7 +150,13 @@ const update = (licKey: string) => {
|
||||
<div class="item">
|
||||
<div class="label">{{ $t('about.version') }}</div>
|
||||
<div class="value">
|
||||
{{ !license?.edition ? $t('about.standard') : $t('about.enterprise') }}
|
||||
{{
|
||||
!license?.edition
|
||||
? $t('about.standard')
|
||||
: license.edition === 'Embedded'
|
||||
? $t('about.Embedded')
|
||||
: $t('about.enterprise')
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
|
Loading…
Reference in New Issue
Block a user