vant/docs/markdown/en-US/contact.md
2017-12-14 17:36:55 +08:00

4.1 KiB
Raw Blame History

Contact

Install

import { ContactCard, ContactList, ContactEdit } from 'vant';

Vue.use(ContactCard);
Vue.use(ContactList);
Vue.use(ContactEdit);

Usage

Basic Usage

<!-- Contact Card -->
<van-contact-card
  :type="cardType"
  :name="currentContact.name"
  :tel="currentContact.tel"
  @click="showList = true"
/>

<!-- Contact List -->
<van-popup v-model="showList" position="bottom">
  <van-contact-list
    v-model="chosenContactId"
    :list="list"
    @add="onAdd"
    @edit="onEdit"
    @select="onSelect"
  />
</van-popup>

<!-- Contact Edit -->
<van-popup v-model="showEdit" position="bottom">
  <van-contact-edit
    :contactInfo="editingContact"
    :isEdit="isEdit"
    @save="onSave"
    @delete="onDelete"
  />
</van-popup>
export default {
  data() {
    return {
      chosenContactId: null,
      editingContact: {},
      showList: false,
      showEdit: false,
      isEdit: false,
      list: [{
        name: 'John Snow',
        tel: '13000000000',
        id: 0
      }]
    };
  },

  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;
      }
    }
  }
};

Uneditable

<van-contact-card
  type="edit"
  name="John Snow"
  tel="13000000000"
  :editable="false"
/>

ContactCard API

Attribute Description Type Default Accepted Values
type Type String add edit
addText Add card text String Add contact info -
name Name String - -
tel Phone String - -

ContactList API

Attribute Description Type Default Accepted Values
v-model Id of chosen contact `String Number` -
addText Add button text String Add new contact -
list Contact list Array [] -

ContactList Event

Event Description Attribute
add Triggered when click add button -
edit Triggered when click edit button item: contact objectindex
select Triggered when select contact item: contact object

ContactEdit API

Attribute Description Type Default Accepted Values
contactInfo Contact Info Object [] -
isEdit Whether is editing Boolean false -
isSaving Whether to show save button loading status Boolean false -
isDeleting Whether to show delete button loading status Boolean false -

ContactEdit Event

Event Description Attribute
save Triggered when click save button contentcontact info
delete Triggered when click delete button contentcontact info

Contact Data Structure

key Description Type
id ID `String
name Name String
tel Phone String