## 上传图片
~~~[api]
post:/index/data/upload
varchar:user_sid=680130509534c15893e3603bd782d3cb #登录密钥
int:user_uid=1#登录的该用户id
file:file= #图片
tinyint:type=图片类型#0=洗澡前;1=洗澡后;2=顾客喜欢的造型的照片
<<<
success
{
"code": 1,
"msg": "upload successful", //上传成功
"result": {
"type": "2", //类型
"name": "二维码.png", //图片名字
"src": "http://miaoxiang.xtow.net/static/cover/82/6692a865a8e102f20da3cb3baab17a.png",
"size": 89573, //图片大小(字节)
"create_time": "2018-12-26 14:09:57", // 上传时间
"id": "1" //图片id
}
}
<<<
error
{
"code": 0,
"msg": "请上传图片"
}
~~~