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