fix: 解决提示按钮禁用时无法提示内容的问题

This commit is contained in:
chenjianxing 2021-06-23 16:31:11 +08:00 committed by jianxing
parent 6f704459c6
commit 0d8337805a
2 changed files with 6 additions and 3 deletions

View File

@ -4,6 +4,7 @@
placement="bottom"
:enterable="false"
:effect="effect">
<!-- 解决按钮禁用时无法显示内容的问题 -->
<span class="tooltip-btn">
<el-button @click="exec()"
@click.stop="clickStop"
@ -58,7 +59,4 @@
</script>
<style scoped>
.tooltip-btn+.tooltip-btn {
margin-left: 10px;
}
</style>

View File

@ -234,3 +234,8 @@ textarea {
background-color: #FBFBFB !important;
color: #606266 !important;
}
/* ms-tip-button 自定间距 */
.el-button+.tooltip-btn,.tooltip-btn+.el-button,.tooltip-btn+.tooltip-btn {
margin-left: 10px;
}