import { http } from '@/utils/http.js' const baseFeedbackURL = "http://39.101.133.168:8828/link" //反馈添加 export const addFeedbackRecord = (data) => { return http({ method: 'POST', url: baseFeedbackURL +'/third/dcFeedBack/feedback/add', data }) } //反馈历史记录 export const getFeedbackRecords = (data) => { return http({ method: 'POST', url: baseFeedbackURL+'/third/dcFeedBack/feedback/select', data }) }