mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(button): add button-id prop support (#5529)
This commit is contained in:
parent
de8d8359f3
commit
ea631a81a3
@ -120,6 +120,7 @@
|
|||||||
| 参数 | 说明 | 类型 | 默认值 |
|
| 参数 | 说明 | 类型 | 默认值 |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| id | 标识符 | _string_ | - |
|
| id | 标识符 | _string_ | - |
|
||||||
|
| button-id `v1.10.25`| 标识符,作为原生button组件的id值 | _string_ | - |
|
||||||
| type | 按钮类型,可选值为 `primary` `info` `warning` `danger` | _string_ | `default` |
|
| type | 按钮类型,可选值为 `primary` `info` `warning` `danger` | _string_ | `default` |
|
||||||
| size | 按钮尺寸,可选值为 `normal` `large` `small` `mini` | _string_ | `normal` |
|
| size | 按钮尺寸,可选值为 `normal` `large` `small` `mini` | _string_ | `normal` |
|
||||||
| color `v1.0.0` | 按钮颜色,支持传入`linear-gradient`渐变色 | _string_ | - |
|
| color `v1.0.0` | 按钮颜色,支持传入`linear-gradient`渐变色 | _string_ | - |
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<wxs src="./index.wxs" module="computed" />
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<button
|
<button
|
||||||
id="{{ id }}"
|
id="{{ id || buttonId }}"
|
||||||
data-detail="{{ dataset }}"
|
data-detail="{{ dataset }}"
|
||||||
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}"
|
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}"
|
||||||
hover-class="{{ disabled || loading ? '' : 'van-button--active hover-class'}}"
|
hover-class="{{ disabled || loading ? '' : 'van-button--active hover-class'}}"
|
||||||
|
@ -240,6 +240,7 @@ Page({
|
|||||||
| 参数 | 说明 | 类型 | 默认值 |
|
| 参数 | 说明 | 类型 | 默认值 |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| show | 是否显示弹窗 | _boolean_ | - |
|
| show | 是否显示弹窗 | _boolean_ | - |
|
||||||
|
| button-id `v1.10.25`| 标识符,作为原生button组件的id值 | _string_ | - |
|
||||||
| title | 标题 | _string_ | - |
|
| title | 标题 | _string_ | - |
|
||||||
| width | 弹窗宽度,默认单位为`px` | _string \| number_ | `320px` |
|
| width | 弹窗宽度,默认单位为`px` | _string \| number_ | `320px` |
|
||||||
| message | 文本内容,支持通过`\n`换行 | _string_ | - |
|
| message | 文本内容,支持通过`\n`换行 | _string_ | - |
|
||||||
|
@ -96,7 +96,7 @@
|
|||||||
loading="{{ loading.confirm }}"
|
loading="{{ loading.confirm }}"
|
||||||
custom-class="van-dialog__confirm confirm-button-class"
|
custom-class="van-dialog__confirm confirm-button-class"
|
||||||
custom-style="color: {{ confirmButtonColor }}"
|
custom-style="color: {{ confirmButtonColor }}"
|
||||||
|
button-id="{{ buttonId }}"
|
||||||
open-type="{{ confirmButtonOpenType }}"
|
open-type="{{ confirmButtonOpenType }}"
|
||||||
lang="{{ lang }}"
|
lang="{{ lang }}"
|
||||||
business-id="{{ businessId }}"
|
business-id="{{ businessId }}"
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
<van-button
|
<van-button
|
||||||
id="{{ id }}"
|
id="{{ id }}"
|
||||||
|
button-id="{{ buttonId }}"
|
||||||
lang="{{ lang }}"
|
lang="{{ lang }}"
|
||||||
type="{{ type }}"
|
type="{{ type }}"
|
||||||
size="{{ size }}"
|
size="{{ size }}"
|
||||||
|
@ -130,6 +130,7 @@ Page({
|
|||||||
| url | 点击后跳转的链接地址 | _string_ | - |
|
| url | 点击后跳转的链接地址 | _string_ | - |
|
||||||
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | _string_ | `navigateTo` |
|
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | _string_ | `navigateTo` |
|
||||||
| id | 标识符 | _string_ | - |
|
| id | 标识符 | _string_ | - |
|
||||||
|
| button-id `v1.10.25`| 标识符,作为原生button组件的id值 | _string_ | - |
|
||||||
| type | 按钮类型,可选值为 `primary` `warning` `danger` | _string_ | `danger` |
|
| type | 按钮类型,可选值为 `primary` `warning` `danger` | _string_ | `danger` |
|
||||||
| plain | 是否为朴素按钮 | _boolean_ | `false` |
|
| plain | 是否为朴素按钮 | _boolean_ | `false` |
|
||||||
| size | 按钮尺寸,可选值为 `normal` `large` `small` `mini` | _string_ | `normal` |
|
| size | 按钮尺寸,可选值为 `normal` `large` `small` `mini` | _string_ | `normal` |
|
||||||
|
@ -5,6 +5,7 @@ export const button = Behavior({
|
|||||||
|
|
||||||
properties: {
|
properties: {
|
||||||
id: String,
|
id: String,
|
||||||
|
buttonId: String,
|
||||||
lang: String,
|
lang: String,
|
||||||
businessId: Number,
|
businessId: Number,
|
||||||
sessionFrom: String,
|
sessionFrom: String,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user