Browse Source

fix: LIS设置字段名修改

master
guoapeng 2 weeks ago
parent
commit
f0278f4b8e
  1. 4
      src/pages/Index/Settings/EditLis.vue
  2. 4
      src/pages/Index/Settings/Lis.vue
  3. 4
      src/services/Index/settings/settings.ts

4
src/pages/Index/Settings/EditLis.vue

@ -74,7 +74,7 @@
v-if="lisForm && lisForm.lisIf === 'NETWORK'"
class="setting-item"
>
<span class="label">Host's IP</span>
<span class="label">LIS服务IP</span>
<div class="options">
<input
style="min-width: 250px"
@ -90,7 +90,7 @@
v-if="lisForm && lisForm.lisIf === 'NETWORK'"
class="setting-item"
>
<span class="label">Host's Port</span>
<span class="label">LIS服务端口号</span>
<div class="options">
<input
type="text"

4
src/pages/Index/Settings/Lis.vue

@ -30,7 +30,7 @@
v-if="lisSettings && lisSettings.lisIf === 'NETWORK'"
class="setting-item"
>
<span class="label">Host's IP</span>
<span class="label">LIS服务IP</span>
<div class="options">
{{ lisSettings.lisNetIp }}
</div>
@ -39,7 +39,7 @@
v-if="lisSettings && lisSettings.lisIf === 'NETWORK'"
class="setting-item"
>
<span class="label">Host's Port</span>
<span class="label">LIS服务端口号</span>
<div class="options">
{{ lisSettings.LISNetPortStr }}
</div>

4
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) => {

Loading…
Cancel
Save