Commit d7f9decb authored by 我在何方's avatar 我在何方
parents 32f9f271 b0924b14
......@@ -470,3 +470,19 @@ export function waitDistributionExportExcel(){
method:'get'
})
}
//导出潜在客户
export function potentialExportExcel(){
return request({
url:'ecw/customer/potential-export-excel',
method:'get'
})
}
// 导出部门客户
export function deptExportExcel(){
return request({
url:'ecw/customer/dept-export-excel',
method:'get'
})
}
......@@ -543,7 +543,7 @@ import {
getCustomerDeptPage,
changeCustomerAir,
getPotential,
setChangeCustomerFcl
setChangeCustomerFcl, potentialExportExcel, deptExportExcel
} from "@/api/ecw/customer";
import { getDictDatas, DICT_TYPE } from '@/utils/dict';
import {CommonStatusEnum} from '@/utils/constants'
......@@ -555,7 +555,8 @@ import CustomerFollowList from "@/components/CustomerFollowList"
import customerComplaints from "@/components/customerComplaints"
import {listServiceUser} from "@/api/system/user";
import { getCountryListAll } from '@/api/ecw/country'
import {customerExportExcel, getCreditPage} from "@/api/customer/credit";
import {getCreditPage} from "@/api/customer/credit";
import {customerExportExcel} from "@/api/ecw/customer";
import transferCustomer from "@/views/ecw/customer/transferCustomer";
import Template from "@/views/cms/template/index.vue";
import AddPotentialCustom from "@/views/ecw/customer/addPotentialCustom.vue";
......@@ -782,7 +783,7 @@ export default {
},
/** 导出按钮操作 */
handleExport() {
let func = null
let func = null;
let title = ''
switch (this.$route.path){
case '/customer/customer' :
......@@ -790,10 +791,12 @@ export default {
title = '是否确认导出所有客户数据项?'
break;
case '/customer/department-customers':
// getCustomerDeptPage(params).then(this.setData);
func = deptExportExcel
title = '是否确认导出部门客户数据项?'
break;
case '/customer/potential':
// getPotential(params).then(this.setData)
func = potentialExportExcel
title = '是否确认导出潜在客户数据项?'
break;
}
......
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