fix: serverIP实体列表参数修正
This commit is contained in:
@@ -71,10 +71,13 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
this.$message.error(this.$t('tip.unknownError'))
|
this.$message.error(this.$t('tip.unknownError'))
|
||||||
}
|
}
|
||||||
|
this.loading = false
|
||||||
|
this.blockOperation.query = false
|
||||||
}
|
}
|
||||||
).finally(() => {
|
).catch(e => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
this.blockOperation.query = false
|
this.blockOperation.query = false
|
||||||
|
this.$message.error(this.$t('tip.unknownError'))
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
<div class="body__row-value" :title="d.asn">{{d.asn || '-'}}</div>
|
<div class="body__row-value" :title="d.asn">{{d.asn || '-'}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="body__detail"
|
<div class="body__detail"
|
||||||
@click="entityDetail({clientIP: d.ip}, [{key: 'clientIP', label: $t('overall.clientIp')}, {key: 'serverIP', label: $t('overall.serverIp')}])">{{$t('overall.detail')}}></div>
|
@click="entityDetail({ip: d.ip}, [{key: 'clientIP', label: $t('overall.clientIp')}, {key: 'serverIP', label: $t('overall.serverIp')}])">{{$t('overall.detail')}}></div>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="from === 'domain'">
|
<template v-else-if="from === 'domain'">
|
||||||
<div class="body__row">
|
<div class="body__row">
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<span style="padding-left: 15px; color: #333;">{{tabTitle}}</span>
|
<span style="padding-left: 15px; color: #333;">{{tabTitle}}</span>
|
||||||
</div>
|
</div>
|
||||||
<el-radio-group v-model="tab" size="mini" @change="changeTab">
|
<el-radio-group v-model="tab" size="mini" @change="changeTab">
|
||||||
<el-radio-button v-for="tabTmp in tabs" :label="tabTmp.key" >{{tabTmp.label}}</el-radio-button>
|
<el-radio-button v-for="tabTmp in tabs" :key="tabTmp.key" :label="tabTmp.key" >{{tabTmp.label}}</el-radio-button>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</div>
|
</div>
|
||||||
<div class="cn-panel" id="cn-panel" :style="{height: typeName ? 'calc(100% - 80px)' : ''}">
|
<div class="cn-panel" id="cn-panel" :style="{height: typeName ? 'calc(100% - 80px)' : ''}">
|
||||||
|
|||||||
Reference in New Issue
Block a user