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.

20 lines
446 B

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