12345678910111213141516 |
- /* ETA-系统设置-基础配置 相关接口 */
- import { get,post } from "./index";
- /**
- * 获取基本配置信息
- * @param {*} params
- * @returns
- */
- export const getBaseConfig = params =>{
- return get('/business_conf/fetch',params)
- }
- /* 图表分享的临时有效期token */
- export const getChartShareToken = params => {
- return get('/datamanage/chart_info/common/general_token',params)
- }
|