|
|
@ -6,6 +6,14 @@ |
|
|
|
{{ LISTypeMap[lisSettings && lisSettings.lisType || ''] }} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="setting-item"> |
|
|
|
<span class="label">自动上报</span> |
|
|
|
<div class="options"> |
|
|
|
{{ lisSettings?.lisAutoExport ? '开启' : '关闭' }} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="setting-item"> |
|
|
|
<span class="label">协议</span> |
|
|
|
<div class="options"> |
|
|
@ -84,7 +92,7 @@ const inputValue = ref('') |
|
|
|
const keyboardType = ref<'text' | 'number'>('number') |
|
|
|
const softKeyboardRef = ref() |
|
|
|
const lisVisible = ref(false) |
|
|
|
const lisSettings = ref<(LISSettings & { LISNetPortStr: string }) | undefined>( |
|
|
|
const lisSettings = ref<(LISSettings & { LISNetPortStr: string, lisAutoExport: boolean }) | undefined>( |
|
|
|
undefined, |
|
|
|
) |
|
|
|
const getLisSetting = async () => { |
|
|
|