Files
my-bigScreen/screen-vue/src/api/bizChart.ts

12 lines
210 B
TypeScript
Raw Normal View History

2026-03-10 23:29:10 +08:00
import request from '@/utils/request'
/**
*
*/
export function getChartList(params) {
return request({
url: '/biz/chartInfo/list',
method: 'get',
params: params
})
}