Commit cc759f37 by Sweet Zhang

方法丢失

parent d9aeee45
...@@ -419,3 +419,22 @@ export function compareCommissionEntry(data){ ...@@ -419,3 +419,22 @@ export function compareCommissionEntry(data){
method: 'get', method: 'get',
}) })
} }
// 应收款报表导出
export function payableReport(data) {
return request({
url: '/csf/api/CommissionExpected/exportReport',
method: 'post',
data: data,
responseType: 'blob'
})
}
// 应收款报表查询
export function receivableReport(data) {
return request({
url: '/csf/api/CommissionExpected/queryReport',
method: 'post',
data: data
})
}
\ No newline at end of file
...@@ -185,7 +185,7 @@ import CommonPage from '@/components/commonPage' ...@@ -185,7 +185,7 @@ import CommonPage from '@/components/commonPage'
import { ref, reactive } from 'vue' import { ref, reactive } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus' import { ElMessage, ElMessageBox } from 'element-plus'
import { formatCurrency } from '@/utils/number' import { formatCurrency } from '@/utils/number'
import { expectedFortuneList, payRecordList, addPayRecord, updatePayRecord, exportPayRecord } from '@/api/financial/commission' import { expectedFortuneList, payRecordList, addPayRecord, updatePayRecord, exportPayRecord, payableReport } from '@/api/financial/commission'
import SearchForm from '@/components/SearchForm/SearchForm.vue' import SearchForm from '@/components/SearchForm/SearchForm.vue'
import CommonDialog from '@/components/commonDialog' import CommonDialog from '@/components/commonDialog'
import { loadDicts, getDictLabel } from '@/utils/useDict' import { loadDicts, getDictLabel } from '@/utils/useDict'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment