控制中心,添加设备绑定状态字段

This commit is contained in:
fengerli
2025-10-07 15:40:33 +08:00
parent 4a4902ab72
commit 492d43c709
3 changed files with 14 additions and 1 deletions

View File

@ -124,6 +124,12 @@
</div>
</template>
</el-table-column>
<el-table-column label="绑定状态" align="center" prop="bindingStatus">
<template #default="scope">
<div class="normal green" v-if="scope.row.bindingStatus == 1">已绑定</div>
<div class="normal red" v-if="scope.row.bindingStatus == 0">未绑定</div>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right" width="180" class-name="small-padding fixed-width">
<template #default="scope">