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 + }) +}