mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(GoodsActionButton): add color prop (#2010)
This commit is contained in:
parent
ca7cf3f2ce
commit
0e8caf56c4
@ -32,4 +32,13 @@
|
|||||||
</van-goods-action>
|
</van-goods-action>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
|
<demo-block title="自定义按钮颜色">
|
||||||
|
<van-goods-action custom-class="goods-action" safe-area-inset-bottom="{{ false }}">
|
||||||
|
<van-goods-action-icon icon="chat-o" text="客服" />
|
||||||
|
<van-goods-action-icon icon="shop-o" text="店铺" />
|
||||||
|
<van-goods-action-button color="#be99ff" type="warning" text="加入购物车" />
|
||||||
|
<van-goods-action-button color="#7232dd" type="danger" text="立即购买" />
|
||||||
|
</van-goods-action>
|
||||||
|
</demo-block>
|
||||||
|
|
||||||
<van-toast id="van-toast" />
|
<van-toast id="van-toast" />
|
||||||
|
@ -9,6 +9,7 @@ VantComponent({
|
|||||||
|
|
||||||
props: {
|
props: {
|
||||||
text: String,
|
text: String,
|
||||||
|
color: String,
|
||||||
loading: Boolean,
|
loading: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
type: {
|
type: {
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
size="large"
|
size="large"
|
||||||
lang="{{ lang }}"
|
lang="{{ lang }}"
|
||||||
type="{{ type }}"
|
type="{{ type }}"
|
||||||
|
color="{{ color }}"
|
||||||
loading="{{ loading }}"
|
loading="{{ loading }}"
|
||||||
disabled="{{ disabled }}"
|
disabled="{{ disabled }}"
|
||||||
open-type="{{ openType }}"
|
open-type="{{ openType }}"
|
||||||
|
@ -66,6 +66,20 @@ Page({
|
|||||||
</van-goods-action>
|
</van-goods-action>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### 自定义按钮颜色
|
||||||
|
|
||||||
|
通过`color`属性可以自定义按钮的颜色,支持传入`linear-gradient`渐变色
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-goods-action>
|
||||||
|
<van-goods-action-icon icon="chat-o" text="客服" />
|
||||||
|
<van-goods-action-icon icon="cart-o" text="购物车" info="5" />
|
||||||
|
<van-goods-action-icon icon="shop-o" text="店铺" />
|
||||||
|
<van-goods-action-button text="加入购物车" type="warning" />
|
||||||
|
<van-goods-action-button text="立即购买" />
|
||||||
|
</van-goods-action>
|
||||||
|
```
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
### GoodsAction API
|
### GoodsAction API
|
||||||
@ -100,6 +114,7 @@ Page({
|
|||||||
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||||
|-----------|-----------|-----------|-------------|-------------|
|
|-----------|-----------|-----------|-------------|-------------|
|
||||||
| text | 按钮文字 | *string* | - | - |
|
| text | 按钮文字 | *string* | - | - |
|
||||||
|
| color | 按钮颜色,支持传入 `linear-gradient` 渐变色 | *string* | - | - |
|
||||||
| url | 跳转链接 | *string* | - | - |
|
| url | 跳转链接 | *string* | - | - |
|
||||||
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | *string* | `navigateTo` | - |
|
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | *string* | `navigateTo` | - |
|
||||||
| id | 标识符 | *string* | - | - |
|
| id | 标识符 | *string* | - | - |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user