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.
16 lines
479 B
16 lines
479 B
'use strict';
|
|
|
|
import { ApiTable, basicAction } from '$utils'
|
|
|
|
export function getCustomerContactsFollowup() {//查询
|
|
return (dispatch) => basicAction({
|
|
type: "get",
|
|
dispatch: dispatch,
|
|
actionType: "GET_CUSTOMER_CONTACT_FOLLOWUP",
|
|
url: `${ApiTable.getCustomerContactsFollowup}`,
|
|
msg: { option: "查询客户联系人对接跟进表" },
|
|
reducer: { name: "customerContactsFollowupList", params: { noClear: true } },
|
|
});
|
|
}
|
|
|
|
|
|
|