'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 } }, }); }