This commit is contained in:
u2nyakim 2025-08-27 17:45:28 +08:00
parent 91396613bf
commit fd103b7f90

View File

@ -191,9 +191,11 @@
};
/** 详情 */
const openDetail = async (row: RequestRecord) => {
current.value = await getRequestRecordInfo(row.id);
const openDetail = (row: RequestRecord) => {
getRequestRecordInfo(row.id).then((data)=>{
current.value = data;
showInfo.value = true;
});
};
</script>