You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
602 B

import _axios from '@/utils/_axios';
// 获取动态表格列头
export const getDynamicTableHeader = data => {
return _axios({
url: '/api/DoctorMicroservice/DictReportDataSource/QueryPageList',
params: data,
});
};
// 获取动态表格数据
export const getDynamicTableList = data => {
return _axios({
method: 'post',
url: '/api/DoctorMicroservice/DictReportDataSource/GetHistoryAllData',
data,
});
};
// 获取全局变量
export const getGlobeConfig = params => {
return _axios({
method: 'get',
url: '/api/identity/configs/PageList',
params,
});
};