#组件使用说明
>示例数据均为静态数据,接口生成如下结构的数据:(已上传完整demo)
---
#### 索引列表
```
    {
         "A": [{
                "id": 56,
                "spell": "aba",
                "name": "阿坝"
		    }]
			......
    }
```
#### 通讯录列表
```
    {
         "A": [{
                "id": 56,
                "spell": "zs",
                "name": "张三",
                "phoneNumber":"13143599999"
		    }]
			......
    }
```
> id spell name 为必须字段  phoneNumber字段如果没有则不返回
---
#### 使用示例 (phones.vue)
```
	
		
	
```
#### 使用示例 (phone-search.vue)
```
	
		
			
```
#### 引入
>把phone-directory目录拷贝至项目components
>把pages下的phones目录拷贝至项目pages目录下
>在项目pages.json文件写入
(```)
    {
        "path" : "pages/phones/phones",
        "style" : {
            "navigationBarTitleText" : "通讯录",
            "app-plus":{
                "bounce":"none",
                "scrollIndicator":"none"
            }
        }
    },
    {
        "path" : "pages/phones/phone-search",
        "style" : {
            "navigationBarTitleText" : "搜索联系人"
        }
    }
(```)
### 组件参数说明
属性名|类型|是否必填|说明
--|:--:|--:
phones|Object|是|接口数据
paramClick|Object|是|当点击时返回对应参数
>文件名 参数 也可自己定义 搜索框内容可在phone-directory.vue 和phone-search-list.vue  文件修改