fix: 解决提示按钮禁用时无法提示内容的问题
This commit is contained in:
parent
6f704459c6
commit
0d8337805a
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue