电子围栏

This commit is contained in:
lizhenhua 2025-12-24 18:10:48 +08:00
parent 890d860335
commit f0202a8429
1 changed files with 5 additions and 5 deletions

View File

@ -1069,21 +1069,21 @@
</template>
</el-table-column>
<el-table-column prop="phoneNumber" label="终端手机号" width="140" />
<el-table-column prop="imei" label="IMEI号" width="150" />
<el-table-column prop="imei" label="IMEI号" width="160" />
<el-table-column prop="terminalModel" label="终端型号" width="150" />
<el-table-column prop="plateNumber" label="车牌号" width="120" />
<el-table-column prop="onlineStatus" label="在线状态" width="90">
<el-table-column prop="plateNumber" label="车牌号" width="153" />
<el-table-column prop="onlineStatus" label="在线状态" width="100">
<template slot-scope="scope">
<el-tag :type="scope.row.onlineStatus === 1 ? 'success' : 'info'" size="mini">
{{ scope.row.onlineStatus === 1 ? '在线' : '离线' }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="registerTime" label="注册时间" min-width="160">
<!-- <el-table-column prop="registerTime" label="注册时间" min-width="160">
<template slot-scope="scope">
{{ formatDateTime(scope.row.registerTime) }}
</template>
</el-table-column>
</el-table-column> -->
</el-table>