修复设备列表状态显示

pull/872/head
648540858 2023-05-29 15:24:18 +08:00
parent d0083447bb
commit 6bbac849b3
2 changed files with 4 additions and 4 deletions

View File

@ -41,8 +41,8 @@
<el-table-column label="状态" min-width="120">
<template slot-scope="scope">
<div slot="reference" class="name-wrapper">
<el-tag size="medium" v-if="scope.row.online == 1">线</el-tag>
<el-tag size="medium" type="info" v-if="scope.row.online == 0">线</el-tag>
<el-tag size="medium" v-if="scope.row.onLine">线</el-tag>
<el-tag size="medium" type="info" v-if="!scope.row.onLine">线</el-tag>
</div>
</template>
</el-table-column>

View File

@ -79,8 +79,8 @@
<el-table-column label="状态" min-width="120">
<template slot-scope="scope">
<div slot="reference" class="name-wrapper">
<el-tag size="medium" v-if="scope.row.status === 1">线</el-tag>
<el-tag size="medium" type="info" v-if="scope.row.status === 0">线</el-tag>
<el-tag size="medium" v-if="scope.row.status === true">线</el-tag>
<el-tag size="medium" type="info" v-if="scope.row.status === false">线</el-tag>
</div>
</template>
</el-table-column>