diff --git a/src/contact-card/README.md b/src/contact-card/README.md
index 925af6e0b..fcaa15cba 100644
--- a/src/contact-card/README.md
+++ b/src/contact-card/README.md
@@ -1,124 +1,61 @@
-# Contact
+# ContactCard
### Install
```js
import { createApp } from 'vue';
-import { ContactCard, ContactList, ContactEdit } from 'vant';
+import { ContactCard } from 'vant';
const app = createApp();
app.use(ContactCard);
-app.use(ContactList);
-app.use(ContactEdit);
```
## Usage
-### Basic Usage
+### Add Contact
```html
-
-
-
-
-
-
-
-
-
-
-
-
+
```
```js
+import { Toast } from 'vant';
+
+export default {
+ methods: {
+ onAdd() {
+ Toast('add');
+ },
+ },
+};
+```
+
+### Edit Contact
+
+```html
+
+```
+
+```js
+import { Toast } from 'vant';
+
export default {
data() {
return {
- chosenContactId: null,
- editingContact: {},
- showList: false,
- showEdit: false,
- isEdit: false,
- list: [
- {
- name: 'John Snow',
- tel: '13000000000',
- id: 0,
- },
- ],
+ currentContact: {
+ name: 'John Snow',
+ tel: '13000000000',
+ },
};
},
-
- computed: {
- cardType() {
- return this.chosenContactId !== null ? 'edit' : 'add';
- },
-
- currentContact() {
- const id = this.chosenContactId;
- return id !== null ? this.list.filter((item) => item.id === id)[0] : {};
- },
- },
-
methods: {
- // add contact
- onAdd() {
- this.editingContact = { id: this.list.length };
- this.isEdit = false;
- this.showEdit = true;
- },
-
- // edit contact
- onEdit(item) {
- this.isEdit = true;
- this.showEdit = true;
- this.editingContact = item;
- },
-
- // select contact
- onSelect() {
- this.showList = false;
- },
-
- // save contact
- onSave(info) {
- this.showEdit = false;
- this.showList = false;
-
- if (this.isEdit) {
- this.list = this.list.map((item) =>
- item.id === info.id ? info : item
- );
- } else {
- this.list.push(info);
- }
- this.chosenContactId = info.id;
- },
-
- // delete contact
- onDelete(info) {
- this.showEdit = false;
- this.list = this.list.filter((item) => item.id !== info.id);
- if (this.chosenContactId === info.id) {
- this.chosenContactId = null;
- }
+ onEdit() {
+ Toast('edit');
},
},
};
@@ -137,62 +74,17 @@ export default {
## API
-### ContactCard Props
+### Props
-| Attribute | Description | Type | Default |
-| --------- | -------------------------- | -------- | ------------------ |
-| type | Can be set to `add` `edit` | _string_ | `add` |
-| name | Name | _string_ | - |
-| tel | Phone | _string_ | - |
-| add-text | Add card text | _string_ | `Add contact info` |
+| Attribute | Description | Type | Default |
+| --------- | -------------------- | -------- | ------------------ |
+| type | Can be set to `edit` | _string_ | `add` |
+| name | Name | _string_ | - |
+| tel | Phone | _string_ | - |
+| add-text | Add card text | _string_ | `Add contact info` |
-### ContactCard Events
+### Events
| Event | Description | Arguments |
| ----- | ---------------------- | -------------- |
| click | Triggered when clicked | _event: Event_ |
-
-### ContactList Props
-
-| Attribute | Description | Type | Default |
-| --- | --- | --- | --- |
-| v-model | Id of chosen contact | _number \| string_ | - |
-| list | Contact list | _Contact[]_ | `[]` |
-| add-text | Add button text | _string_ | `Add new contact` |
-| default-tag-text `v2.3.0` | Default tag text | _string_ | - |
-
-### ContactList Events
-
-| Event | Description | Arguments |
-| ------ | -------------------------------- | --------------------------- |
-| add | Triggered when click add button | - |
-| edit | Triggered when click edit button | item: contact object,index |
-| select | Triggered when select contact | item: contact object |
-
-### ContactEdit Props
-
-| Attribute | Description | Type | Default |
-| --- | --- | --- | --- |
-| contact-info | Contact Info | _object_ | `[]` |
-| 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` |
-| tel-validator | The method to validate tel | _(tel: string) => boolean_ | - |
-| show-set-default `v2.3.0` | Whether to show default contact switch | _boolean_ | `false` |
-| set-default-label `v2.3.0` | default contact switch label | _string_ | - |
-
-### ContactEdit Events
-
-| Event | Description | Arguments |
-| ------ | ---------------------------------- | --------------------- |
-| save | Triggered when click save button | content:contact info |
-| delete | Triggered when click delete button | content:contact info |
-
-### Data Structure of Contact
-
-| key | Description | Type |
-| --------- | ------------------ | ------------------ |
-| id | ID | _number \| string_ |
-| name | Name | _string_ |
-| tel | Phone | _string_ |
-| isDefault | Is default contact | _boolean_ |
diff --git a/src/contact-card/README.zh-CN.md b/src/contact-card/README.zh-CN.md
index 2838814e7..99e789458 100644
--- a/src/contact-card/README.zh-CN.md
+++ b/src/contact-card/README.zh-CN.md
@@ -1,128 +1,65 @@
-# Contact 联系人
+# ContactCard 联系人卡片
### 介绍
-通过 Contact 组件可以实现联系人的展示、选择、编辑等功能。
+以卡片的形式展示联系人信息。
### 引入
```js
import { createApp } from 'vue';
-import { ContactCard, ContactList, ContactEdit } from 'vant';
+import { ContactCard } from 'vant';
const app = createApp();
app.use(ContactCard);
-app.use(ContactList);
-app.use(ContactEdit);
```
## 代码演示
-### 基础用法
+### 添加联系人
```html
-
-
-
-
-
-
-
-
-
-
-
-
+
```
```js
+import { Toast } from 'vant';
+
+export default {
+ methods: {
+ onAdd() {
+ Toast('新增');
+ },
+ },
+};
+```
+
+### 编辑联系人
+
+```html
+
+```
+
+```js
+import { Toast } from 'vant';
+
export default {
data() {
return {
- chosenContactId: null,
- editingContact: {},
- showList: false,
- showEdit: false,
- isEdit: false,
- list: [
- {
- name: '张三',
- tel: '13000000000',
- id: 0,
- },
- ],
+ currentContact: {
+ name: '张三',
+ tel: '13000000000',
+ },
};
},
-
- computed: {
- cardType() {
- return this.chosenContactId !== null ? 'edit' : 'add';
- },
-
- currentContact() {
- const id = this.chosenContactId;
- return id !== null ? this.list.filter((item) => item.id === id)[0] : {};
- },
- },
-
methods: {
- // 添加联系人
- onAdd() {
- this.editingContact = { id: this.list.length };
- this.isEdit = false;
- this.showEdit = true;
- },
-
- // 编辑联系人
- onEdit(item) {
- this.isEdit = true;
- this.showEdit = true;
- this.editingContact = item;
- },
-
- // 选中联系人
- onSelect() {
- this.showList = false;
- },
-
- // 保存联系人
- onSave(info) {
- this.showEdit = false;
- this.showList = false;
-
- if (this.isEdit) {
- this.list = this.list.map((item) =>
- item.id === info.id ? info : item
- );
- } else {
- this.list.push(info);
- }
- this.chosenContactId = info.id;
- },
-
- // 删除联系人
- onDelete(info) {
- this.showEdit = false;
- this.list = this.list.filter((item) => item.id !== info.id);
- if (this.chosenContactId === info.id) {
- this.chosenContactId = null;
- }
+ onEdit() {
+ Toast('编辑');
},
},
};
@@ -136,62 +73,17 @@ export default {
## API
-### ContactCard Props
+### Props
-| 参数 | 说明 | 类型 | 默认值 |
-| -------- | --------------------------- | -------- | -------------------- |
-| type | 类型,可选值为 `add` `edit` | _string_ | `add` |
-| name | 联系人姓名 | _string_ | - |
-| tel | 联系人手机号 | _string_ | - |
-| add-text | 添加时的文案提示 | _string_ | `添加订单联系人信息` |
+| 参数 | 说明 | 类型 | 默认值 |
+| -------- | ------------------------- | -------- | ------------ |
+| type | 卡片类型,可选值为 `edit` | _string_ | `add` |
+| name | 联系人姓名 | _string_ | - |
+| tel | 联系人手机号 | _string_ | - |
+| add-text | 添加时的文案提示 | _string_ | `添加联系人` |
-### ContactCard Events
+### Events
| 事件名 | 说明 | 回调参数 |
| ------ | ---------- | -------------- |
| click | 点击时触发 | _event: Event_ |
-
-### ContactList Props
-
-| 参数 | 说明 | 类型 | 默认值 |
-| --- | --- | --- | --- |
-| v-model | 当前选中联系人的 id | _number \| string_ | - |
-| list | 联系人列表 | _Contact[]_ | `[]` |
-| add-text | 新建按钮文案 | _string_ | `新建联系人` |
-| default-tag-text `v2.3.0` | 默认联系人标签文案 | _string_ | - |
-
-### ContactList Events
-
-| 事件名 | 说明 | 回调参数 |
-| ------ | ---------------------- | --------------------------------- |
-| add | 点击新增按钮时触发 | - |
-| edit | 点击编辑按钮时触发 | item: 当前联系人对象,index: 索引 |
-| select | 切换选中的联系人时触发 | item: 当前联系人对象,index: 索引 |
-
-### ContactEdit Props
-
-| 参数 | 说明 | 类型 | 默认值 |
-| --- | --- | --- | --- |
-| contact-info | 联系人信息 | _object_ | `[]` |
-| is-edit | 是否为编辑联系人 | _boolean_ | `false` |
-| is-saving | 是否显示保存按钮加载动画 | _boolean_ | `false` |
-| is-deleting | 是否显示删除按钮加载动画 | _boolean_ | `false` |
-| tel-validator | 手机号格式校验函数 | _(tel: string) => boolean_ | - |
-| show-set-default `v2.3.0` | 是否显示默认联系人栏 | _boolean_ | `false` |
-| set-default-label `v2.3.0` | 默认联系人栏文案 | _string_ | - |
-
-### ContactEdit Events
-
-| 事件名 | 说明 | 回调参数 |
-| ------ | ------------------ | ----------------- |
-| save | 点击保存按钮时触发 | content:表单内容 |
-| delete | 点击删除按钮时触发 | content:表单内容 |
-
-### Contact 数据结构
-
-| 键名 | 说明 | 类型 |
-| --------- | -------------------- | ------------------ |
-| id | 每位联系人的唯一标识 | _number \| string_ |
-| name | 联系人姓名 | _string_ |
-| tel | 联系人手机号 | _number \| string_ |
-| isDefault | 是否为默认联系人 | _boolean_ |
diff --git a/src/contact-card/demo/index.vue b/src/contact-card/demo/index.vue
index 5ac4a7233..be226853c 100644
--- a/src/contact-card/demo/index.vue
+++ b/src/contact-card/demo/index.vue
@@ -1,144 +1,65 @@
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
diff --git a/src/contact-card/test/__snapshots__/demo.legacy.js.snap b/src/contact-card/test/__snapshots__/demo.legacy.js.snap
index ac19a8cda..080c4b76f 100644
--- a/src/contact-card/test/__snapshots__/demo.legacy.js.snap
+++ b/src/contact-card/test/__snapshots__/demo.legacy.js.snap
@@ -8,49 +8,15 @@ exports[`renders demo correctly 1`] = `
添加联系人
-
-
+
diff --git a/src/contact-card/test/__snapshots__/index.legacy.js.snap b/src/contact-card/test/__snapshots__/index.legacy.js.snap
index 5c4e54037..8946ba610 100644
--- a/src/contact-card/test/__snapshots__/index.legacy.js.snap
+++ b/src/contact-card/test/__snapshots__/index.legacy.js.snap
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
-exports[`ContactList render 1`] = `
+exports[`should render ContactList correctly 1`] = `