Commit db1c7158 by wusiyi

feat: 修改扫码接口传参

parent 40d913de
...@@ -624,7 +624,7 @@ export default { ...@@ -624,7 +624,7 @@ export default {
params: { params: {
id: params.id, id: params.id,
status: params.status, status: params.status,
type: "app" type: params.type
} }
}); });
res.send(data); res.send(data);
......
...@@ -288,7 +288,7 @@ export default { ...@@ -288,7 +288,7 @@ export default {
// OP 非btn:扫码入库校验库存 // OP 非btn:扫码入库校验库存
const { code, data: resData } = await this.$api.post( const { code, data: resData } = await this.$api.post(
pathMap.scanProduce[this.orderType], pathMap.scanProduce[this.orderType],
{ id: params.id, status: params.data.status } { id: params.id, status: params.data.status, type: "app" }
); );
if (code === 301) { if (code === 301) {
this.$confirm( this.$confirm(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment