This commit is contained in:
dhr
2025-09-09 18:35:03 +08:00
20 changed files with 609 additions and 383 deletions

View File

@ -0,0 +1,13 @@
import request from '@/utils/request';
import { AxiosPromise } from 'axios';
/**
* 查询企业关键指标
*/
export const keyIndex = () => {
return request({
url: '/enterprise/big/screen/keyIndex',
method: 'get'
});
};