大屏项目初始化

This commit is contained in:
2026-03-08 23:38:37 +08:00
parent 2c81b1478c
commit 03c61b4501
25 changed files with 1333 additions and 205 deletions

View File

@@ -0,0 +1,36 @@
import request from '@/utils/request'
/**
* 获取指标信息列表
*/
export function getAlertList(params) {
return request({
url: '/biz/homeDesktop/alertList',
method: 'get',
params: params
})
}
/**
* 获取指标信息列表
*/
export function getNoteList(params) {
return request({
url: '/biz/homeDesktop/noteList',
method: 'get',
params: params
})
}
/**
* 获取指标信息列表
*/
export function getQuickList(params) {
return request({
url: '/biz/homeDesktop/quickList',
method: 'get',
params: params
})
}