大屏页面初始化

This commit is contained in:
2026-03-05 18:33:45 +08:00
parent d3d713f131
commit cf65afb47f
21 changed files with 2027 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import request from '@/utils/request'
/**
* 获取指标信息列表
*/
export function getHomeRoleList(params) {
return request({
url: '/biz/homeRole/list',
method: 'get',
params: params
})
}