diff --git a/src/pages/Index/Settings/EditLis.vue b/src/pages/Index/Settings/EditLis.vue index be883ab..8cc5ec4 100644 --- a/src/pages/Index/Settings/EditLis.vue +++ b/src/pages/Index/Settings/EditLis.vue @@ -74,7 +74,7 @@ v-if="lisForm && lisForm.lisIf === 'NETWORK'" class="setting-item" > - Host's IP + LIS服务IP
- Host's Port + LIS服务端口号
- Host's IP + LIS服务IP
{{ lisSettings.lisNetIp }}
@@ -39,7 +39,7 @@ v-if="lisSettings && lisSettings.lisIf === 'NETWORK'" class="setting-item" > - Host's Port + LIS服务端口号
{{ lisSettings.LISNetPortStr }}
diff --git a/src/services/Index/settings/settings.ts b/src/services/Index/settings/settings.ts index 9f87244..fdbb997 100644 --- a/src/services/Index/settings/settings.ts +++ b/src/services/Index/settings/settings.ts @@ -229,8 +229,8 @@ export const setLISAutoExport = async (data: boolean) => { } export type LISInterface = 'SERIAL' | 'NETWORK' export const LISInterfaceMap = { - SERIAL: 'Serial', - NETWORK: 'TCP/IP', + SERIAL: '串口', + NETWORK: '网络', } // 设置LIS接口 export const setLISInterface = async (data: LISInterface) => {