Showing
2 changed files
with
7 additions
and
1 deletions
@@ -12,6 +12,7 @@ | @@ -12,6 +12,7 @@ | ||
12 | @selection-change="useSelectionChange" | 12 | @selection-change="useSelectionChange" |
13 | :rowSelection="{ type: 'checkbox' }" | 13 | :rowSelection="{ type: 'checkbox' }" |
14 | class="w-3/4 xl:w-4/5" | 14 | class="w-3/4 xl:w-4/5" |
15 | + :clickToRowSelect="false" | ||
15 | > | 16 | > |
16 | <template #toolbar> | 17 | <template #toolbar> |
17 | <a-button type="primary" @click="handleCreateOrEdit(null)"> 新增告警配置 </a-button> | 18 | <a-button type="primary" @click="handleCreateOrEdit(null)"> 新增告警配置 </a-button> |
@@ -6,7 +6,12 @@ | @@ -6,7 +6,12 @@ | ||
6 | @select="handleSelect" | 6 | @select="handleSelect" |
7 | ref="organizationIdTreeRef" | 7 | ref="organizationIdTreeRef" |
8 | /> | 8 | /> |
9 | - <BasicTable @register="registerTable" :searchInfo="searchInfo" class="w-3/4 xl:w-4/5"> | 9 | + <BasicTable |
10 | + :clickToRowSelect="false" | ||
11 | + @register="registerTable" | ||
12 | + :searchInfo="searchInfo" | ||
13 | + class="w-3/4 xl:w-4/5" | ||
14 | + > | ||
10 | <template #toolbar> | 15 | <template #toolbar> |
11 | <a-button type="primary" @click="handleCreateOrEdit(null)"> 新增告警联系人 </a-button> | 16 | <a-button type="primary" @click="handleCreateOrEdit(null)"> 新增告警联系人 </a-button> |
12 | <a-button | 17 | <a-button |