2024-01-22 22:11:26 +08:00
|
|
|
|
import request from "@/api/request.js"
|
|
|
|
|
|
|
2023-11-13 11:54:26 +08:00
|
|
|
|
//获取东营报告list
|
|
|
|
|
|
// 东营驿站记录接口:http://218.58.213.15:8009/fd/sh05/record/{identity}
|
|
|
|
|
|
// 东营获取驿站报告接口:http://218.58.213.15:8009/fd/sh05/report/view/{reportId}
|
2023-11-09 15:41:55 +08:00
|
|
|
|
export function dyrecord(identity) {
|
|
|
|
|
|
return request({
|
2024-01-22 22:11:26 +08:00
|
|
|
|
url: `/fado/dy/sh05/record/${identity}`,
|
2023-11-09 15:41:55 +08:00
|
|
|
|
method: 'get',
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2023-11-13 11:54:26 +08:00
|
|
|
|
|
2024-01-22 22:11:26 +08:00
|
|
|
|
//获取德州报告list
|
2023-11-13 11:54:26 +08:00
|
|
|
|
// 德州驿站记录接口: http: //112.6.122.71:8009/fd/sh05/record/{identity}
|
|
|
|
|
|
// 德州获取驿站报告接口: http: //112.6.122.71:8009/fd/sh05/report/view/{reportId}
|
2023-11-09 15:41:55 +08:00
|
|
|
|
export function dzrecord(identity) {
|
|
|
|
|
|
return request({
|
2024-01-22 22:11:26 +08:00
|
|
|
|
url: `/fado/dz/sh05/record/${identity}`,
|
2023-11-09 15:41:55 +08:00
|
|
|
|
method: 'get',
|
|
|
|
|
|
})
|
2023-11-13 11:54:26 +08:00
|
|
|
|
}
|