fix: 添加customer.js,修复stock.js参数
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Agent
2026-03-24 15:11:20 +00:00
parent 6cdfc47250
commit 3e693882d0
2 changed files with 43 additions and 2 deletions

View File

@@ -22,14 +22,14 @@ export default {
* 入库
*/
stockIn(data) {
return api.request('/stock/in', 'POST', null, data)
return api.request('/stock/in', 'POST', data)
},
/**
* 库存调整
*/
adjustStock(data) {
return api.request('/stock/adjust', 'POST', null, data)
return api.request('/stock/adjust', 'POST', data)
},
/**