6 Commits

Author SHA1 Message Date
58449fc2f9 Merge remote-tracking branch 'origin/develop' into develop 2025-12-30 10:24:44 +08:00
4c541f43b9 `` refactor(doctorstation): 修正处方列表组件导入路径大小写问题并删除废弃的体温单组件`` 2025-12-30 10:24:25 +08:00
9a037ae446 Merge remote-tracking branch 'origin/develop' into develop 2025-12-30 10:11:25 +08:00
bb0eb60eae Merge branch 'merge_1.3' into develop 2025-12-30 10:10:40 +08:00
fc6640b846 Merge branch 'merge_1.3' into develop 2025-12-30 09:38:57 +08:00
8914c8b143 ```
chore(app): 更新应用启动横幅

更新了应用启动时显示的横幅,替换了原有的ASCII艺术样式,
使用了新的样式以提升视觉效果和品牌识别度。
```
2025-12-27 14:21:00 +08:00
6 changed files with 5 additions and 7 deletions

View File

@@ -2,9 +2,7 @@
| | | | ____| /\ | | |__ __| | | | | |_ _| \ | | |/ / | | | |_ _|/ ____|
| |__| | |__ / \ | | | | | |__| | | | | | \| | ' /_____| |__| | | | | (___
| __ | __| / /\ \ | | | | | __ | | | | | . ` | <______| __ | | | \___ \
| | | | |____ / ____ \| |____| | | | | | |____ _| |_| |\ | . \ | | | |_| |_ ____) |
|_| |_|______/_/ \_\______|_| |_| |_|______|_____|_| \_|_|\_\ |_| |_|_____|_____/
| | | |____ / ____ \| |____| | | | | | |____ _| |_| |\ | . \ | | | |_| |_ ____) |
|_| |_|______/_/ \_\______|_| |_| |_|______|_____|_| \_|_\ \ |_| |_|_____|_____/
Application Version: ${core.version}

View File

@@ -91,7 +91,7 @@ export const constantRoutes = [
},
{
path: '/tpr',
component: () => import('@/views/inpatientNurse/tprSheet/index.vue'),
component: () => import('@/views/inpatientNurse/tprsheet/index.vue'),
},
];

View File

@@ -981,7 +981,7 @@ import {
checkServicesHistory,
} from '../api';
import { getAdjustPriceSwitchState } from '@/api/public';
import adviceBaseList from '../advicebaselist';
import adviceBaseList from '../adviceBaseList.vue';
import { computed, getCurrentInstance, nextTick, ref, watch } from 'vue';
import { calculateQuantityByDays, formatNumber } from '@/utils/his';
import OrderGroupDrawer from './orderGroupDrawer';

View File

@@ -15,7 +15,7 @@
<script setup>
import { computed } from 'vue';
import inPatientBarDoctorFold from '@/components/patientBar/inPatientBarDoctorFold.vue';
import Details from './compoents/details.vue';
import Details from './components/details.vue';
import { patientInfo, updatePatientInfo } from '@/views/inpatientNurse/components/store/patient';
import PatientList from '@/components/PatientList/patient-list.vue';