质量检验报表-导出全部数据
This commit is contained in:
@@ -1,41 +1,51 @@
|
||||
import request from '@/utils/request'
|
||||
// 获取首检表
|
||||
export function GetQualityStatisticsTable_first(query) {
|
||||
return request({
|
||||
url: 'mes/qc/statistics/queryQualityStatisticsTable_first',
|
||||
method: 'get',
|
||||
params: query,
|
||||
})
|
||||
}
|
||||
return request({
|
||||
url: 'mes/qc/statistics/queryQualityStatisticsTable_first',
|
||||
method: 'get',
|
||||
params: query,
|
||||
})
|
||||
}
|
||||
//获取二检表
|
||||
export function GetQualityStatisticsTable_again(query) {
|
||||
return request({
|
||||
url: 'mes/qc/statistics/queryQualityStatisticsTable_again',
|
||||
method: 'get',
|
||||
params: query,
|
||||
})
|
||||
}
|
||||
export function GetQualityStatisticsTable_again(query) {
|
||||
return request({
|
||||
url: 'mes/qc/statistics/queryQualityStatisticsTable_again',
|
||||
method: 'get',
|
||||
params: query,
|
||||
})
|
||||
}
|
||||
// 获取包装表
|
||||
export function GetQualityStatisticsTable_final(query) {
|
||||
return request({
|
||||
url: 'mes/qc/statistics/queryQualityStatisticsTable_final',
|
||||
method: 'get',
|
||||
params: query,
|
||||
})
|
||||
}
|
||||
export function GetQualityStatisticsTable_final(query) {
|
||||
return request({
|
||||
url: 'mes/qc/statistics/queryQualityStatisticsTable_final',
|
||||
method: 'get',
|
||||
params: query,
|
||||
})
|
||||
}
|
||||
// 获取总表
|
||||
export function GetQualityStatisticsTable_total(query) {
|
||||
return request({
|
||||
url: 'mes/qc/statistics/queryQualityStatisticsTable_total',
|
||||
method: 'get',
|
||||
params: query,
|
||||
})
|
||||
}
|
||||
// 删除一条记录
|
||||
export function deleteStatisticsTable(query) {
|
||||
return request({
|
||||
url: 'mes/qc/statistics/delete_statisticsTable',
|
||||
method: 'get',
|
||||
params: query,
|
||||
})
|
||||
}
|
||||
export function GetQualityStatisticsTable_total(query) {
|
||||
return request({
|
||||
url: 'mes/qc/statistics/queryQualityStatisticsTable_total',
|
||||
method: 'get',
|
||||
params: query,
|
||||
})
|
||||
}
|
||||
// 删除一条记录
|
||||
export function deleteStatisticsTable(query) {
|
||||
return request({
|
||||
url: 'mes/qc/statistics/delete_statisticsTable',
|
||||
method: 'get',
|
||||
params: query,
|
||||
})
|
||||
}
|
||||
|
||||
// 根据查询条件导出Excel
|
||||
export function downloadStatisticsTableExcel(query) {
|
||||
return request({
|
||||
url: 'mes/qc/statistics/downloadStatisticsTableExcel',
|
||||
method: 'get',
|
||||
params: query,
|
||||
responseType:'blob'
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user