-
admin
2024-05-09 06713afdb80bc876ffc6a09442049a08eb8a2364
提交 | 用户 | 时间
e57a89 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
12 // 查询产品过站采集详细
13 export function getPassingStationCollection(id) {
14   return request({
15     url: '/da/passingStationCollection/' + id,
16     method: 'get'
17   })
18 }
19
20 // 新增产品过站采集
21 export function addPassingStationCollection(data) {
22   return request({
23     url: '/da/passingStationCollection',
24     method: 'post',
25     data: data
26   })
27 }
28
06713a 29 // 新增产品过站采集
A 30 export function jrmAddPassingStationCollection(data) {
31   return request({
32     url: '/da/passingStationCollection/jrmAddPassingStationCollection',
33     method: 'post',
34     data: data
35   })
36 }
37
e57a89 38 // 修改产品过站采集
39 export function updatePassingStationCollection(data) {
40   return request({
41     url: '/da/passingStationCollection',
42     method: 'put',
43     data: data
44   })
45 }
46
47 // 删除产品过站采集
48 export function delPassingStationCollection(id) {
49   return request({
50     url: '/da/passingStationCollection/' + id,
51     method: 'delete'
52   })
53 }