Showing
4 changed files
with
4 additions
and
3 deletions
| ... | ... | @@ -6,7 +6,7 @@ |
| 6 | 6 | @select="handleSelect" |
| 7 | 7 | ref="organizationIdTreeRef" |
| 8 | 8 | /> |
| 9 | - <BasicTable @register="registerTable" class="w-3/4 xl:w-4/5"> | |
| 9 | + <BasicTable :clickToRowSelect="false" @register="registerTable" class="w-3/4 xl:w-4/5"> | |
| 10 | 10 | <template #toolbar> |
| 11 | 11 | <a-button type="primary" @click="handleCreate">新增账号</a-button> |
| 12 | 12 | <a-button | ... | ... |
| 1 | 1 | <template> |
| 2 | 2 | <div> |
| 3 | - <BasicTable @register="registerTable"> | |
| 3 | + <BasicTable :clickToRowSelect="false" @register="registerTable"> | |
| 4 | 4 | <template #toolbar> |
| 5 | 5 | <a-button type="primary" @click="handleCreate"> 新增字典 </a-button> |
| 6 | 6 | <a-button color="error" @click="handleDeleteOrBatchDelete(null)" :disabled="hasBatchDelete"> | ... | ... |
| 1 | 1 | <template> |
| 2 | 2 | <div class="p-4"> |
| 3 | - <BasicTable @register="registerTable" @fetch-success="onFetchSuccess"> | |
| 3 | + <BasicTable :clickToRowSelect="false" @register="registerTable" @fetch-success="onFetchSuccess"> | |
| 4 | 4 | <template #toolbar> |
| 5 | 5 | <a-button type="primary" @click="handleCreate"> |
| 6 | 6 | {{ getI18n }} | ... | ... |