中航光电热表web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

64 lines
1.1 KiB

import request from '@/axios';
// 获取列表
export const getList = (params) => {
return request({
url: '/api/blade-desk/QA/RemindMsg/list',
method: 'get',
params
});
};
// 生产标识下拉
export const getPqList = () =>{
return request({
url:'/api/blade-desk/BA/ProdMark/listForSelect',
method:'get'
})
}
// 批量新增
export const addBatch = (data) =>{
return request({
url:'/api/blade-desk/QA/RemindMsg/saveBat',
method:'post',
data
})
}
// 修改
export const editRemind = (data) =>{
return request({
url:'/api/blade-desk/QA/RemindMsg/update',
method:"post",
data
})
}
// 删除
export const deleteRemind = (params) =>{
return request({
url:'/api/blade-desk/QA/RemindMsg/remove',
method:'post',
params
})
}
// 零件下拉
export const getPartList = (params) =>{
return request({
// url:'/api/blade-desk/dsPart/getPartList',
url:"/api/blade-desk/dsPart/listNew",
method:'get',
params
})
}
// 子件下拉
export const getSubPartList = (params) =>{
return request({
url:'/api/blade-desk/dsPartRelation/getSubParts',
method:'get',
params
})
}