fix: 解决提示按钮禁用时无法提示内容的问题
This commit is contained in:
parent
dde60cfc30
commit
1bbbc4569c
|
@ -4,6 +4,7 @@
|
||||||
placement="bottom"
|
placement="bottom"
|
||||||
:enterable="false"
|
:enterable="false"
|
||||||
:effect="effect">
|
:effect="effect">
|
||||||
|
<!-- 解决按钮禁用时无法显示内容的问题 -->
|
||||||
<span class="tooltip-btn">
|
<span class="tooltip-btn">
|
||||||
<el-button @click="exec()"
|
<el-button @click="exec()"
|
||||||
@click.stop="clickStop"
|
@click.stop="clickStop"
|
||||||
|
@ -58,7 +59,4 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.tooltip-btn+.tooltip-btn {
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -234,3 +234,8 @@ textarea {
|
||||||
background-color: #FBFBFB !important;
|
background-color: #FBFBFB !important;
|
||||||
color: #606266 !important;
|
color: #606266 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ms-tip-button 自定间距 */
|
||||||
|
.el-button+.tooltip-btn,.tooltip-btn+.el-button,.tooltip-btn+.tooltip-btn {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue