14 lines
237 B
TypeScript
14 lines
237 B
TypeScript
|
import request from '@/utils/request';
|
||
|
import { AxiosPromise } from 'axios';
|
||
|
|
||
|
/**
|
||
|
* 查询企业关键指标
|
||
|
*/
|
||
|
|
||
|
export const keyIndex = () => {
|
||
|
return request({
|
||
|
url: '/enterprise/big/screen/keyIndex',
|
||
|
method: 'get'
|
||
|
});
|
||
|
};
|