Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
2026-06-04 13:34:13 +08:00
4 changed files with 27 additions and 7 deletions

View File

@@ -283,8 +283,7 @@ async function handleOrgSwitch(val) {
}).then(async () => {
try {
await switchOrg(val);
permissionStore.setRoutes([]);
router.replace({path: '/redirect' + route.path});
location.reload();
} catch (e) {
// ignore
}

View File

@@ -66,7 +66,7 @@ watch(
queryParams.value.searchKey = newValue;
getList();
},
{ immdiate: true }
{ immediate: true }
);
getList();
@@ -77,8 +77,8 @@ function getList() {
});
}
function clickRow(row) {
emit("selsectPatient", row);
function clickRow(params) {
emit("selsectPatient", params.row);
}
</script>

View File

@@ -2065,8 +2065,8 @@ function loadCheckInPatientList() {
}
/** 弹窗行点击处理 */
function selectRow(row) {
selectedCheckInPatient.value = row;
function selectRow(params) {
selectedCheckInPatient.value = params.row;
}
/** 确认签到(一键签到:直接构建挂号参数 → 预结算 → 弹收费窗口) */