customeranalysis.js 604 Bytes
Newer Older
lanbaoming's avatar
lanbaoming committed
1 2
import request from '@/utils/request'

lanbaoming's avatar
lanbaoming committed
3
//2024-05-01合并
lanbaoming's avatar
lanbaoming committed
4 5 6 7 8 9 10 11 12
// 获得测试分页
export function getListPage(data) {
  return request({
    url: '/Report/CustomerAnalysis/getListPage',
    method: 'post',
    data
  })
}

13
// 导出测试 Excel -2024-04-27
lanbaoming's avatar
lanbaoming committed
14 15 16
export function exportExcel(data) {
  return request({
    url: '/Report/CustomerAnalysis/exportExcel',
lanbaoming's avatar
lanbaoming committed
17 18
    method: 'get',
    params: data,
lanbaoming's avatar
lanbaoming committed
19 20 21
    responseType: 'blob'
  })
}
lanbaoming's avatar
lanbaoming committed
22 23 24 25 26 27 28 29 30

export function exportExcel2(data) {
  return request({
    url: '/Report/CustomerAnalysis/exportExcel2',
    method: 'get',
    params: data,
    responseType: 'blob'
  })
}