GP12触摸屏

This commit is contained in:
2025-01-03 16:42:34 +08:00
parent 40676be6d0
commit 6dcf20f6ef
3 changed files with 469 additions and 46 deletions

View File

@@ -0,0 +1,47 @@
import request from '@/utils/request'
/**
* 获取班组下拉
* @param {查询条件} data
*/
export function GetGroupOptions(query) {
return request({
url: '/mes/qc/gp12/QcGp12Controller/GetGroupOptions',
method: 'get',
params: query,
})
}
/**
* 获取站点下拉
* @param {查询条件} data
*/
export function GetStieOptions(query) {
return request({
url: '/mes/qc/gp12/QcGp12Controller/GetStieOptions',
method: 'get',
params: query,
})
}
/**
* 获取缺陷项初始化数据
* @param {查询条件} data
*/
export function GetDefectInitOptions(query) {
return request({
url: '/mes/qc/gp12/QcGp12Controller/GetDefectInitOptions',
method: 'get',
params: query,
})
}
/**
* 解析标签
* @param {查询条件} data
*/
export function AnalyzeLabel(query) {
return request({
url: '/mes/qc/gp12/QcGp12Controller/AnalyzeLabel',
method: 'get',
params: query,
})
}