From a5db3ed49ccd9ccd5fc4c0d561a11fbb208e2c2c Mon Sep 17 00:00:00 2001 From: zhouhy Date: Thu, 30 May 2024 10:23:12 +0800 Subject: [PATCH] =?UTF-8?q?add=20-=20=E5=A3=B3=E8=83=86=E7=BB=91=E5=AE=9A?= =?UTF-8?q?=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/report/codeBanding.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/api/report/codeBanding.js diff --git a/src/api/report/codeBanding.js b/src/api/report/codeBanding.js new file mode 100644 index 0000000..458a47f --- /dev/null +++ b/src/api/report/codeBanding.js @@ -0,0 +1,10 @@ +import request from '@/utils/request' + +// 查询壳胆绑定报表 +export function listCodeBanding(query) { + return request({ + url: '/report/productionReport/codeBandingReportList', + method: 'get', + params: query + }) +}