import micro_request from '@/utils/micro_request' const basePath = process.env.VUE_APP_ParentPath export default { list(query) { return micro_request.postRequest(basePath, 'ProductConsultRecord', 'List', query) }, delete(query) { return micro_request.postRequest(basePath, 'ProductConsultRecord', 'Delete', query) }, add(query) { return micro_request.postRequest(basePath, 'ProductConsultRecord', 'Add', query) }, get(query) { return micro_request.postRequest(basePath, 'ProductConsultRecord', 'Get', query) }, update(query) { return micro_request.postRequest(basePath, 'ProductConsultRecord', 'Update', query) }, followUp(query) { return micro_request.postRequest(basePath, 'ProductConsultRecord', 'FollowUp', query) }, }