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 @@
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 @@
- 自动计算
+ {{ $t('basic.automaticBilling.title') }}
-
+
@@ -22,14 +22,14 @@
icon="Search"
@click="handleQuery"
>
- 搜索
+ {{ $t('common.search') }}
- 新增
+ {{ $t('common.add') }}
@@ -40,29 +40,29 @@
>
- {{ row.status === '0' ? '正常' : '停用' }}
+ {{ row.status === '0' ? $t('common.normal') : $t('common.disabled') }}
@@ -71,14 +71,14 @@
link
@click="handleEdit(row)"
>
- 编辑
+ {{ $t('common.edit') }}
- 删除
+ {{ $t('common.delete') }}
@@ -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 @@
- 划价组套
+ {{ $t('basic.bargainSets.title') }}
-
+
@@ -22,14 +22,14 @@
icon="Search"
@click="handleQuery"
>
- 搜索
+ {{ $t('common.search') }}
- 新增
+ {{ $t('common.add') }}
@@ -40,29 +40,29 @@
>
- {{ row.status === '0' ? '正常' : '停用' }}
+ {{ row.status === '0' ? $t('common.normal') : $t('common.disabled') }}
@@ -71,14 +71,14 @@
link
@click="handleEdit(row)"
>
- 编辑
+ {{ $t('common.edit') }}
- 删除
+ {{ $t('common.delete') }}
@@ -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 @@
- 货位管理
+ {{ $t('basic.locationMgmt.title') }}
-
+
@@ -22,14 +22,14 @@
icon="Search"
@click="handleQuery"
>
- 搜索
+ {{ $t('common.search') }}
- 新增
+ {{ $t('common.add') }}
@@ -40,33 +40,33 @@
>
- {{ row.status === '0' ? '正常' : '停用' }}
+ {{ row.status === '0' ? $t('common.normal') : $t('common.disabled') }}
@@ -75,14 +75,14 @@
link
@click="handleEdit(row)"
>
- 编辑
+ {{ $t('common.edit') }}
- 删除
+ {{ $t('common.delete') }}
@@ -92,8 +92,10 @@