智慧农业大数据平台
guanqb
2022-08-25 e8b7fa03ee93678183b1aab4f4f5035c8be9e59a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import request from '@/router/axios'
 
export const getSourceList = (params) => {
    return request({
        url: '/traceability/getTraceabilityList',
        method: 'get',
        params: {
            ...params
        }
    })
}
 
export const getSimpleInfo = (code) => {
    return request({
        url: '/traceability/getSimpleInfo',
        method: 'get',
        params: {
            code
        }
    })
}