You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
365 B
19 lines
365 B
import request from '@/utils/request'
|
|
|
|
// 查询导入设置列表
|
|
export function getFilePreview (data) {
|
|
return request({
|
|
url: '/invoice/filePreview',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 下载文件
|
|
export function downloadFile (data) {
|
|
return request({
|
|
url: '/invoice/QuerySdInvoiceFileDownload',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|