-
Notifications
You must be signed in to change notification settings - Fork 11
index_printers
New Future edited this page Oct 24, 2015
·
1 revision
打印店信息查询
GET /printers/?page=1&sch_id=1
参数说明:
page
页数,没有此参数默认为1
sch_id
学校id,没有此参数默认为所有学校
{
"status": 1,
"info":[
{
"id": "1",
"name": "打印店名称",
"sch_id": "学校id",
"address": "打印店地址"
}
]
}
【登陆后才允许访问】
GET /printers/12
响应结果
{
"status": 1,
"info":{
"name": "11",
"sch_id": "1",
"address": "地点",
"phone": "18222285110",
"email": "[email protected]",
"qq": "123456789",
"profile": "打印店简介",
"image": "图片地址",
"open": "开放时间",
"price":{"c_s": 彩印单面, "c_d": 彩印双面, "s": 单面, "d": 双面},
"other": "其他优惠说明信息",
"id": 12
}
}
GET /printers/12/price
响应结果
{
"status": 1,
"info":{
"c_s": 1,
"c_d": 2,
"s": 0.1,
"d": 0.14,
"other": "其他说明信息"
}
}
- 验证auth
- 资源books【部分需登录】
- 文件file【必须已登录】
- 密码password【部分登录】
- 打印店printers【部分登录】
- 学校school【无需登录】
- 分享share【部分登录】+
- 标签tags【部分登录】
- 订单task【必须登录】+
- 用户user【必须已登录】