| | |
| | | <template> |
| | | <div> |
| | | <el-table :data="devices" style="width: 100%; height: 100%; font-size: 10px"> |
| | | <el-table :data="devices" style="width: 100%; height: 100%; font-size: 14px"> |
| | | <el-table-column label="设备类型" align="center"> |
| | | <template #default="scope"> |
| | | <dict-tag :options="sys_device_type" :value="scope.row.deviceType" /> |
| | |
| | | <el-table-column label="浏览器" align="center" prop="browser" :show-overflow-tooltip="true" /> |
| | | <el-table-column label="登录时间" align="center" prop="loginTime" width="180"> |
| | | <template #default="scope"> |
| | | <span>{{ parseTime(scope.row.loginTime) }}</span> |
| | | <span>{{ proxy.parseTime(scope.row.loginTime) }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
| | | <template #default="scope"> |
| | | <el-tooltip content="删除" placement="top"> |
| | | <el-button link type="primary" icon="Delete" @click="handldDelOnline(scope.row)"> |
| | | </el-button> |
| | | <el-button link type="primary" icon="Delete" @click="handldDelOnline(scope.row)"> </el-button> |
| | | </el-tooltip> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | }) |
| | | .catch(() => {}); |
| | | }; |
| | | |
| | | </script> |