docs(release-notes): 添加住院护士站划价功能说明和发版记录

- 新增住院护士站划价服务流程说明文档,详细描述了从参数预处理到结果响应的五大阶段流程
- 包含耗材类医嘱和诊疗活动类医嘱的差异化处理逻辑
- 添加完整的发版内容记录,涵盖新增菜单功能和各模块优化点
- 记录了住院相关功能的新增和门诊业务流程的修复
```
This commit is contained in:
2025-12-25 14:13:14 +08:00
parent 85fcb7c2e2
commit abc0674531
920 changed files with 107068 additions and 14495 deletions

View File

@@ -139,6 +139,7 @@
ref="showPatientRef"
:wardListOptions="wardListOptions"
@patientSelected="handlePatientSelected"
@triggerSearch="handleTriggerSearch"
/>
<ChargeDialog
ref="chargeListRef"
@@ -178,7 +179,6 @@ const queryParams = ref({
pageNo: 1,
pageSize: 10,
searchKey: undefined, // 供应商名称
searchKey: 'ZY202507310001',
});
const tableRowClassName = ({ row, rowIndex }) => {
if (row.amount < 0) {
@@ -201,6 +201,7 @@ function getPatientInfo() {
}
console.log(queryParams.value, 'queryParams.value');
getDepositInfo({ busNo: queryParams.value.searchKey }).then((res) => {
queryParams.value.searchKey = '';
if (res.code == 200 && res.data.records[0].encounterId) {
patientInfo.value = res.data.records[0];
getDepositInfoPage({ encounterId: res.data.records[0].encounterId }).then((res) => {
@@ -240,12 +241,12 @@ function refund() {
/** 选择病人 */
function handlePatientSelected(row) {
console.log(row, 'rowwwwwwwwhandlePatientSelected');
queryParams.value.searchKey = row.admissionNo;
// console.log(row, 'rowwwwwwwwhandlePatientSelected');
// queryParams.value.searchKey = row.admissionNo;
patientInfo.value = row;
nextTick(() => {
getPatientInfo();
});
// nextTick(() => {
// getPatientInfo();
// });
}
/** 重置操作表单 */
function reset() {
@@ -286,14 +287,19 @@ function formatValue(value) {
*
* @returns {void} 无返回值
*/
function handleClose(str) {
function handleClose(data) {
openDialog.value = false;
openRefundDialog.value = false;
if (str === 'success') {
if (data?.status === 'success' && data?.busNo) {
queryParams.value.searchKey = data.busNo;
getPatientInfo();
proxy.$modal.msgSuccess('操作成功!');
}
}
//在院患者查询
function handleTriggerSearch(busNo) {
queryParams.value.searchKey = busNo; // 将选中患者的住院号赋值给搜索参数
getPatientInfo(); // 调用现有查询方法
}
</script>
<style lang="scss" scoped>