获取收货地址列表

### 获取收货地址列表: #### 请求url * <font color=red>`/user/address/:userid`</font> #### 请求方式 * <font color=red>`GET`</font> --- ##### 请求参数说明: |参数名|类型|说明| | :-----| ----: | :----: | |userid|string|用户id| ##### 返回示例 ```json { "err": null, "data": [ { "_id": "61866c93132cf56dfe4ad7ee", "userId": "6186517b17ef741d317bf549", "userAddress": [ { "addressId": 5083, "userName": "张三", "userPhone": "15866669999", "defaultFlag": 1, "provinceName": "北京", "cityName": "北京市", "regionName": "东城区", "detailAddress": "天安门" } ] } ], "msg": "查询用户地址数据成功", "code": 200 } ```