解决bomId为空时会查询所有bom的bug

This commit is contained in:
砂糖
2025-08-01 12:57:30 +08:00
parent 7725a588ee
commit 5b619eca0a
9 changed files with 119 additions and 51 deletions

View File

@@ -153,7 +153,7 @@
<!-- 审核按钮 -->
<el-button
v-if="stockIo.status === 1 && stockIo.ioType != 'in'"
v-if="stockIo.status === 1"
type="primary"
:loading="auditLoading"
@click="handleAudit"
@@ -161,7 +161,7 @@
<!-- 撤回按钮 -->
<el-button
v-if="stockIo.status === 2 && stockIo.ioType != 'in'"
v-if="stockIo.status === 2"
type="warning"
:loading="cancelLoading"
@click="handleCancel"