@@ -5,10 +5,6 @@
|
|||||||
"ComputedRef": true,
|
"ComputedRef": true,
|
||||||
"DirectiveBinding": true,
|
"DirectiveBinding": true,
|
||||||
"EffectScope": true,
|
"EffectScope": true,
|
||||||
"ElLoading": true,
|
|
||||||
"ElMessage": true,
|
|
||||||
"ElMessageBox": true,
|
|
||||||
"ElNotification": true,
|
|
||||||
"ExtractDefaultPropTypes": true,
|
"ExtractDefaultPropTypes": true,
|
||||||
"ExtractPropTypes": true,
|
"ExtractPropTypes": true,
|
||||||
"ExtractPublicPropTypes": true,
|
"ExtractPublicPropTypes": true,
|
||||||
|
|||||||
@@ -65,7 +65,12 @@
|
|||||||
<el-tag v-else>{{ scope.row.status ?? '-' }}</el-tag>
|
<el-tag v-else>{{ scope.row.status ?? '-' }}</el-tag>
|
||||||
</template> -->
|
</template> -->
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="电池电量" align="center" prop="batteryLevel" />
|
<el-table-column label="电池电量" align="center" prop="batteryLevel">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-tag v-if="scope.row.batteryLevel">{{ scope.row.batteryLevel + '%' }}</el-tag>
|
||||||
|
<el-tag v-else> 暂未获取 </el-tag>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="设备型号" align="center" prop="model" />
|
<el-table-column label="设备型号" align="center" prop="model" />
|
||||||
<el-table-column label="固件版本" align="center" prop="id" />
|
<el-table-column label="固件版本" align="center" prop="id" />
|
||||||
<el-table-column label="是否绘制区域" align="center" prop="isDrawArea">
|
<el-table-column label="是否绘制区域" align="center" prop="isDrawArea">
|
||||||
|
|||||||
Reference in New Issue
Block a user