[TOC]
###物业公司介绍
+++
get:{url}index.php/Home/Property/introduction
<<<
success
{
"code": "200",
"msg": "success",
"data": {
"introduction": "在“安心、参与、信任、共生”的理念下,未来万科物业将致力于搭建一个幸福的平台。这里有快乐工作的员工,有彼此信任的邻里,有志同道合的合作伙伴,万科物业不仅在提供服务,更在营造幸福。万科物业将以至诚和创新行动成就百万人的居住梦想,构筑社区幸福家园。"
}
}
+++
##号码通
###列表
+++
get:{url}index.php/Home/Property/getNumList
*int:page#页码
<<<
success
{
"code": "200",
"msg": "success",
"data": [
{
"id": "2",
"name": "赵轮",
"remark": "保安",
"mobile": "13877564954"
},
{
"id": "3",
"name": "薛之赚",
"remark": "公头",
"mobile": "13877564954"
}
]
}
+++
###搜索
+++
get:{url}index.php/Home/Property/numberSearch
*key#搜索关键词
*int:page#页码
<<<
success
{
"code": "200",
"msg": "success",
"data": [
{
"id": "3",
"name": "薛之赚",
"remark": "公头",
"mobile": "13877564954"
}
]
}
+++
##缴费
###缴费列表
+++
get:{url}index.php/Home/Payment/index
*key#搜索关键词
*int:page#页码
<<<
success
{
"code": "200",
"msg": "success",
"data": [
{
"id": "2",
"year": "2016",
"month": "7",
"order_total": "20.00", //支付总额
"status": "0", //支付状态,0 未支付,1 已支付
"pay_time": null,
"pay_type": null, //支付类型,1 支付宝, 2 微信
"company_name": "民工" //收款方
},
{
"id": "3",
"year": "2014",
"month": "8",
"order_total": "20.00",
"status": "1",
"pay_time": "1473668074",
"pay_type": "1",
"company_name": "民工"
}
]
}
+++
###缴费详情
+++
get:{url}index.php/Home/Payment/getDetail
*int:order_id#缴费条目id
*int:page#页码
<<<
success
{
"code": "200",
"msg": "success",
"data": [
{
"id": "4",
"order_id": "2",
"name": "电费",
"unit": "度",
"price": "1.20",
"num": "10.00",
"total": "12.00"
},
{
"id": "5",
"order_id": "2",
"name": "水费",
"unit": "吨",
"price": "5.00",
"num": "15.00",
"total": "75.00"
}
]
}
+++
###户主信息
+++
get:{url}index.php/Home/Payment/getVillageInfo
<<<
success
{
"code": "200",
"msg": "success",
"data": {
"id": "1",
"village_name": "高大上",
"building": "a1",
"number": "303",
"householder": "余先森",
"mobile": "189****5473"
}
}
+++
##物业报修
###报修列表
+++
get:{url}index.php/Home/Repair/index
*key#搜索关键词
*int:page#页码
<<<
success
{
"code": "200",
"msg": "success",
"data": [
{
"id": "6",
"property": "1", //属性,0 个人维修,1 公共维修
"status": "0", //维修状态,0 未处理,1 已处理,2 已修好
"location": "12栋一单元1304室",
"content": "阳台",
"images": [
"http://localhost/work/sjkj/public/upload/repair/{8F231330-4315-46E6-8F7A-50895FEE53A5}.gif",
"http://localhost/work/sjkj/public/upload/repair/{1CE2363A-CB70-49AB-A164-CCDD6511644B}.jpg"
],
"order_time": "1471403509", //预约时间
"create_time": "1471416058"
},
{
"id": "5",
"property": "1",
"status": "0",
"location": null,
"content": "阳台",
"images": "",
"order_time": "1471403509",
"create_time": "1471414818"
}
]
}
+++
###发布报修
+++
get:{url}index.php/Home/Repair/store
*int:property#类型,0 个人维修,1 公共维修
*content#内容
*location#具体位置
*order_time#预约时间
*name#联系人
*mobile#联系电话
<<<
success
{
"code": "200",
"msg": "success",
"data": {
"id": "11"
}
}
<<<
error
{
"code": "500",
"msg": "错误信息",
"data": []
}
+++
##小区公告
+++
get:{url}index.php/Home/Property/getNotices
*int:page#页码
<<<
success
{
"code": "200",
"msg": "success",
"data": [
{
"id": "2",
"title": "王石前往慰问",
"content": "由于台风但物业全体员工咬牙坚持,在地产的大力支持下,夜以继日抢修恢复设备设施、清扫路面、清理折断树枝,饿了喝瓶八宝粥、困了囫囵打个盹,用“悦程速度”重建幸福家园。",
"sort": "1", //1 置顶,0 非置顶
"village_name": "高大上",
"images": [
"http://localhost/work/sjkj/public/upload/repair/{8F231330-4315-46E6-8F7A-50895FEE53A5}.gif",
"http://localhost/work/sjkj/public/upload/repair/{1CE2363A-CB70-49AB-A164-CCDD6511644B}.jpg"
],
"create_time": "1471414818"
},
{
"id": "1",
"title": "“莫兰蒂”横扫厦门,王石前往慰问",
"content": "9月15日凌晨三点零五分,第十四号超强台风“莫兰蒂”在厦门翔安登陆,花园鹭岛满目疮痍:超90%绿化福家园。",
"sort": "0",
"village_name": "高大上",
"images": "",
"create_time": "1471414817"
}
]
}
+++