perf: 还原
This commit is contained in:
@ -34,11 +34,12 @@
|
||||
<template #default>添加新标签</template>
|
||||
</a-button>
|
||||
<div class="tag-list">
|
||||
<div v-for="tag in list" :key="tag.id" class="tag-item cursor-pointer" @dblclick="openEdit(tag)">
|
||||
<a-checkbox v-model="selectedTags" :value="tag.id" style="margin-right: 6px" @click.stop />
|
||||
<a-tooltip v-for="tag in list" :key="tag.id" content="双击修改标签名">
|
||||
<div class="tag-item cursor-pointer" @dblclick="openEdit(tag)">
|
||||
<span>{{ tag.name }}</span>
|
||||
<img :src="iconDelete" class="delete-icon" @click.stop="openDelete(tag)" />
|
||||
<img :src="iconDelete" class="delete-icon" @click="openDelete(tag)" />
|
||||
</div>
|
||||
</a-tooltip>
|
||||
</div>
|
||||
</template>
|
||||
<AddTag ref="addTagRef" @success="getData" />
|
||||
|
||||
Reference in New Issue
Block a user