|
@@ -36,6 +36,7 @@ import type {
|
|
|
|
|
|
interface Props {
|
|
interface Props {
|
|
info: Partial<ProtocolBaseInfo>;
|
|
info: Partial<ProtocolBaseInfo>;
|
|
|
|
+ isRecognized: boolean;
|
|
}
|
|
}
|
|
|
|
|
|
const props = defineProps<Props>();
|
|
const props = defineProps<Props>();
|
|
@@ -675,12 +676,16 @@ defineExpose({
|
|
@change="handleParamTableChange"
|
|
@change="handleParamTableChange"
|
|
>
|
|
>
|
|
<ATableColumn
|
|
<ATableColumn
|
|
|
|
+ v-if="isRecognized"
|
|
|
|
+ key="paramName"
|
|
:title="$t('setupProtocol.protocolParamFields.customParamName')"
|
|
:title="$t('setupProtocol.protocolParamFields.customParamName')"
|
|
data-index="paramName"
|
|
data-index="paramName"
|
|
:width="180"
|
|
:width="180"
|
|
fixed="left"
|
|
fixed="left"
|
|
/>
|
|
/>
|
|
<ATableColumn
|
|
<ATableColumn
|
|
|
|
+ v-if="isRecognized"
|
|
|
|
+ key="recognizeResult"
|
|
:title="$t('setupProtocol.protocolParamFields.result')"
|
|
:title="$t('setupProtocol.protocolParamFields.result')"
|
|
data-index="recognizeResult"
|
|
data-index="recognizeResult"
|
|
:width="110"
|
|
:width="110"
|