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.
29 lines
606 B
29 lines
606 B
import { http } from '@/utils/http.js'
|
|
|
|
const baseFeedbackURL = "http://39.101.133.168:8828/link"
|
|
|
|
export const getQuestion = (data) => {
|
|
return http({
|
|
method: 'POST',
|
|
url: 'http://pbb6edde.natappfree.cc' +'/api/customer/getQuestion',
|
|
data
|
|
})
|
|
}
|
|
|
|
|
|
//反馈添加
|
|
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
|
|
})
|
|
}
|