admin page enhancements

This commit is contained in:
Alireza Ahmadi
2024-06-09 22:48:49 +02:00
parent 3b24819309
commit 6a5e0a940b
2 changed files with 25 additions and 8 deletions
+1 -3
View File
@@ -5,9 +5,7 @@
<v-row>
<v-col>{{ $t('admin.changes') }}</v-col>
<v-spacer></v-spacer>
<v-col cols="auto">
<v-icon icon="mdi-close" @click="$emit('close')" />
</v-col>
<v-col cols="auto"><v-icon icon="mdi-close-box" @click="$emit('close')" /></v-col>
</v-row>
</v-card-title>
<v-divider></v-divider>
+24 -5
View File
@@ -28,19 +28,19 @@
<v-row>
<v-col>{{ $t('admin.date') }}</v-col>
<v-col dir="ltr">
{{ item.lastLogin.split(" ")[0]?? '-' }}
{{ item.loginDate }}
</v-col>
</v-row>
<v-row>
<v-col>{{ $t('admin.time') }}</v-col>
<v-col dir="ltr">
{{ item.lastLogin.split(" ")[1]?? '-' }}
{{ item.loginTime }}
</v-col>
</v-row>
<v-row>
<v-col>IP</v-col>
<v-col dir="ltr">
{{ item.lastLogin.split(" ")[2]?? '-' }}
{{ item.ip }}
</v-col>
</v-row>
</v-card-text>
@@ -63,12 +63,13 @@
<script lang="ts" setup>
import AdminModal from '@/layouts/modals/Admin.vue'
import ChngModal from '@/layouts/modals/Changes.vue'
import { i18n } from '@/locales'
import HttpUtils from '@/plugins/httputil'
import { Ref, ref, inject, onMounted } from 'vue'
const loading:Ref = inject('loading')?? ref(false)
const users = ref([])
const users = ref(<any[]>[])
onMounted(async () => {loadData()})
@@ -77,10 +78,28 @@ const loadData = async () => {
const msg = await HttpUtils.get('api/users')
loading.value = false
if (msg.success) {
users.value = msg.obj
console.log(msg.obj)
msg.obj.forEach((u:any) => {
const lastLogin = u.lastLogin.split(" ")
const localLastLogin = lastLogin.length > 2 ? dateFormatted(Date.parse(lastLogin[0] + " " + lastLogin[1])) : "- -"
const loginDateTime = localLastLogin.split(" ")
users.value.push({
id: u.id,
username: u.username,
loginDate: loginDateTime[0],
loginTime: loginDateTime[1],
ip: lastLogin[2]?? "-",
})
})
}
}
const dateFormatted = (dt: number): string => {
const locale = i18n.global.locale.value.replace('zh', 'zh-')
const date = new Date(dt)
return date.toLocaleString(locale)
}
const editModal = ref({
visible: false,
user: {},