家里的样式
This commit is contained in:
38
src/api/Outsourcing/UnqualifiedTreatment.js
Normal file
38
src/api/Outsourcing/UnqualifiedTreatment.js
Normal file
@@ -0,0 +1,38 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 初始化 外协厂商
|
||||
export function initOutHelp() {
|
||||
return request({
|
||||
url: '',
|
||||
method: 'post',
|
||||
data: {
|
||||
type: '1',
|
||||
name: '车间生产管理工艺_基础表_外协厂家_查询数据'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 查询主表
|
||||
export function searchTable(PageCurrent, PageSize, check1, num1, check2, num2, check3, num3, check4, num4, check5, num5) {
|
||||
return request({
|
||||
url: '',
|
||||
method: 'post',
|
||||
data: {
|
||||
type: '1',
|
||||
name: '车间生产管理_外协加工任务单明细_查询数据_条件查询_新1',
|
||||
param: '外协厂家_check=' + check1 + '&外协厂家流水号=' + num1 + '&表单号_check=' + check2 + '&表单号=' + num2 + '&零件图号_check=' + check3 + '&零件图号=' + num3 + '&任务下达日期_年_check=' + check4 + '&任务下达日期_年=' + num4 + '&任务下达日期_月_check=' + check5 + '&任务下达日期_月=' + num5,
|
||||
Pagination: PageCurrent + '&' + PageSize
|
||||
}
|
||||
})
|
||||
}
|
||||
// 编辑不合格数量
|
||||
export function editList(num, num1, num2) {
|
||||
return request({
|
||||
url: '',
|
||||
method: 'post',
|
||||
data: {
|
||||
type: '2',
|
||||
name: '车间生产管理_外协加工任务单明细_修改数据_不合格处理',
|
||||
param: '外协加工任务单明细流水号=' + num + '&废品数量=' + num1 + '&不合格处理方式=' + num2
|
||||
}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user