中航光电PDA端
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.

26 lines
545 B

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