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.
|
|
|
|
import http from '@/http/api.js'
|
|
|
|
|
// 镀前出库 查询数据
|
|
|
|
|
const getBeforePlatOutCardNo = (params) => {
|
|
|
|
|
return http.request({
|
|
|
|
|
url: '/blade-desk/plateAround/getBeforePlatOutCardNo',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: params
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 镀前出库 保存数据
|
|
|
|
|
const savePlateFrontEnterIssue = (data) => {
|
|
|
|
|
return http.request({
|
|
|
|
|
url: '/blade-desk/plateAround/savePlateFrontIssue',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data:data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
savePlateFrontEnterIssue,
|
|
|
|
|
getBeforePlatOutCardNo
|
|
|
|
|
|
|
|
|
|
}
|