sparkles: 处理人工盘点交互
All checks were successful
Release / lint (push) Successful in 43s
Release / Release (push) Successful in 4m0s

This commit is contained in:
my_ong
2025-03-29 22:48:28 +08:00
parent c8b45e7477
commit 246ae7ae2f
3 changed files with 11 additions and 2 deletions

BIN
dist.zip Normal file

Binary file not shown.

View File

@@ -127,8 +127,17 @@
}) })
}) })
} }
// 监测applyId变化重新获取数据
fetchData() fetchData()
window.console.log(11111) watch(
() => props.applyId,
(newVal, oldVal) => {
if (newVal !== oldVal) {
fetchData()
}
},
)
interface FormData { interface FormData {
applicant: string // 申请人 applicant: string // 申请人

File diff suppressed because one or more lines are too long