[new feature] Tag: add text-color prop (#1077)

This commit is contained in:
neverland 2018-12-13 16:49:35 +08:00 committed by GitHub
parent a2f9e34fac
commit 5aab460b75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 4 deletions

View File

@ -30,7 +30,8 @@
<van-tag class="demo-margin-right" color="#f2826a">标签</van-tag>
<van-tag class="demo-margin-right" color="#f2826a" plain>标签</van-tag>
<van-tag class="demo-margin-right" color="#7232dd">标签</van-tag>
<van-tag color="#7232dd" plain>标签</van-tag>
<van-tag class="demo-margin-right" color="#7232dd" plain>标签</van-tag>
<van-tag color="#ffe1e1" text-color="#ad0000">标签</van-tag>
</demo-block>
<demo-block title="标签大小" padding>

View File

@ -12,6 +12,7 @@
### 代码演示
#### 基础用法
通过 type 属性控制 Tag 颜色,默认为灰色
```html
@ -22,6 +23,7 @@
```
#### 空心样式
设置`plain`属性设置为空心样式
```html
@ -32,6 +34,7 @@
```
#### 圆角样式
通过`round`设置为圆角样式
```html
@ -42,6 +45,7 @@
```
#### 标记样式
通过`mark`设置为标记样式(半圆角)
```html
@ -58,6 +62,7 @@
<van-tag color="#f2826a" plain>标签</van-tag>
<van-tag color="#7232dd">标签</van-tag>
<van-tag color="#7232dd" plain>标签</van-tag>
<van-tag color="#ffe1e1" text-color="#ad0000">标签</van-tag>
```
#### 标签大小
@ -74,10 +79,11 @@
|-----------|-----------|-----------|-------------|
| type | 类型,可选值为`primary` `success` `danger` | `String` | - |
| size | 大小, 可选值为`large` `medium` | `String` | - |
| color | 自定义标签颜色 | `String` | - |
| color | 标签颜色 | `String` | - |
| plain | 是否为空心样式 | `Boolean` | `false` |
| round | 是否为圆角样式 | `Boolean` | `false` |
| mark | 是否为标记样式 | `Boolean` | `false` |
| text-color | 文本颜色,优先级高于`color`属性 | `String` | `white` |
### Slot

View File

@ -8,6 +8,10 @@ const COLOR_MAP = {
success: GREEN
};
type Style = {
[key: string]: string;
};
VantComponent({
props: {
size: String,
@ -15,14 +19,21 @@ VantComponent({
mark: Boolean,
color: String,
plain: Boolean,
round: Boolean
round: Boolean,
textColor: String
},
computed: {
style() {
const color = this.data.color || COLOR_MAP[this.data.type] || DEFAULT_COLOR;
const key = this.data.plain ? 'color' : 'background-color';
return `${key}: ${color}`;
const style = { [key]: color } as Style;
if (this.data.textColor) {
style.color = this.data.textColor;
}
return Object.keys(style).map(key => `${key}: ${style[key]}`).join(';');
}
}
});