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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| 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",
| });
| }
| // 异常处理列表
| export function tracedeallist(data) {
| return request({
| url: "/smartor/trace/tracedeallist",
| method: "post",
| data: data,
| });
| }
| // 批量处理列表
| export function tracelist(data) {
| return request({
| url: "/smartor/trace/list",
| method: "post",
| data: data,
| });
| }
| // 任务列表修改处理
| export function traceedit(data) {
| return request({
| url: "/smartor/trace/edit",
| method: "post",
| data: data,
| });
| }
|
|