report.js 397 B

1234567891011121314151617181920
  1. import {request} from '../utils/request'
  2. //产品销售明细报表
  3. export function getReportInfo(data){
  4. return request({
  5. url: '/appStand/getReportInfo',
  6. method: 'post',
  7. data:data,
  8. isAddress:true,
  9. })
  10. }
  11. //产品销售明细报表
  12. export function showReport(data){
  13. return request({
  14. url: '/appStand/showReport',
  15. method: 'post',
  16. data:data,
  17. isAddress:true,
  18. })
  19. }