fix: POS机记账,查看bug修复。

This commit is contained in:
tianyongbao
2024-08-06 19:49:21 +08:00
parent 2bd197ba59
commit bd5e928e9a

View File

@@ -282,9 +282,13 @@ function handleSelectionChange(selection) {
// 查看
const handleView = (row) => {
title.value = '查看POS机刷卡'
form.value = row
open.value = true
reset()
const _id = row.id || ids.value
getAccountsTransferRecord(_id).then((response) => {
form.value = response.data
open.value = true
title.value = '查看POS机刷卡'
})
}
/** 新增按钮操作 */