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.
45 lines
797 B
45 lines
797 B
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 |
|
}) |
|
} |