Changes between Version 41 and Version 42 of pcauto_BuyAuto_1.0.0


Ignore:
Timestamp:
07/24/2014 02:50:11 PM (12 years ago)
Author:
limingjiu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pcauto_BuyAuto_1.0.0

    v41 v42  
    527527||url||string||是||计算结果web页面地址|| 
    528528 
    529 === 2.6 图集 === 
     529=== 2.6 图集 (需要修改)=== 
     530==== 1) 车系/车型图片筛选条件 ==== 
    530531{{{ 
    531  备注:车系图片列表-部分 
    532  请求URL:http://mrobot.pcauto.com.cn/v2/price/pictures?serialGroupId=10059&fmt=json&pageSize=999&typeId=3 
     532 请求URL:http://mrobot.pcauto.com.cn/v2/price/pictureConditions?serialId=3404 
     533          http://mrobot.pcauto.com.cn/v2/price/pictureConditions?modelId=26593 
    533534 HTTP请求方式:get 
    534535 是否需要登录:否 
    535536 返回格式:json 
    536537 缓存方式:无 
    537  缓存时间:7天 
    538  请求参数: 
    539     serialGroupId:车系id 
    540     fmt:返回格式 
    541     pageSize:一页条数 
    542     typeId:部件:1为外观,2为内饰,3为其他细节,4为官方图 
     538 缓存时间:1小时 
     539 请求参数:serialId: 车系id,必填 
     540           modelId: 车型id,可选,当modelId不为0时,返回参数的models字段为空数组 
     541 返回参数: 
     542 { 
     543    "models":[ 
     544        { 
     545            "id":123, 
     546            "modelName":"" 
     547        } 
     548    ], 
     549    "types":[ 
     550        { 
     551            "id":1, 
     552            "typeName":"外观" 
     553        } 
     554    ], 
     555    "colors":[ 
     556        { 
     557            "id":1, 
     558            "colorName":"" 
     559        } 
     560    ] 
     561} 
    543562 请求后端URL: 
    544              http://price.pcauto.com.cn/interface/iphone/photo_page_list.jsp?typeId=3&serialGroupId=10059&pageSize=999&pageNo=1 
    545  请求后端参数: 
    546         serialGroupId:车系id 
    547         pageSize:一页条数 
    548         pageNo:页数 
    549         typeId:部件:1为外观,2为内饰,3为其他细节,4为官方图 
    550 }}} 
     563             http://price.pcauto.com.cn/interface/iphone/photo_choose_option.jsp 
     564}}} 
     565 
     566==== 2) 车系/车型图片筛选查询 ==== 
     567{{{ 
     568请求URL: http://mrobot.pcauto.com.cn/v2/price/pictures?serialGroupId=3404&modelId=26593&colorId=16133&typeId=1 
     569 HTTP请求方式:get 
     570 是否需要登录:否 
     571 返回格式:json 
     572 缓存方式:无 
     573 缓存时间:1小时 
     574 请求参数: 
     575 serialId:车系id 
     576 modelId:车型id 
     577 typeId:图片类型id 
     578 colorId:颜色id 
     579 pageNo:第几页 
     580 pageSize:每页显示多少条 
     581 返回参数: 
     582{ 
     583    "data": [ 
     584        { 
     585            "bigPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932203312_500.jpg", 
     586            "smallPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932203312_120x90.jpg" 
     587        }, 
     588        { 
     589            "bigPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932206296_500.jpg", 
     590            "smallPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932206296_120x90.jpg" 
     591        }, 
     592        { 
     593            "bigPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932209296_500.jpg", 
     594            "smallPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932209296_120x90.jpg" 
     595        }, 
     596        { 
     597            "bigPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932212468_500.jpg", 
     598            "smallPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932212468_120x90.jpg" 
     599        }, 
     600        { 
     601            "bigPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932215640_500.jpg", 
     602            "smallPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932215640_120x90.jpg" 
     603        }, 
     604        { 
     605            "bigPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932218718_500.jpg", 
     606            "smallPath": "http://img.pconline.com.cn/images/upload/upc/tx/auto5/1308/08/c4/24272527_1375932218718_120x90.jpg" 
     607        } 
     608    ], 
     609    "pageCount": 4, 
     610    "pageNo": 1, 
     611    "pageSize": 6, 
     612    "total": 19 
     613} 
     614 请求后端URL: 
     615             http://price.pcauto.com.cn/interface/iphone/photo_page_list.jsp 
     616}}}