Changes between Initial Version and Version 1 of yjp/web-intf


Ignore:
Timestamp:
09/27/2012 04:28:47 PM (14 years ago)
Author:
hejingdong
Comment:

创建接口

Legend:

Unmodified
Added
Removed
Modified
  • yjp/web-intf

    v1 v1  
     11.首页接口---主题列表 
     2原型  http://trac.pc.com.cn/mobile/pototype/ideas/youjiapin/req1.0.0/ 
     3结构类似: 
     4{ 
     5    "total":100, 
     6    "pageIndex":1, 
     7    "pageSize":10, 
     8    "topics":[ 
     9        { 
     10            "id":10, 
     11            "bigImg":"http:xxxx", 
     12            "name":"topicName", 
     13            "description":"topic descript" 
     14        }, 
     15        { 
     16            "id":11, 
     17            "bigImg":"http:xxxx", 
     18            "name":"topicName", 
     19            "description":"topic descript" 
     20        } 
     21    ] 
     22} 
     23total主题总数量 
     24pageIndex:分页用页码 
     25pageSize:分页用每页数量 
     26topics  主题数组 
     27   id  主题的id 
     28   bigImg  主题图片 
     29   name   主题名称 
     30   description  主题描述 
     31    
     322.主题接口 
     33原型 http://trac.pc.com.cn/mobile/pototype/ideas/youjiapin/req1.0.0/ 
     34{ 
     35    "total":20, 
     36    "pageIndex":1, 
     37    "pageSize":10, 
     38    "products":[ 
     39        { 
     40            "id":10, 
     41            "bigImg":"http:xxxx", 
     42            "name":"productName", 
     43            "collectCount":1234 
     44        }, 
     45        { 
     46            "id":11, 
     47            "bigImg":"http:xxxx", 
     48            "name":"productName", 
     49            "collectCount":1234 
     50        } 
     51    ] 
     52} 
     53total单品总数量 
     54pageIndex:分页用页码 
     55pageSize:分页用每页数量 
     56products  单品数组 
     57   id  单品的id 
     58   bigImg  单品图片 
     59   name   单品名称 
     60   collectCount  单品被收藏的数量 
     61 
     623.单品库首页 
     63原型  http://trac.pc.com.cn/mobile/pototype/ideas/youjiapin/req1.0.0/ 
     64{ 
     65    "space":[ 
     66        { 
     67            "image":"客厅", 
     68            "name":"type name", 
     69            "desciption":"沙发/茶几/电视柜", 
     70            "types":[ 
     71                { 
     72                    "typeId":11, 
     73                    "typeName":"全部", 
     74                    "typeImg":"subclassImg" 
     75                }, 
     76                { 
     77                    "typeId":12, 
     78                    "typeName":"床", 
     79                    "typeImg":"subclassImg" 
     80                }, 
     81                { 
     82                    "typeId":13, 
     83                    "typeName":"床头柜", 
     84                    "typeImg":"subclassImg" 
     85                } 
     86            ] 
     87        }, 
     88        { 
     89            "image":"睡房", 
     90            "name":"type name", 
     91            "desciption":"床/床头柜/衣柜/梳妆台", 
     92            "types":[ 
     93                { 
     94                    "typeId":11, 
     95                    "typeName":"全部", 
     96                    "typeImg":"subclassImg" 
     97                }, 
     98                { 
     99                    "typeId":12, 
     100                    "typeName":"床", 
     101                    "typeImg":"subclassImg" 
     102                }, 
     103                { 
     104                    "typeId":13, 
     105                    "typeName":"床头柜", 
     106                    "typeImg":"subclassImg" 
     107                } 
     108            ] 
     109        } 
     110    ] 
     111} 
     112space:空间数组 
     113   image:图片 
     114   name:空间名 
     115   desciption:type的集合 
     116   types:分类数组 
     117      typeId:分类id 
     118      typeName:分类名 
     119      typeImg:分类图片url 
     120 
     1214.单品库列表页-----搜索结果----猜你喜欢 
     122http://trac.pc.com.cn/mobile/pototype/ideas/youjiapin/req1.0.0/ 
     123 
     124{ 
     125    "total":100, 
     126    "pageIndex":1, 
     127    "pageSize":10, 
     128    "products":[ 
     129        { 
     130            "name":"法丽莎家具 欧式床 实木床 田园婚床 双人床 1.8 1.5米", 
     131            "price":"¥2699.00", 
     132            "oldPrice":"¥2899.00", 
     133            "collectCount":1234 
     134        }, 
     135        { 
     136            "name":"法丽莎家具 欧式床 实木床 田园婚床 双人床 1.8 1.5米", 
     137            "price":"¥2699.00", 
     138            "oldPrice":"¥2899.00", 
     139            "collectCount":1234 
     140        } 
     141    ] 
     142} 
     143 
     144total单品总数量 
     145pageIndex:分页用页码 
     146pageSize:分页用每页数量 
     147products  单品数组 
     148products:产品数组 
     149   name:产品名 
     150   price:当前价格、优惠价格 
     151   oldPrice:旧价格 
     152   collectCount:收藏数量 
     153 
     154 
     155 
     1565.测试页 
     157http://trac.pc.com.cn/mobile/pototype/ideas/youjiapin/req1.0.0/ 
     158{ 
     159    "count":6, 
     160    "tests":[ 
     161        { 
     162            "testId":1, 
     163            "testDescription":"请选择上述两款产品中你较喜欢的产品", 
     164            "MultiSelect":0, 
     165            "selection":[ 
     166                { 
     167                    "selectionId":11, 
     168                    "image":"http://xxx" 
     169                }, 
     170                { 
     171                    "selectionId":12, 
     172                    "image":"http://xxx" 
     173                } 
     174            ] 
     175        }, 
     176        { 
     177            "testId":2, 
     178            "testDescription":"请选择上述两款产品中你较喜欢的产品", 
     179            "MultiSelect":1, 
     180            "selection":[ 
     181                { 
     182                    "selectionId":21, 
     183                    "image":"http://xxx" 
     184                }, 
     185                { 
     186                    "selectionId":22, 
     187                    "image":"http://xxx" 
     188                } 
     189            ] 
     190        } 
     191    ] 
     192} 
     193 
     194count:测试页数量 
     195tests:测试页数组 
     196   testId:测试页id 
     197   testDescription:测试页 
     198   MultiSelect:是否多选,1是,0否 
     199   selection:选项数组 
     200      selectionId:选项id 
     201      image:图片url 
     202 
     203 
     2046.终端页 
     205http://trac.pc.com.cn/mobile/pototype/ideas/youjiapin/req1.0.0/ 
     206{ 
     207    "productName":"法丽莎家具 欧式床 实木床 田园婚床 双人床 1.8 1.5米", 
     208    "price":"¥2699.00", 
     209    "oldPrice":"¥2899.00", 
     210    "seller":"发丽莎家居旗舰店", 
     211    "image":[ 
     212        "http://xxxx", 
     213        "http://xxxx", 
     214        "http://xxxx" 
     215    ], 
     216    "commentCount":1234, 
     217    "comments":[ 
     218        { 
     219            "nickName":"b_小贝贝", 
     220            "time":"9月3日 15:23", 
     221            "face":"http://asdfasdf", 
     222            "content":"她家的包包看起来还不错,有谁买过的,求推荐!" 
     223        }, 
     224        { 
     225            "nickName":"Blanch_213", 
     226            "time":"9月3日 15:53", 
     227            "face":"http://asdfasdf", 
     228            "content":"简单,但太普遍了!" 
     229        } 
     230    ] 
     231} 
     232productName:产品名 
     233price:价格、优惠价格 
     234oldPrice:原价格 
     235seller:商家 
     236image:图片数组 
     237commentCount:评论总数 
     238comments:评论数组 
     239   nickName:昵称 
     240   time:评论时间 
     241   face:头像 
     242   content:评论内容 
     243