feat:样品标签打印

This commit is contained in:
houjunxiang
2025-11-24 16:48:57 +08:00
parent c3630e74ec
commit c504c9b2a7
18 changed files with 97 additions and 712 deletions

23
nx/api/report.js Normal file
View File

@@ -0,0 +1,23 @@
import request from '@/nx/request'
export const getBusinessSubSample = id => {
return request({
url: '/qms/business-sub-sample/get',
method: 'get',
params: {
id
}
})
}
export const getConfigReportTemplateByKey = params => {
return request({
url: '/qms/config-report-template/getByKey',
method: 'GET',
params: params
})
}
export default {
getBusinessSubSample,
getConfigReportTemplateByKey
}