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