1234567891011121314151617181920 |
- import {request} from '../utils/request'
- //产品销售明细报表
- export function getReportInfo(data){
- return request({
- url: '/appStand/getReportInfo',
- method: 'post',
- data:data,
- isAddress:true,
- })
- }
- //产品销售明细报表
- export function showReport(data){
- return request({
- url: '/appStand/showReport',
- method: 'post',
- data:data,
- isAddress:true,
- })
- }
|