fuliqi
2024-01-24 29c1e7eb5ac16e90d8991a86c1c071bc312ec8d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import service from './service'
 
// 反馈中心api
export class UserSuggestApi {
  getList= (params, showLoading = true) => {
    return service.post('/awl-evaluate-service/userSuggest/getPcSuggestList', params, showLoading)
  }
 
  detailsInfo = (params, showLoading = true) => {
    return service.post('/awl-evaluate-service/userSuggest/detail', params, showLoading)
  }
 
  /**
 *回复
 * @param {*} param
 * @param {*} showLoading
 */
  replay = (param, showLoading = true) => {
    return service.post('/awl-evaluate-service/userSuggest/reply', param, showLoading)
  }
}
export default new UserSuggestApi()