#### 组件名称
gov-person-card

#### 解释：
个人信息组件

#### 属性说明：
|属性名 | 类型 | 必填 | 默认值 |说明 |
|---|---|---|---|---|
|type |String |否||卡片类型，分为两种normal、big|
|bgImg |String |否||卡片背景图片|
|name |String |是||卡片的名称|
|infoList |Array |是||卡片信息，最多可配置5条，超过不会显示|

#### 代码示例
swan:
```
<gov-person-card
        name="李思"
        type="normal"
        info-list="{{personCard}}"
        type="{{cardType}}"
    />
    <view class="preview-caption">卡片类型（big）</view>
    <gov-person-card
        name="李思"
        type="big"
        info-list="{{personCard}}"
        type="{{cardType}}"
    />
    <view class="preview-caption">自定义样式</view>
    <gov-person-card
        name="李思"
        type="normal"
        gov-person-card="gov-person-card"
        gov-info-name="gov-info-name"
        gov-info-title="gov-info-title"
        gov-info-desc="gov-info-desc"
        info-list="{{personCard}}"
        type="{{cardType}}"
    />
```
js:
```
Page({
    data: {
        imgSrc: 'http://img5.imgtn.bdimg.com/it/u=2281288140,3829534191&fm=26&gp=0.jpg',
        personCard: [
            {
                title: '职位',
                desc: '副教授'
            },
            {
                title: '研究领域',
                desc: '决策理论及应用，社会经济统计学'
            }
        ]
    }
});
```
css:
```
.gov-person-card {
    color: #666 !important;
    width: 320px !important;
    background:#cccc99 !important;
    margin:0 auto !important;
}
.gov-info-name {
    font-size: 20px !important;
}
.gov-info-title {
    font-size: 14px !important;
    color: #300 !important;
}
.gov-info-desc {
    font-size: 14px !important;
    color: #ffffcc !important;
}
```