Browse Source

反馈列表接口文件

DESKTOP-SVI9JE1\muzen 1 year ago
parent
commit
e9882c4bf1
1 changed files with 5 additions and 6 deletions
  1. 5 6
      src/api/operation/feedbacklist.js

+ 5 - 6
src/api/operation/feedbacklist.js

@@ -18,18 +18,17 @@ export function detail(id) {
 }
 }
 
 
 // 提交
 // 提交
-export function submit(id, data){
+export function submit(id, data) {
   return request({
   return request({
     url: `/admin/opinions/reply/${id}/${data}`,
     url: `/admin/opinions/reply/${id}/${data}`,
     method: 'get'
     method: 'get'
   })
   })
 }
 }
 
 
-// 导出
-export function download(data) {
+// 反馈类型列表
+export function typeList() {
   return request({
   return request({
-    url: `/admin/opinions/excelDownload`,
-    method: 'post',
-    data
+    url: `/admin/opinions/typeList`,
+    method: 'post'
   })
   })
 }
 }