yn_digital_gadgets_web/src/api/monthReportManage/monthlyReport.js

11 lines
209 B
JavaScript

import request from '@/utils/request'
// 获取月报
export function getMonthlyReportAPI(params) {
return request({
url: '/download/monthReport',
method: 'post',
params,
})
}