WXL
3 天以前 e10381f2480e6838aef1bdb81bac2195875c05e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import request from "@/utils/request";
import { parseStrEmpty } from "@/utils/ruoyi"; //处理字符串
 
// 查询满意度列表
export function listsatisfaction(query) {
  return request({
    url: "/smartor/satisfaction/list",
    method: "post",
    data: query,
  });
}
 
// 批量新增满意度
export function addsatisfaction(data) {
  return request({
    url: "/smartor/satisfaction/batchinsert",
    method: "post",
    data: data,
  });
}
 
// 修改满意度
export function updatesatisfaction(data) {
  return request({
    url: "/smartor/satisfaction/edit",
    method: "post",
    data: data,
  });
}
 
// 删除满意度
export function delsatisfaction(satisfactionId) {
  return request({
    url: "/smartor/satisfaction/remove/" + satisfactionId,
    method: "get",
  });
}