|  |  |  | 
|---|
|  |  |  | trim: true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 获取批量催缴数据 | 
|---|
|  |  |  | export function getNoticeCustomerData (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/ywContractBill/getNoticeCustomerData', data, { | 
|---|
|  |  |  | trim: true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 发送催缴数据 | 
|---|
|  |  |  | export function sendNoticeCustomerData (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/ywContractBill/sendNoticeCustomerData', data, { | 
|---|
|  |  |  | trim: true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 下载催费文件 | 
|---|
|  |  |  | export function downloadCallFeeDoc (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/ywContractBill/downloadCallFeeDoc', data, { | 
|---|
|  |  |  | download: true, | 
|---|
|  |  |  | trim: true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 发送短信与邮件 | 
|---|
|  |  |  | export function sendSmsEmail (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/ywContractBill/sendSmsEmail', data, { | 
|---|
|  |  |  | trim: true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 获取待处理账单 | 
|---|
|  |  |  | export function getWaitDealList (contractId) { | 
|---|
|  |  |  | return request.get(`/visitsAdmin/cloudService/business/ywContractBill/getWaitDealList?contractId=${contractId}`) | 
|---|
|  |  |  | } | 
|---|