fix:修改 下拉删除按钮 样式打包后覆盖的问题

This commit is contained in:
zhangyu
2021-05-18 15:06:37 +08:00
parent 656ed5e2d3
commit 2325318e45

View File

@@ -3,7 +3,7 @@
<button v-if="this.type === 'button'" :id="id" :class="{'nz-btn-disabled' : deleteObjs.length<1}" class="top-tool-btn top-tool-btn--delete" @click="batchDelete">
<span><i class="nz-icon nz-icon-delete" ></i></span>
</button>
<div v-if="this.type === 'link'" :id="id" :class="{'nz-btn-disabled' : deleteObjs.length<1}" class="top-tool-btn top-tool-btn--delete" @click="batchDelete">
<div v-if="this.type === 'link'" :id="id" :class="{'nz-btn-disabled' : deleteObjs.length<1}" @click="batchDelete">
<span><i class="nz-icon nz-icon-delete" ></i>{{title}}</span>
</div>
</div>
@@ -70,5 +70,6 @@ export default {
}
.delete-button-light.delete-button{
border-radius: 2px;
opacity: 1;
}
</style>