From c58b66ee335046482b3b2cdcdd16af184806b1ab Mon Sep 17 00:00:00 2001 From: Zhousg Date: Wed, 17 May 2023 14:04:18 +0800 Subject: [PATCH] docs(ContactEdit): fix docs type and emit (#11866) --- packages/vant/src/contact-edit/README.md | 20 +++++++++-------- .../vant/src/contact-edit/README.zh-CN.md | 22 ++++++++++--------- 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/packages/vant/src/contact-edit/README.md b/packages/vant/src/contact-edit/README.md index 5a367d69f..425564d43 100644 --- a/packages/vant/src/contact-edit/README.md +++ b/packages/vant/src/contact-edit/README.md @@ -58,7 +58,7 @@ export default { | Attribute | Description | Type | Default | | --- | --- | --- | --- | -| contact-info | Contact Info | _Contact_ | `[]` | +| contact-info | Contact Info | _ContactEditInfo_ | `{}` | | is-edit | Whether is editing | _boolean_ | `false` | | is-saving | Whether to show save button loading status | _boolean_ | `false` | | is-deleting | Whether to show delete button loading status | _boolean_ | `false` | @@ -68,17 +68,19 @@ export default { ### Events -| Event | Description | Arguments | -| ------ | ----------------------------------------- | --------------------- | -| save | Emitted when the save button is clicked | content: contact info | +| Event | Description | Arguments | +| --- | --- | --- | +| save | Emitted when the save button is clicked | content: contact info | | delete | Emitted when the delete button is clicked | content: contact info | +| change-default | Emitted when the default contact is switched | checked:contact is not the default | -### Data Structure of Contact +### Data Structure of ContactEditInfo -| key | Description | Type | -| ---- | ----------- | -------- | -| name | Name | _string_ | -| tel | Phone | _string_ | +| key | Description | Type | +| --------- | ----------- | ---------------------- | +| name | Name | _string_ | +| tel | Phone | _string_ | +| isDefault | Is Default | _boolean \| undefined_ | ### Types diff --git a/packages/vant/src/contact-edit/README.zh-CN.md b/packages/vant/src/contact-edit/README.zh-CN.md index 7aa87a7f7..0a5e165f1 100644 --- a/packages/vant/src/contact-edit/README.zh-CN.md +++ b/packages/vant/src/contact-edit/README.zh-CN.md @@ -58,7 +58,7 @@ export default { | 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | -| contact-info | 联系人信息 | _Contact_ | `{}` | +| contact-info | 联系人信息 | _ContactEditInfo_ | `{}` | | is-edit | 是否为编辑联系人 | _boolean_ | `false` | | is-saving | 是否显示保存按钮加载动画 | _boolean_ | `false` | | is-deleting | 是否显示删除按钮加载动画 | _boolean_ | `false` | @@ -68,17 +68,19 @@ export default { ### Events -| 事件名 | 说明 | 回调参数 | -| ------ | ------------------ | ----------------- | -| save | 点击保存按钮时触发 | content:表单内容 | -| delete | 点击删除按钮时触发 | content:表单内容 | +| 事件名 | 说明 | 回调参数 | +| -------------- | -------------------------- | ----------------- | +| save | 点击保存按钮时触发 | content:表单内容 | +| delete | 点击删除按钮时触发 | content:表单内容 | +| change-default | 切换是否为默认联系人时触发 | checked:是否默认 | -### Contact 数据结构 +### ContactEditInfo 数据结构 -| 键名 | 说明 | 类型 | -| ---- | ------------ | ------------------ | -| name | 联系人姓名 | _string_ | -| tel | 联系人手机号 | _number \| string_ | +| 键名 | 说明 | 类型 | +| --------- | ------------ | ---------------------- | +| name | 联系人姓名 | _string_ | +| tel | 联系人手机号 | _string_ | +| isDefault | 是否默认 | _boolean \| undefined_ | ### 类型定义