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
| import http from '@/http/api.js'
|
| //获取指标项集合,用于问题处理页面
| export const getByTaskIdAndGroupId = (groupId, taskId) => {
| return http.request({
| url: "/api/blade-sm/patrol/patrolRecord/getByTaskIdAndGroupId",
| method: "GET",
| params: {
| groupId,
| taskId
| }
| })
| }
|
| //获取指标项集合,用于问题处理页面
| export const getPatrolGroupDTO = (taskId) => {
| return http.request({
| url: "/api/blade-sm/patrol/patrolReport/getPatrolGroupDTO",
| method: "GET",
| params: {
| taskId
| }
| })
| }
|
| export const add = (row) => {
| return http.request({
| url: '/api/blade-sm/patrol/patrolReport/add',
| method: 'post',
| data: row
| })
| }
|
| export const update = (row) => {
| return http.request({
| url: '/api/blade-sm/patrol/patrolReport/edit',
| method: 'post',
| data: row
| })
| }
|
| export const editBatch = (row) => {
| return http.request({
| url: '/api/blade-sm/patrol/patrolReport/editBatch',
| method: 'post',
| data: row
| })
| }
|
|