feat: 工单会话添加状态字段

This commit is contained in:
“怀磊” 2021-12-31 16:40:15 +08:00 committed by Jiangjie.Bai
parent e13f2b34ff
commit 61c777532b
3 changed files with 8 additions and 0 deletions

View File

@ -790,6 +790,7 @@
"accountName": "账户名称",
"active": "激活中",
"alive": "在线",
"noAlive": "离线",
"asset": "资产",
"target": "目标",
"bucket": "桶名称",

View File

@ -771,6 +771,7 @@
"accountName": "Account name",
"active": "active",
"alive": "alive",
"noAlive": "no alive",
"asset": "Asset",
"target": "Target",
"bucket": "Bucket",

View File

@ -6,6 +6,12 @@
</div>
<div class="content">
<el-row class="item">
<el-col>
<span class="item-label">{{ $t('tickets.status') }}</span>
<span class="item-value">
{{ session.is_finished ? $t('sessions.noAlive') : $t('sessions.alive') }}
</span>
</el-col>
<el-col>
<span class="item-label">{{ $t('sessions.target') }}</span>
<span class="item-value">{{ session.asset }}</span>