春风项目四线(合箱线、总装线)
yyt
2024-01-24 87ebb286373e365b4bb427177b26cf00dda1e2f3
提交 | 用户 | 时间
fd2207 1 import request from '@/utils/request'
2
3 // 查询产品过站采集列表
4 export function listPassingStationCollection(query) {
5   return request({
6     url: '/da/passingStationCollection/list',
7     method: 'get',
8     params: query
9   })
10 }
11
9ebb88 12 // 获取首页单日累计量产数据
W 13 export function getProduceNumToday(query) {
14   return request({
15     url: '/da/passingStationCollection/getProduceNumToday',
16     method: 'get',
17     params: query
18   })
19 }
20
ff985a 21 // 查询产品过站采集列表
22 export function insertRepairRecordByIds(query) {
23   return request({
24     url: '/da/passingStationCollection/insertRepairRecordByIds',
25     method: 'get',
26     params: query
27   })
28 }
29
fd2207 30 // 查询产品过站采集详细
31 export function getPassingStationCollection(id) {
32   return request({
33     url: '/da/passingStationCollection/' + id,
34     method: 'get'
35   })
36 }
37
38 // 新增产品过站采集
39 export function addPassingStationCollection(data) {
40   return request({
41     url: '/da/passingStationCollection',
42     method: 'post',
43     data: data
44   })
45 }
46
47 // 修改产品过站采集
48 export function updatePassingStationCollection(data) {
49   return request({
50     url: '/da/passingStationCollection',
51     method: 'put',
52     data: data
53   })
54 }
55
56 // 删除产品过站采集
57 export function delPassingStationCollection(id) {
58   return request({
59     url: '/da/passingStationCollection/' + id,
60     method: 'delete'
61   })
62 }