Files
rustdesk-api-web/src/views/my/login_log/index.vue
T
lejianwen 0dfab9edfb fix:
2025-04-24 11:51:53 +08:00

83 lines
2.7 KiB
Vue

<template>
<div>
<el-card class="list-query" shadow="hover">
<el-form inline label-width="80px">
<el-form-item>
<el-button type="primary" @click="handlerQuery">{{ T('Filter') }}</el-button>
<el-button type="danger" @click="toBatchDelete">{{ T('BatchDelete') }}</el-button>
</el-form-item>
</el-form>
</el-card>
<el-card class="list-body" shadow="hover">
<el-table :data="listRes.list" v-loading="listRes.loading" border @selection-change="handleSelectionChange">
<el-table-column type="selection" align="center" width="50"/>
<el-table-column prop="client" label="client" align="center" width="120"/>
<el-table-column prop="peer.id" :label="T('Peer')" align="center">
<template #default="{row}">
{{ row.device_id ? row.device_id : peer?.id }}
</template>
</el-table-column>
<el-table-column prop="uuid" label="uuid" align="center"/>
<el-table-column prop="ip" label="ip" align="center" width="150"/>
<el-table-column prop="type" label="type" align="center" width="100"/>
<el-table-column prop="platform" label="Platform/UA" align="center" width="120" show-overflow-tooltip/>
<el-table-column prop="created_at" :label="T('CreatedAt')" align="center"/>
<el-table-column :label="T('Actions')" align="center" width="400">
<template #default="{row}">
<el-button type="danger" @click="del(row)">{{ T('Delete') }}</el-button>
</template>
</el-table-column>
</el-table>
</el-card>
<el-card class="list-page" shadow="hover">
<el-pagination background
layout="prev, pager, next, sizes, jumper"
:page-sizes="[10,20,50,100]"
v-model:page-size="listQuery.page_size"
v-model:current-page="listQuery.page"
:total="listRes.total">
</el-pagination>
</el-card>
</div>
</template>
<script setup>
import { onActivated, onMounted, ref, watch } from 'vue'
import { useRepositories } from '@/views/login/log.js'
import { T } from '@/utils/i18n'
const {
listRes,
listQuery,
getList,
handlerQuery,
del,
batchdel,
} = useRepositories('my')
onMounted(getList)
onActivated(getList)
watch(() => listQuery.page, getList)
watch(() => listQuery.page_size, handlerQuery)
const multipleSelection = ref([])
const handleSelectionChange = (val) => {
multipleSelection.value = val
}
const toBatchDelete = () => {
if (multipleSelection.value.length === 0) {
return
}
batchdel(multipleSelection.value)
}
</script>
<style scoped lang="scss">
.list-query .el-select {
--el-select-width: 160px;
}
</style>