fixed 配置下划线不显示的问题

This commit is contained in:
marvzhang
2019-11-28 12:54:56 +08:00
parent 24880175e2
commit 550d98326e
2 changed files with 16 additions and 2 deletions

View File

@@ -538,6 +538,16 @@ export default {
},
onTabClick (tab) {
this.activeTab = tab.name
},
update () {
if (this.activeTab !== 'stages') return
// 手动显示tab下划线
const elBar = document.querySelector('.el-tabs__active-bar')
const elStages = document.querySelector('#tab-stages')
const totalWidth = Number(getComputedStyle(elStages).width.replace('px', ''))
const paddingRight = Number(getComputedStyle(elStages).paddingRight.replace('px', ''))
elBar.setAttribute('style', 'width:' + (totalWidth - paddingRight) + 'px')
}
},
created () {