mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(Tab): fix Card Type Color custome (#2941)
This commit is contained in:
parent
0f88540533
commit
cb85269f17
@ -19,7 +19,7 @@
|
||||
class="{{ utils.bem('tabs__scroll', [type]) }}"
|
||||
style="{{ color ? 'border-color: ' + color : '' }}"
|
||||
>
|
||||
<view class="{{ utils.bem('tabs__nav', [type]) }} nav-class">
|
||||
<view class="{{ utils.bem('tabs__nav', [type]) }} nav-class" style="{{ getters.tabCardTypeBorderStyle(color, type) }}">
|
||||
<view wx:if="{{ type === 'line' }}" class="van-tabs__line" style="{{ lineStyle }}" />
|
||||
<view
|
||||
wx:for="{{ tabs }}"
|
||||
|
@ -51,6 +51,15 @@ function tabStyle(
|
||||
return styles.join(';');
|
||||
}
|
||||
|
||||
function tabCardTypeBorderStyle(color, type) {
|
||||
var isCard = type === 'card';
|
||||
var styles = [];
|
||||
if (isCard && color) {
|
||||
styles.push('border-color:' + color);
|
||||
}
|
||||
return styles.join(';');
|
||||
}
|
||||
|
||||
function trackStyle(data) {
|
||||
if (!data.animated) {
|
||||
return '';
|
||||
@ -66,3 +75,4 @@ function trackStyle(data) {
|
||||
module.exports.tabClass = tabClass;
|
||||
module.exports.tabStyle = tabStyle;
|
||||
module.exports.trackStyle = trackStyle;
|
||||
module.exports.tabCardTypeBorderStyle = tabCardTypeBorderStyle;
|
||||
|
Loading…
x
Reference in New Issue
Block a user