简税合并版
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
jianshui-all/jianshui-ui/src/api/sdInvoicefile/sdinvoicefile.js

19 lines
363 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
})
}