|
@@ -1100,7 +1100,13 @@ export default {
|
|
|
},
|
|
|
beforeTabLeave (targetActiveName) {
|
|
|
this.recordScrollTop(this.tabActiveName)
|
|
|
- this.recoverScrollTop(targetActiveName)
|
|
|
+ if (targetActiveName === '1') {
|
|
|
+ // 恢复到默认位置
|
|
|
+ this.recoverScrollTop(targetActiveName)
|
|
|
+ } else if (targetActiveName === '2') {
|
|
|
+ // 滚动到顶部
|
|
|
+ this.scrollToTab()
|
|
|
+ }
|
|
|
return true
|
|
|
},
|
|
|
// 采购排行榜查看全部
|
|
@@ -1265,6 +1271,10 @@ export default {
|
|
|
line-height: 50px;
|
|
|
font-size: 16px;
|
|
|
color: #686868;
|
|
|
+ &.is-active,
|
|
|
+ &:hover {
|
|
|
+ color: #2CB7CA;
|
|
|
+ }
|
|
|
}
|
|
|
.el-tabs__nav-wrap {
|
|
|
&::after {
|