diff --git a/frontend/src/components/pure/ms-table/base-table.vue b/frontend/src/components/pure/ms-table/base-table.vue index 76fe075c02..0bc290e588 100644 --- a/frontend/src/components/pure/ms-table/base-table.vue +++ b/frontend/src/components/pure/ms-table/base-table.vue @@ -44,11 +44,13 @@
@@ -145,6 +147,7 @@ ref="currentInputRef" v-model="record[item.dataIndex as string]" :max-length="255" + @click.stop @blur="handleEditInputBlur(record, item.dataIndex as string, true)" @keydown.enter="handleEditInputBlur(record, item.dataIndex as string, false)" /> @@ -172,7 +175,7 @@ class="ml-2 cursor-pointer" :class="{ 'ms-table-edit-active': editActiveKey === rowIndex }" type="icon-icon_edit_outlined" - @click="handleEdit(item.dataIndex as string, rowIndex, record)" + @click.stop="handleEdit(item.dataIndex as string, rowIndex, record)" />
diff --git a/frontend/src/views/api-test/management/components/import.vue b/frontend/src/views/api-test/management/components/import.vue index b4a430f828..5bef6c94a4 100644 --- a/frontend/src/views/api-test/management/components/import.vue +++ b/frontend/src/views/api-test/management/components/import.vue @@ -122,14 +122,9 @@ @@ -651,6 +646,10 @@ return false; } } + + function openLink() { + window.open('https://converter.swagger.io/', '_blank'); + }