会话管理中会话类型

This commit is contained in:
junleea 2025-04-06 16:14:12 +08:00
parent 042c092802
commit 3f776d4d08
2 changed files with 3 additions and 2 deletions

View File

@ -68,7 +68,7 @@ export const lineOptions = {
export const pieOptions = { export const pieOptions = {
title: { title: {
text: '系统开发语言', text: '系统开发语言',
subtext: 'Fake Data', subtext: '前后端',
left: 'center', left: 'center',
}, },
tooltip: { tooltip: {

View File

@ -98,7 +98,8 @@ let columns = ref([
const getData = async () => { const getData = async () => {
let req={ let req={
token: localStorage.getItem('token'), token: localStorage.getItem('token'),
type: "UserID" type: "UserID",
session_type: 1,
} }
let result = await FindSessionService(req); let result = await FindSessionService(req);
tableData.value = result.data; tableData.value = result.data;