mirror of
https://github.com/jumpserver/lina.git
synced 2025-08-30 04:03:49 +00:00
feat: 工单会话添加状态字段
This commit is contained in:
parent
e13f2b34ff
commit
61c777532b
@ -790,6 +790,7 @@
|
||||
"accountName": "账户名称",
|
||||
"active": "激活中",
|
||||
"alive": "在线",
|
||||
"noAlive": "离线",
|
||||
"asset": "资产",
|
||||
"target": "目标",
|
||||
"bucket": "桶名称",
|
||||
|
@ -771,6 +771,7 @@
|
||||
"accountName": "Account name",
|
||||
"active": "active",
|
||||
"alive": "alive",
|
||||
"noAlive": "no alive",
|
||||
"asset": "Asset",
|
||||
"target": "Target",
|
||||
"bucket": "Bucket",
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user