1234567891011121314151617181920212223 |
- import { axios } from '@/utils/request'
- // 每日报表配置 无分页
- export const reportDailyConfList = (params) => {
- return axios({
- url: '/dailyReportConf/queryList',
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 每日报表配置 保存
- export const dailyReportConfSave = (params) => {
- const url = '/dailyReportConf/save'
- return axios({
- url: url,
- data: params,
- method: 'post'
- })
- }
|