From f5c6007c370ce69f434f0cdc34657cc1b069dc0e Mon Sep 17 00:00:00 2001 From: chenqi Date: Fri, 26 Jun 2026 09:21:39 +0800 Subject: [PATCH] =?UTF-8?q?i18n(ui):=20=E5=9B=BD=E9=99=85=E5=8C=96?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E6=96=87=E6=9C=AC=E6=9B=BF=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 替换费用配置页面的所有静态文本为国际化标签 - 替换组织机构管理页面的表单标签和按钮文本 - 替换病房管理页面的列标题和操作按钮 - 替换设备对照对话框的标题和占位符文本 - 替换诊断治疗对照对话框的标题和字段标签 - 替换CDSS告警页面的消息提示文本 - 在相关组件中引入vue-i18n并创建翻译实例 --- .../basicmanage/InvoiceManagement/index.vue | 2 +- .../basicmanage/automaticBilling/index.vue | 34 +++--- .../views/basicmanage/bargainSets/index.vue | 34 +++--- .../src/views/basicmanage/bedspace/index.vue | 2 +- .../caseTemplates/components/editTemplate.vue | 75 ++++++------ .../views/basicmanage/caseTemplates/index.vue | 53 +++++---- .../basicmanage/consumablesBinding/index.vue | 13 ++- .../src/views/basicmanage/fee/index.vue | 2 +- .../src/views/basicmanage/lisMerge/index.vue | 34 +++--- .../basicmanage/locationManagement/index.vue | 38 ++++--- .../components/MedicalOrderSetDialog.vue | 13 ++- .../components/adviceBaseList.vue | 25 ++-- .../components/adviceBaseList.vue | 25 ++-- .../components/prescriptionlist.vue | 26 ++--- .../basicmanage/ordersCombination/index.vue | 51 +++++---- .../views/basicmanage/organization/index.vue | 107 +++++++++--------- .../src/views/basicmanage/ward/index.vue | 60 +++++----- .../basicmanage/warehouseLocation/index.vue | 68 +++++------ .../src/views/catalog/disease/index.vue | 66 ++++++----- .../medicine/components/medicineYbDialog.vue | 31 ++--- .../src/views/cdss/cdssAlerts/index.vue | 8 +- .../src/views/cdss/cdssRules/index.vue | 51 +++++---- 22 files changed, 426 insertions(+), 392 deletions(-) diff --git a/healthlink-his-ui/src/views/basicmanage/InvoiceManagement/index.vue b/healthlink-his-ui/src/views/basicmanage/InvoiceManagement/index.vue index 73687bca8..721d2ec2d 100755 --- a/healthlink-his-ui/src/views/basicmanage/InvoiceManagement/index.vue +++ b/healthlink-his-ui/src/views/basicmanage/InvoiceManagement/index.vue @@ -3,7 +3,7 @@
-

发票管理

+

{{ $t('basic.invoice.title') }}

diff --git a/healthlink-his-ui/src/views/basicmanage/automaticBilling/index.vue b/healthlink-his-ui/src/views/basicmanage/automaticBilling/index.vue index 294c393a2..932192f4b 100755 --- a/healthlink-his-ui/src/views/basicmanage/automaticBilling/index.vue +++ b/healthlink-his-ui/src/views/basicmanage/automaticBilling/index.vue @@ -2,16 +2,16 @@
- + @@ -22,14 +22,14 @@ icon="Search" @click="handleQuery" > - 搜索 + {{ $t('common.search') }} - 新增 + {{ $t('common.add') }} @@ -40,29 +40,29 @@ > @@ -88,13 +88,15 @@ diff --git a/healthlink-his-ui/src/views/basicmanage/bargainSets/index.vue b/healthlink-his-ui/src/views/basicmanage/bargainSets/index.vue index 34a874c1e..34d7c73cc 100755 --- a/healthlink-his-ui/src/views/basicmanage/bargainSets/index.vue +++ b/healthlink-his-ui/src/views/basicmanage/bargainSets/index.vue @@ -2,16 +2,16 @@
- + @@ -22,14 +22,14 @@ icon="Search" @click="handleQuery" > - 搜索 + {{ $t('common.search') }} - 新增 + {{ $t('common.add') }} @@ -40,29 +40,29 @@ > @@ -88,13 +88,15 @@ diff --git a/healthlink-his-ui/src/views/basicmanage/bedspace/index.vue b/healthlink-his-ui/src/views/basicmanage/bedspace/index.vue index c40441bd1..627de3ae9 100755 --- a/healthlink-his-ui/src/views/basicmanage/bedspace/index.vue +++ b/healthlink-his-ui/src/views/basicmanage/bedspace/index.vue @@ -278,7 +278,7 @@ import { getBedPage, addBed, updateBed, deleteBed, updateBedStatus } from './com const { t } = useI18n() const loading = ref(false); const tableData = ref([]); const total = ref(0) const queryParams = ref({ bedNo: '', status: undefined, pageNo: 1, pageSize: 10 }) -const formVisible = ref(false); const formTitle = ref('新增床位'); const isEdit = ref(false); const formRef = ref() +const formVisible = ref(false); const formTitle = ref(t('basic.bedspace.addTitle')); const isEdit = ref(false); const formRef = ref() const form = ref({ id: null, bedNo: '', bedName: '', wardName: '', deptName: '', bedType: 1, remark: '' }) const rules = computed(() => ({ bedNo: [{ required: true, message: t('basic.bedspace.msgInputBedNo'), trigger: 'blur' }] })) const statusText = (s) => ({ 0: t('basic.bedspace.statusFree'), 1: t('basic.bedspace.statusOccupied'), 2: t('basic.bedspace.statusClean'), 3: t('basic.bedspace.statusRepair') }[s] || t('common.unknown')) diff --git a/healthlink-his-ui/src/views/basicmanage/caseTemplates/components/editTemplate.vue b/healthlink-his-ui/src/views/basicmanage/caseTemplates/components/editTemplate.vue index acf4a1a45..abd8323b7 100755 --- a/healthlink-his-ui/src/views/basicmanage/caseTemplates/components/editTemplate.vue +++ b/healthlink-his-ui/src/views/basicmanage/caseTemplates/components/editTemplate.vue @@ -15,12 +15,12 @@ label-width="120px" > s -->
@@ -107,14 +107,14 @@ - 取消 + {{ $t('common.cancel') }} - 确定 + {{ $t('common.confirm') }} diff --git a/healthlink-his-ui/src/views/basicmanage/locationManagement/index.vue b/healthlink-his-ui/src/views/basicmanage/locationManagement/index.vue index f5b84decd..ee8a40d30 100644 --- a/healthlink-his-ui/src/views/basicmanage/locationManagement/index.vue +++ b/healthlink-his-ui/src/views/basicmanage/locationManagement/index.vue @@ -2,16 +2,16 @@
- + @@ -22,14 +22,14 @@ icon="Search" @click="handleQuery" > - 搜索 + {{ $t('common.search') }} - 新增 + {{ $t('common.add') }} @@ -40,33 +40,33 @@ > @@ -92,8 +92,10 @@