diff --git a/api/customerServicePlatform/customerServicePlatform.js b/api/customerServicePlatform/customerServicePlatform.js new file mode 100644 index 0000000..7208adc --- /dev/null +++ b/api/customerServicePlatform/customerServicePlatform.js @@ -0,0 +1,21 @@ +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 + }) +} \ No newline at end of file diff --git a/pages/customerServicePlatform/historyRecord.vue b/pages/customerServicePlatform/historyRecord.vue index 6108f26..e6c0cb1 100644 --- a/pages/customerServicePlatform/historyRecord.vue +++ b/pages/customerServicePlatform/historyRecord.vue @@ -56,6 +56,7 @@