入库移除审核步骤

This commit is contained in:
砂糖
2025-07-25 18:29:32 +08:00
parent 3eaf653037
commit a345da3a68

View File

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