From 60e36c367ccfb6382b29f02df97bebca76351235 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期三, 14 八月 2024 17:30:08 +0800 Subject: [PATCH] 提交 --- src/api/hazardousChemicals/productRecord.js | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/src/api/hazardousChemicals/productRecord.js b/src/api/hazardousChemicals/productRecord.js index da982c9..6b264d6 100644 --- a/src/api/hazardousChemicals/productRecord.js +++ b/src/api/hazardousChemicals/productRecord.js @@ -61,3 +61,35 @@ params: params }) } + +export function getProList(params) { + return request({ + url: '/product/productCollect', + method: 'get', + params: params + }) +} + +export function disCardPro(data) { + return request({ + url: '/product/productDiscard/' + data, + method: 'post', + }) +} + + +export function getAllProFlow(params) { + return request({ + url: '/product-flow/getAllProductFlowByProductId', + method: 'get', + params: params + }) +} + +export function getFlowByCode(params) { + return request({ + url: '/hazmat-flow/getHazmatFlowByCode', + method: 'get', + params: params + }) +} -- Gitblit v1.9.2