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.

28 lines
606 B

4 weeks ago
4 weeks ago
  1. import { http } from '@/utils/http.js'
  2. const baseFeedbackURL = "http://39.101.133.168:8828/link"
  3. export const getQuestion = (data) => {
  4. return http({
  5. method: 'POST',
  6. url: 'http://pbb6edde.natappfree.cc' +'/api/customer/getQuestion',
  7. data
  8. })
  9. }
  10. //反馈添加
  11. export const addFeedbackRecord = (data) => {
  12. return http({
  13. method: 'POST',
  14. url: baseFeedbackURL +'/third/dcFeedBack/feedback/add',
  15. data
  16. })
  17. }
  18. //反馈历史记录
  19. export const getFeedbackRecords = (data) => {
  20. return http({
  21. method: 'POST',
  22. url: baseFeedbackURL+'/third/dcFeedBack/feedback/select',
  23. data
  24. })
  25. }