大屏项目初始化

This commit is contained in:
2026-03-08 16:52:55 +08:00
parent 444e65c524
commit 2c81b1478c
21 changed files with 424 additions and 75 deletions

View File

@@ -0,0 +1,13 @@
import request from '@/utils/request';
/**
* 导出用户信息
*/
export function download(params) {
return request({
url: '/biz/homeFiles/dwonload',
method: 'get',
params,
responseType: 'blob'
});
}

View File

@@ -1,5 +1,6 @@
import request from '@/utils/request'
/**
* 获取指标信息列表
*/
@@ -11,6 +12,28 @@ export function getHomeModuleList(params) {
})
}
/**
* 获取指标信息列表
*/
export function getHomeModuleListAll(params) {
return request({
url: '/biz/homeModule/listAll',
method: 'get',
params: params
})
}
/**
* 删除信息列表
*/
export function getHomeModuleSave(data) {
return request({
url: '/biz/homeModule/save',
method: 'post',
data
})
}
/**
* 删除信息列表
*/

View File

@@ -11,6 +11,17 @@ export function getHomeRoleList(params) {
})
}
/**
* 获取指标信息列表
*/
export function getHomeRoleUserList(params) {
return request({
url: '/biz/homeRole/userList',
method: 'get',
params: params
})
}
/**
* 获取角色授权的菜单
*/

View File

@@ -42,4 +42,5 @@ export function getHomeUserDelete(params) {
method: 'post',
params: params
})
}
}