hdy
2024-07-10 a4362dfe3e0e9c6fad426685da0065455799d018
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import request from '@/utils/request'
 
// 查询产品过站采集列表
export function listPassingStationCollection(query) {
  return request({
    url: '/da/passingStationCollection/list',
    method: 'get',
    params: query
  })
}
//查询首页top五数据
export function getTopProcess() {
  return request({
    url: '/da/passingStationCollection/getTopProcess',
    method: 'get'
  })
}
// 不分页查询产品过站采集列表
export function noPageList(query) {
  return request({
    url: '/da/passingStationCollection/noPageList',
    method: 'get',
    params: query
  })
}
 
// 获取首页单日累计量产数据
export function getProduceNumToday(query) {
  return request({
    url: '/da/passingStationCollection/getProduceNumToday',
    method: 'get',
    params: query
  })
}
 
// 查询产品过站采集列表
export function insertRepairRecordByIds(query) {
  return request({
    url: '/da/passingStationCollection/insertRepairRecordByIds',
    method: 'get',
    params: query
  })
}
 
// 查询产品过站采集详细
export function getPassingStationCollection(id) {
  return request({
    url: '/da/passingStationCollection/' + id,
    method: 'get'
  })
}
 
// 新增产品过站采集
export function addPassingStationCollection(data) {
  return request({
    url: '/da/passingStationCollection',
    method: 'post',
    data: data
  })
}
 
// 修改产品过站采集
export function updatePassingStationCollection(data) {
  return request({
    url: '/da/passingStationCollection',
    method: 'put',
    data: data
  })
}
 
// 删除产品过站采集
export function delPassingStationCollection(id) {
  return request({
    url: '/da/passingStationCollection/' + id,
    method: 'delete'
  })
}
 
export function initializedData(query) {
  return request({
    url: '/da/passingStationCollection/initializedData',
    method: 'get',
    params: query
  })
}