主题能力是官网旁边哪个主题? 设置成黑色,hover还是白色,具体怎么修改这个hover的类属性? @***. From: yang Date: 2023-02-20 20:49 To: ElemeFE/element CC: yuanpinhao; Author Subject: Re: [ElemeFE/element] How to modify the table hover effect (Issue #22395) 尝试下主题能力? ― Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: ***@***.***>
5条答案
按热度按时间quhf5bfb1#
尝试下主题能力?
5gfr0r5j2#
主题能力是官网旁边哪个主题? 设置成黑色,hover还是白色,具体怎么修改这个hover的类属性? @***. From: yang Date: 2023-02-20 20:49 To: ElemeFE/element CC: yuanpinhao; Author Subject: Re: [ElemeFE/element] How to modify the table hover effect (Issue #22395) 尝试下主题能力? ― Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: ***@***.***>
ncecgwcz3#
用样式穿透,修改他的hover背景色看看
xuo3flqw4#
that's all
yqkkidmi5#
handleCellEnterLeave() {
this.removeHoverEffect();
},
//移除row的hover效果
removeHoverEffect() {
if (!this.tableDom) {
this.tableDom = this.$refs.table.$el;
}
this.tableDom.classList.remove("el-table--enable-row-hover");
},
用单元格的进入离开事件即可,记得在表格挂载的时候运行:this.$refs.table.layout.store.states.isComplex = false;