mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +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]) }}"
|
class="{{ utils.bem('tabs__scroll', [type]) }}"
|
||||||
style="{{ color ? 'border-color: ' + color : '' }}"
|
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:if="{{ type === 'line' }}" class="van-tabs__line" style="{{ lineStyle }}" />
|
||||||
<view
|
<view
|
||||||
wx:for="{{ tabs }}"
|
wx:for="{{ tabs }}"
|
||||||
|
@ -51,6 +51,15 @@ function tabStyle(
|
|||||||
return styles.join(';');
|
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) {
|
function trackStyle(data) {
|
||||||
if (!data.animated) {
|
if (!data.animated) {
|
||||||
return '';
|
return '';
|
||||||
@ -66,3 +75,4 @@ function trackStyle(data) {
|
|||||||
module.exports.tabClass = tabClass;
|
module.exports.tabClass = tabClass;
|
||||||
module.exports.tabStyle = tabStyle;
|
module.exports.tabStyle = tabStyle;
|
||||||
module.exports.trackStyle = trackStyle;
|
module.exports.trackStyle = trackStyle;
|
||||||
|
module.exports.tabCardTypeBorderStyle = tabCardTypeBorderStyle;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user