fix(stocktake): restore missing showConfirmDialog ref causing ReferenceError

This commit is contained in:
DXC
2026-03-26 17:49:55 +08:00
parent edb49468a0
commit 8135a222f0

View File

@ -461,6 +461,13 @@ const showList = ref(false)
const showFinishDialog = ref(false) const showFinishDialog = ref(false)
const showQtyDialog = ref(false) const showQtyDialog = ref(false)
// ★ 新增: 防呆确认弹窗
const showConfirmDialog = ref(false)
// ★ 新增: 盘点开始防呆倒计时
const countdown = ref(0)
let countdownTimer: any = null
// ★ 新增: 差异审核对话框 // ★ 新增: 差异审核对话框
const showVarianceDialog = ref(false) const showVarianceDialog = ref(false)