|
@@ -11,6 +11,7 @@ import { batchDeleleProtocolParam, getProtocolParamList, getProtocolStandardPara
|
|
|
import { DictCode, ProtocolRecognitionResult, ProtocolType } from '@/constants';
|
|
|
|
|
|
import CustomParams from './CustomParams.vue';
|
|
|
+import GatewayParamExt from './GatewayParamExt.vue';
|
|
|
import SelectStandardParams from './SelectStandardParams.vue';
|
|
|
|
|
|
import type { FormInstance, TableProps } from 'ant-design-vue';
|
|
@@ -670,7 +671,12 @@ defineExpose({
|
|
|
:title="$t('setupProtocol.protocolParamFields.gatewayParamName')"
|
|
|
data-index="gatewayParamName"
|
|
|
:width="200"
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template #default="{ record }">
|
|
|
+ <GatewayParamExt v-if="record.gatewayParamExt" :ext-info="JSON.parse(record.gatewayParamExt || '{}')" />
|
|
|
+ <div v-else>{{ record.gatewayParamName }}</div>
|
|
|
+ </template>
|
|
|
+ </ATableColumn>
|
|
|
<ATableColumn
|
|
|
class="table-column-item-required"
|
|
|
:title="$t('setupProtocol.protocolParamFields.gatewayParamCode')"
|