Blame view

docs/data-structure.md 32.7 KB
xuqi authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# 页面数据结构说明

## 通用

### 商品信息

    {
        id: 1,
        thumb: 'path/to/goods/img',
        url: '',
        name: '',
        salePrice: 500,
        price: 1000,
        tags: [
            {
16
                is_new: true //NEW
xuqi authored
17 18
            },
            {
19
                is_discount: true //SALE
xuqi authored
20 21
            },
            {
22
                is_limited: false //限量商品
xuqi authored
23 24
            },
            {
25
                is_yohood: // YOHOOD
xuqi authored
26 27
            },
            {
28
                is_advance: true //再到着
xuqi authored
29 30
            }
        ],
31
        is_soon_sold_out: true //即将售罄
xuqi authored
32 33 34 35 36 37 38 39 40
    }

### 侧栏导航

    {
        sideNav:[
            {
                textCn: '',
                textEn: '',
梁志锋 authored
41
                icon: '', //boys,girls,kids,life,new,guang 等图标的url地址
xuqi authored
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
                url: '',
                //子菜单
                subNav: {
                    list: [
                        {
                            textCn: '',
                            textEn: '',
                            back: true/false,
                            isSelect: true/false,
                            url: ''
                        },
                        ...
                    ]
                }
            },
            ...
        ]
    }

### 站点头部和尾部
63 64
    //header
    {
65
        pageHeader: {
xuqi authored
66 67 68 69 70
            //页面主题标识
            boys: true,
            girls: true,
            kids: true,
            lifeStyle: true,
71
            //对应页面有就传,没有就不传
xuqi authored
72
            navBack: true,
73 74
            navTitle: '',
            navHome: ''
75 76 77 78 79
        }
    }

    //footer已登录
    {
xuqi authored
80
        pageFooter: true
81 82
    }
xuqi authored
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
### 筛选

    {
        filter: {
            classify: [
                {
                    title: '性别',
                    default: true/false,
                    name: '全部性别',
                    dataType: 'gender', //查询时字段名
                    subs: [
                        {
                            dataId: 0,
                            name: '全部性别',
                            chosed: true //是否当前选中
                        },
                        ...
                    ]
                },
                {
                    ...
                }
            ]
        }
    }
109
## 首页
110
xuqi authored
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
    {
        headerDownload: {
            img: '',
            url: ''
        },
        homeHeader: {
            bgColor: '',
            searchUrl: ''
        },
        content: [
            //banner
            {
                banner: {
                    list: [
                        {
                            url: '',
                            img: ''
                        },
                        ...
                    ]
                }
            },
            //图标入口
            {
                iconsEnter: {
                    list: [
                        {
                            url: '',
                            img: '',
                            text: ''
                        },
                        ...
                    ]
                }
            },
            //热门分类
            {
                hotCategory: {
                    img: '',
                    url: '',
                    list: [
                        {
                            img: '',
                            url: '',
                            textCn: ''
                        },
                        ...
                    ]
                }
            },
            //热门品牌
            {
                hotBrands: {
                    img: '',
                    url: '',
                    list: [
                        {
                            name: '',
                            img: '',
                            url: ''
                        },
                        ...
                    ]
                }
            },
            //搭配
            colloaction: {
                name: '潮人 ▪ 搭配',
                more: '',
                imgs: [
                    {
                        img: '',
                        url: ''
                    },
                    ...
                ],
                recos: [
                    {
                        img: '',
                        url: ''
                    },
                    ...
                ]
            },
            //话题
            topic: {
                name: '潮品 ▪ 话题',
                more: '',
                list: [
                    {
                        url: '',
                        img: '',
                        title: '',
                        time: ''
                    },
                    ...
                ]
            },
            //商品分类Block
            goodsCategory: {
                name: '经典裤装',
                more: '',
                banner: {
                    list: [
                        {
                            img: '',
                            url: ''
                        },
                        ...
                    ]
                },
                //TODO:与创意生活BLOCK的区别就是下面图片一个是5张一个是6张,是否可以合并成到此处
                list: [
                    {
                        img: '',
                        url: '',
                        textCn: ''
                    },
                    ...
                ]
            },
            //plus+Satr
            {
                plusStar: {
                    name: '',
                    url: '',
                    img: ''
                }
            },
            //你可能喜欢
            {
                goods: [
                    {...}, //商品信息
                    ...
                ]
            }
        ]
    }

## 逛
xuqi authored
251
### 资讯(公用)
252
xuqi authored
253 254
    {
        id: 1,
xuqi authored
255
        showTags: true/false, //是否显示标签
xuqi authored
256 257 258 259 260 261
        img: '',
        url: '',
        title: '',
        text: '',
        publishTime: '',
        pageView: '',
xuqi authored
262
        //APP打开显示收藏,WAP打开显示点赞
xuqi authored
263
        like: {
xuqi authored
264 265 266 267
            isLiked: true,
            count: 1
        },
        collect: {
xuqi authored
268 269
            isCollected: true,
            url: ''
xuqi authored
270 271 272 273
        },
        share: false,
        isFashionMan: true, //标签分类:isTip、isCollocation、isFashionMan、isFashionGood、isTopic
        author: {
xuqi authored
274
            url: '',
xuqi authored
275 276 277 278
            avatar: '',
            name: ''
        }
    }
xuqi authored
279
xuqi authored
280 281 282
### 逛首页

    {
xuqi authored
283
        swiper: [
xuqi authored
284 285 286 287 288 289 290 291 292 293
            {
                url: '',
                img: ''
            },
            ...
        ],
        navs: [
            {
                typeId: 1,
                type: '最新',
xuqi authored
294
                focus: true
xuqi authored
295 296 297
            },
            ...
        ],
xuqi authored
298
        infos: [
xuqi authored
299 300 301 302
            [
                {...}, //资讯
                ...
            ],
xuqi authored
303 304 305 306 307
            ...
        ]
    }

### 逛列表页
308
xuqi authored
309
    {
310
        infos:
xuqi authored
311
        [
xuqi authored
312
            {...}, //标签
xuqi authored
313 314 315 316 317 318 319
            ...
        ]
    }

### 编辑页

    {
xuqi authored
320
        authorInfo: {
xuqi authored
321 322 323 324
            avatar: '',
            name: '',
            info: ''
        },
xuqi authored
325
        infos: [
xuqi authored
326 327 328 329 330 331 332 333 334 335
            {...}, //标签
            ...
        ]
    }

### 逛详情页

    {
        id: '',
        author: {
xuqi authored
336
            id: 1,
xuqi authored
337 338 339 340 341
            avatar: '',
            name: '',
            intro: '',
            url: ''
        },
xuqi authored
342
        detail: {
xuqi authored
343 344 345 346 347
            title: '',
            publishTime: '',
            pageView: 3445,
            content: [
                {
xuqi authored
348
                    text: ''
xuqi authored
349 350
                },
                {
xuqi authored
351
                    bigImage: ''
xuqi authored
352 353
                },
                {
xuqi authored
354 355 356 357 358 359 360 361
                    smallImage: [
                        {
                            src: ''
                        },
                        {
                            src: ''
                        }
                    ]
xuqi authored
362 363
                },
                {
xuqi authored
364 365
                    //onlyOne
                    relatedReco: {
xuqi authored
366
                        id: 1, //必须字段
xuqi authored
367 368 369 370 371
                        thumb: '',
                        name: '',
                        salePrice: 123,
                        price: 213,
                        url: ''
xuqi authored
372
                    }
xuqi authored
373 374 375 376 377 378

                    //多个
                    relatedReco: [
                        {...}, //商品信息
                        ...
                    ]
xuqi authored
379 380
                },
                {
xuqi authored
381 382 383 384 385 386 387 388 389 390 391
                    collocation:  [
                        {
                            thumb: '',
                            type: 'pants',
                            goods: [
                                {...}, //商品信息
                                ...
                            ]
                        },
                        ...
                    ]
xuqi authored
392 393 394
                }
            ]
        },
xuqi authored
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
        relatedBrand: [
            {
                thumb: '',
                name: '',
                url: ''
            },
            ...
        ],
        relatedTag: [
            {
                name: '',
                url: ''
            },
            ...
        ],
        relatedInfo: [
xuqi authored
411 412
            {
                thumb: '',
xuqi authored
413
                squareThumb: true, //是否为方图
xuqi authored
414 415 416 417 418 419 420 421 422 423
                title: '',
                url: '',
                publishTime: ''
            },
            ...
        ]
    }

### PLUS+STAR
xuqi authored
424 425 426
    //列表页
    {
        ps: {
xuqi authored
427 428
            sName: '',
            pName: '',
xuqi authored
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
            star: [
                {
                    deps: '',
                    //情况1:一张图
                    url: '',
                    img: '',
                    //情况2:多张图
                    imgs: [
                        {
                            url: '',
                            img: ''
                        },
                        ...
                    ]
                }
            ],
            plus: [
                ...
            ]
        }
    }
    //详情页
xuqi authored
451
    {
xuqi authored
452 453 454
        ps: {
            id: 1,
            banner: '',
455
            logo: '',
xuqi authored
456 457 458 459 460 461 462 463 464 465 466 467 468
            name: '',
            isLike: '',
            likeUrl: '',
            intro: '',
            newArrival: {
                moreUrl: '',
                naList: [
                    {...}, //商品信息
                    ...
                ]
            },
            infos: [
                {...}, //资讯
xuqi authored
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
                ...
            ]
        }
    }

### 模板页

    {
        content: [
            {
                img: {
                    src: '',
                    url: ''
                }
            },
            {
                text: ''
            },
            {
                recommendation: {
                    recos: [
                        {...}, //商品信息
                        ...
                    ]
                }
            },
            {
                brands: {
                    list: [
                        {
                            thumb: '',
                            name: '',
                            url: ''
                        },
                        ...
                    ]
                }
            },
            {
                goods: {
                    classify: [
                        {
                            type: 'brand',
                            name: '品牌'
                        },
                        ...
                    ],
                    newPatterns: [
                        {...}, //商品信息
                        ...
                    ]
                }
            }
        ]
    }

## SALE

    {
        headerBanner: {
            list: [
                {
                    url: '',
                    img: ''
                },
                ...
            ]
        },
        saleSection: {
            list: [
                {
                    img: '',
                    url: ''
                },
                ...
            ]
        },
        goodsContainer: {
            name: '最新降价',
            goodsNav: {
                newPatterns: true,
                price: true,
                salesVolume: true,
                screen: true
            },
            goods: [
                {...}, //商品信息
                ...
            ]
        }
xuqi authored
559 560 561 562 563
    }


## 登录、注册、找回密码
xuqi authored
564 565
### TIP:登录注册找回密码页面body有特有样式,因为数据中需要传一个isPassportPage为body添加一个class
xuqi authored
566 567 568
### 通用头部(包含在每个页面中)

    {
xuqi authored
569
        backUrl: '', //GO-BACK链接, 不显示则不传
xuqi authored
570
        showHeaderImg: true/false, //显示头部图片
xuqi authored
571
        headerText: '' //头部标题文字
xuqi authored
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
    }

### 区域列表

    [
        {
            areaCode: '+86', //区号
            selected: true/false,
            name: '中国'
        },
        ...
    ]

### 登录

    //登录页
    {
        account: '', //默认填入的用户名
        registerUrl: '', //免费注册地址
        aliLoginUrl: '',
        weiboLoginUrl: '',
        qqLoginUrl: '',
xuqi authored
594
        internationalUrl: '',
xuqi authored
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
        phoneRetriveUrl: '',
        emailRetriveUrl: ''
    }

    //国际账号登录页
    {
        countrys: [...], //区域列表
        countryCode: '',
        phoneNum: ''
    }

### 注册

    //注册页
    {
        countrys: [...], //区域列表
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
        countryCode: ''  //默认区号
    }

    //验证码
    {
        areaCode: '',
        phoneNum: ''
    }

    //密码页
    {
        ... //仅头部
    }

### 绑定手机号

    //绑定页
    {
        countrys: [...],  //区域列表
        areaCode: '',  //默认区号
        sourceType: 'qq', //用户在登录页选择的第三方登录平台
        openId: ''        //第三方登录平台id,用于绑定手机号
xuqi authored
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
    }

    //验证码
    {
        areaCode: '',
        phoneNum: ''
    }

    //密码页
    {
        ... //仅头部
    }

### 找回密码

    //邮箱找回&重置密码
    {
        ... //仅头部
    }

    //邮箱找回成功
    {
        goEmail: '',
        resendUrl: ''
    }

    //手机找回
    {
        countrys: [...],
        countryCode: ''
    }

    //手机找回验证码
    {
        areaCode: '',
        phoneNum: ''
xuqi authored
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
    }

## 分类

    {
        searchUrl: '',
        class: [
            {
                name: 'BOY',
                focus: true, //默认选中
                ca: [
                    {
                        name: '上衣',
                        sub: [
                            {
                                name: '全部分类',
                                url: ''
                            },
                            ...
                        ]
                    },
                    ...
                ]
            },
            ...
        ]
xuqi authored
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
    }


## 搜索

    {
        hot: [
            {
                name: '夹克',
                url: ''
            },
            ...
        ],
        history: [
            {
                name: '..',
                url: ''
            }
        ]
梁志锋 authored
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
    }

## 品牌

    {
        bannerTop: {
            list: [
                {
                    url: '',
                    img: ''
                },
                ...
            ]
        },
        hotBrand: {
            list: [
                {
                    url: '',
                    img: '',
                    name: ''
                },
                ...
            ]
        },
        brandList: [
             title: '',
             list: {
                    name: '',
                    url: '',
                    isHot: true/false,
                    isNew: true/false
                },
                ...
        ]
748
xuqi authored
749 750 751 752 753
    }

## 商品列表页
    {
        goodList: {
xuqi authored
754 755 756
            search: {
                default: ''
            }, //是否显示搜索栏并指定初始值
xuqi authored
757 758 759 760 761
            brandWay: { //品牌入口
                url: '',
                thumb: '',
                name: ''
            },
xuqi authored
762
            brandHome: {
xuqi authored
763
                id: 0,
xuqi authored
764
                banner: ''
xuqi authored
765 766
                intro: '...',
                collected: true //是否已收藏
xuqi authored
767 768 769 770 771 772 773 774 775
            },
            new: [
                {
                    ... //商品信息
                },
                ...
            ],
            filter: {
                .. //筛选数据结构
xuqi authored
776
            }
xuqi authored
777
        }
xuqi authored
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
    }


## 购物车

    {
        shoppingCart: {
            cartNav: true, //显示预售和普通switch导航
            commonGoodsCount: 2,
            presellGoodsCount: 2, //普通商品和预售商品数目,显示在导航中
            showLoginInfo: true, //是否显示登录提示
            commonCart: {
                goods: [
                    //购物车商品(见下),
                    ...
                ],
                freebieOrAdvanceBuy: true, //是否显示赠品和加价购
                freebie: {
                    url: '',
                    count: 2
                },
                advanceBuy: {
                    url: '',
                    count: 1
                },
                price: 322,
                activityPrice: 223, //活动价
                count: 8,
                sumPrice: 400
            },
            preSellCart: {
                //同普通购物车
                ...
            }
        }
    }

### 选择尺码、数目、颜色面板

    {
        thumb: '',
        name: '',
        price: '',
        salePrice: '',
        colors: [
            {
                id: 1,
                chosed: true,
826 827 828 829 830 831 832 833 834 835 836 837
                name: '黄色',
                colorNum:10,
                shortUrl:'',
                sizes: [
                {
                        id: 2,
                        chosed: true,
                        name: 'X',
                        sizeNum: 2
                    },
                    ...
                ]
xuqi authored
838 839 840
            },
            ...
        ],
841 842

        totalNum: 20
xuqi authored
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888
    }

### 购物车商品

    {
        id: 1,
        thumb: '',
        name: '',
        color: '黄色',
        size: 'L',
        appearDate: '12月', //上市期
        price: 200,
        count: 2,
        soldOut: true, //售罄
        lowStocks: true, //库存不足
    }

### 赠品和加价购

    {
        shoppingCart: {
            gift: [
                //赠品(见下)
            ],
            //or
            advance: [
                {
                    title: '',
                    goods: [
                        //加价购商品(见下)
                    ]
                }
            ]
        }
    }

### 赠品和加价购商品

    {
        id: 1,
        thumb: '',
        name: '',
        color: '黄色',
        size: 'L', //颜色和尺寸需要显示就传,不显示不传
        price: 562,
        count: 3
xuqi authored
889 890
    }
xuqi authored
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
### 订单确认

    {
        orderEnsure: {
            name: '',
            phoneName: '',
            address: '',
            dispatchMode: [
                {
                    id: 1,
                    name: '普通快递'
                },
                ...
            ],
            dispatchTime: [
                {
                    id: 1,
                    name: '只工作日配送'
                },
                ...
            ],
            goods: [
                {
xuqi authored
914
                    ... //订单商品
xuqi authored
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
                }
            ],
            coupon: {
                count: 3, //N张优惠券可用
                notUsed: true,
                value: 10 //使用优惠券后优惠额,notUsed为true的情况下可不传
            },
            yohoCoin: '0', //String
            invoice: true, //发票
            sumPrice: 900,
            salePrice: 90,
            freight: 0,
            price: 800
        }
    }
xuqi authored
931 932 933 934 935 936 937 938 939 940 941 942
## 个人中心

### 会员等级

    {
        vipGrade: {
            //会员等级页面
            vip3: true, //vip等级(3,2,1,0),对应等级传true;
            name: '', //user name
            costOfThisYear: 3000,
            percent: 80, //当前消费等级进度条
            costGap: 300, //距离升级所需消费金额(白金会员不传)
xuqi authored
943
            sumCost: 600,
xuqi authored
944
xuqi authored
945 946 947 948 949 950 951 952
            privilege: [
                {
                    pic: '',
                    title: '',
                    description: ''
                },
                ...
            ]
xuqi authored
953
        }
xuqi authored
954 955 956 957 958 959
    }


### 我的订单
    {
        order: {
xuqi authored
960 961 962 963
            navs: [
                {
                    name: '',
                    active: true,
xuqi authored
964 965
                    typeId: 1,
                    url: ''
xuqi authored
966
                },
xuqi authored
967
                ...
xuqi authored
968
            ]
xuqi authored
969 970 971
        }
    }
xuqi authored
972 973 974 975 976 977 978 979 980 981
    //订单列表
    {
        orders: [
            {
                ...//订单
            }
        ]
        //当无订单时,不传order,返回walkwayUrl
        walkWayUrl: ''
    }
xuqi authored
982 983 984

    //订单
    {
xuqi authored
985
        detailUrl: '',
xuqi authored
986
        orderNum: '',
xuqi authored
987
        orderStatus: '',
xuqi authored
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001
        goods: [
            {
                thumb: '',
                gift: true, //是否赠品
                advanceBuy: true, //是否加价购
                name: '',
                color: '黄色',
                size: 'X',
                price: '588',
                count: 2
            },
            ...
        ],
        count: 1,
xuqi authored
1002 1003 1004
        sumCost: '199.00',
        //status
        completed: true, //已完成
xuqi authored
1005
        canceled: true, //已取消
xuqi authored
1006
        unpaid: true, //or 未支付
xuqi authored
1007
        unreceived: '', //or 待收货(未发货/未收货),查看物流URL
1008
xuqi authored
1009 1010 1011
        //待收货时传递物流参数
        logisticsUrl: ''
xuqi authored
1012 1013
    }
xuqi authored
1014
### 订单详情页
1015
xuqi authored
1016 1017
    {
        orderDetail: {
xuqi authored
1018 1019
            orderNum: '', //订单号
xuqi authored
1020 1021 1022 1023 1024 1025 1026
            name: '', //收货人姓名
            phoneNum: '',
            address: '',

            orderStatus: '订单成功', //订单取消...等订单状态
            orderNum: '',
            orderTime: '',
1027
xuqi authored
1028 1029 1030 1031 1032 1033 1034
            //订单状态
            canceled: true, //是否是取消的订单
            completed: true, //是否是已完成订单
            unpaid: true, //是否是未支付订单
            unreceived: true, //是否是未收货订单

            //如果是待收货(未发货和未收货),传物流信息参数
xuqi authored
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
            logisticsUrl: '',
            logisticsCompany: '',
            logisticsNum: '',
            //end

            goods: [
                {
                    ... //订单商品
                }
            ],
xuqi authored
1045 1046 1047 1048
            sumPrice: '',
            salePrice: '',
            freight: '',
            yohoCoin: '',
xuqi authored
1049
            price: ''
xuqi authored
1050 1051 1052
        }
    }
xuqi authored
1053 1054 1055 1056 1057 1058
### YOHO币

    {
        yohoCoin: {
            coinNum: 10
        }
xuqi authored
1059 1060 1061 1062 1063
    }

### 我的逛

    {
xuqi authored
1064 1065 1066 1067 1068 1069 1070
        myGuang: {
            infos: [
                {...} //逛资讯
                ..
            ],
            //若无收藏则不传infos
        }
梁志锋 authored
1071 1072 1073 1074 1075 1076 1077 1078
    }

### 商品详情页
        {
            'goodsDetailPage': true,
            'pageHeader': {
                'navBack': 'sss ',
                'navHome': 'sss ',
1079
                'navTitle': '商品详情'
梁志锋 authored
1080
            },
1081
梁志锋 authored
1082
            'bannerTop': {
1083 1084
               'list': [
                   {
Lynnic authored
1085
                        'img' : ''
1086 1087 1088 1089
                    },
                    ...
                ]
            },
Lynnic authored
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105

            tags: [
            {
                is_new: true //NEW
            },
            {
                is_discount: true //SALE
            },
            {
                is_limited: false //限量商品
            },
            {
                is_yohood: // YOHOOD
            },
            {
                is_advance: true //再到着
Lynnic authored
1106 1107 1108
            },
            {
                is_soon_sold_out: true //即将售罄
Lynnic authored
1109 1110
            }
        ],
1111
1112
            'goodsName' : 'Stussy No. 4 BOX TEE  ',
梁志锋 authored
1113
            'goodsSubtitle' : '【全民拼抢购】经典印花T恤,满4件免一件!',
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123

            'goodsPrice' : {
                    'currentPrice' : '¥298.00',
                    'previousPrice' : '¥598.00'
              },
            'periodOfMarket' : '11月',
            'goodsTitle' : '¥298.00',
            'vipLevel' : {
                'list' : [
                   {
1124 1125
                        'text' : '¥284.00',
                        'currentLevel':true
1126 1127 1128 1129 1130 1131 1132
                    },
                    ...
                ]
            },
           'goodsDiscount' : {
                    'list' : [
                           {
梁志锋 authored
1133
                                'text' : '【BACK TO SCHOOL】满¥499赠送Paul Franke帽子一个,多买多送!'
1134 1135
                            },
                          ...
Lynnic authored
1136 1137
                      ]
                },
1138 1139 1140
            'feedbacks' : {
                 'commentsNum' : 0,
                 'consultsNum' : 1,
1141 1142
                 'commentsUrl' : '',
                 'consultsUrl' : '',
1143 1144 1145 1146
                 'comments' : [
                     {
                        'userName' : 'Lynnic',
                        'desc' : '购买了白色Mate7',
Lynnic authored
1147
                        'content' : '活动时买的',
1148 1149 1150 1151 1152 1153 1154
                        'time' : '2014-08-12 10:24:26'
                       },
                        ...
                   ],
                'consults' : [
                      {
                        'question'  : '您好 我一米七七 140斤 穿M的行吗',
Lynnic authored
1155 1156
                        'time' : '2014-08-12 10:24:26',
                        'answer' : ''
1157 1158 1159 1160 1161 1162
                        },
                        ...
                   ]
               },

            'enterStore' : {
Lynnic authored
1163
                'img' : '',
1164 1165
                'storeName' : 'Stussy',
                'url' : 'http://stussy.m.yohobuy.com/'
梁志锋 authored
1166
            },
1167 1168 1169 1170

            'goodsDescription' : {
                  'title'  : '商品描述',
                  'enTitle' : 'DESCRIPTON',
Lynnic authored
1171 1172 1173 1174 1175 1176 1177 1178
                  'detail' : {
                     'list':[
                            {
                                'param' : '编号: 51018059'
                            },
                            ...
                        ]
                   },
梁志锋 authored
1179
                   'desc': 'balabala'
1180 1181 1182 1183
            },

            'sizeInfo' : {
                  'title' : '尺码信息',
Lynnic authored
1184
                  'enTitle' : '',
1185 1186 1187

                  'detail' : {
                     'list' : [
1188
                         {
Lynnic authored
1189
                             'params' : [
1190
                              {
Lynnic authored
1191 1192
                                       'param' : '尺寸'
                               },
1193
                                   ...
Lynnic authored
1194
                             ]
1195 1196 1197 1198 1199
                          },
                         ...
                      ]
                  }
           },
1200
1201
            'measurementMethod' : {
梁志锋 authored
1202 1203 1204 1205
                  'title': '测量方式',
                  'enTitle': 'MEASUREMENT METHOD',
                  'img' : '',
             },
1206
1207 1208
            'reference' : {
                  'title' : '模特试穿',
Lynnic authored
1209
                  'enTitle'  : '',
1210 1211 1212

                  'detail' : {
                     'list' : [
Lynnic authored
1213
                         {
Lynnic authored
1214 1215 1216 1217 1218 1219
                             'params':[
                                {
                                  'param' =>'头像'
                                },
                                ...
                             ]
1220 1221 1222 1223 1224
                         },
                         ...
                      ]
                  }
                },
1225 1226 1227 1228 1229


                 'materials' : {
                                'title' : '商品材质',
                                'enTitle' : '',
1230 1231 1232 1233 1234 1235 1236
                                list:[
                                     {
                                        'img' : '',
                                        'desc' : '用各种洗涤剂',//remark
                                     }
                                     ...
                                ]
1237
                            },
Lynnic authored
1238
1239 1240 1241 1242 1243 1244
                 'washTips' : {
                        'list' : [
                           {
                              "caption":"不可干洗",
                               "img":"http://static.yohobuy.com/images/wash_5.png"
                           }
1245
                           ...
1246 1247 1248
                        ]
                 }
1249 1250 1251

            'productDetail' : {
                    'title' : '商品详情',
Lynnic authored
1252 1253
                    'enTitle' : '',
                    'desc' : 'Married to the MOB是由Leah McSweeney创立的女装品牌,一向标榜不羁、大胆的女性streetwear设计',
1254 1255 1256 1257 1258 1259
                    'list' : [
                        {
                            'img':''
                        }
                        ...
                    ]
1260 1261 1262
                },

            'cartInfo' : {
1263 1264 1265
                    'cartUrl':'购物车url',
                    'addToCartUrl':'添加购物车url',
                    'soldOut':'已售罄',
1266 1267 1268
                    'notForSale':'非卖品',

1269
                    thumbs: [
1270
                      {
1271
                        img : ''
1272 1273 1274 1275 1276 1277 1278
                      },
                      ...
                    ],
                    name: '',
                    price: '',
                    salePrice: '',
                    colors: [
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289
                        {
                            id: 1,
                            skcId:,
                            chosed: true,
                            name: '黄色',
                            colorNum:10,
                            sizeNumStr:'10/20/30'  //对应的商品尺码数目,用斜杠分割
                            
                        },
                        ...
                    ],
biao authored
1290
1291 1292 1293
                    sizes: [
                        {
                            id: 2,
1294 1295
                            skuId:,
                            goodId:,
1296 1297 1298 1299 1300 1301
                            chosed: true,
                            name: 'X',
                            sizeNum: 2,
                            colorNumStr:'10/20/30' //对应的商品颜色数目用斜杠分割
                        },
                            ...
1302
                       ]
1303 1304 1305
            },
            'introUrl' : '',
            'id' : '',
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
            'preferenceUrl' :'',
        }
### 评价列表页面
        {
            'comments':{
                'list' : [
                    {
                       'userName':'',
                       'desc':'',
                       'content':'',
                       'time':''
                    }
                    ...
                ]
            }
1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333
        }
### 咨询列表页面
        {
            'link' : '咨询表单跳转url',
            'consults':{
                'list' : [
                    {
                        'question':'',
                        'time':'',
                        'answer':''
                    }
                     ...
                ]
1334 1335
            }
        }
1336
### 支付中心
1337 1338

    {
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349
        'payAppInfo' : [
                {
                    'appIcon' : 'http://static.yohobuy.com/images/icon.png',
                    'payLink' : '/weixin/pay/',
                    'appId': 'weixin',
                    'app' : '微信支付',
                    'hint' : '需下载微信客户端',
                    'subHint' : '推荐使用'
                },{
                    'appIcon' : 'http://static.yohobuy.com/images/icon.png',
                    'payLink' : '/weixin/pay/',
1350 1351 1352
                    'appId': 'alipay',
                    'app' : '支付宝支付',
                    'hint' : '需下载支付宝客户端',
1353 1354 1355
                    'subHint' : '推荐使用'
                }
            ]
1356 1357
    }
1358
### 物流详情
1359 1360 1361 1362 1363 1364

    {
        'logisticImg' : 'http://static.yohobuy.com/images/icon.png',
        'logisticUrl' : 'http://www.shunfeng.com',
        'logisticCompany' : '顺丰',
        'logisticNumber' : '1231231231',
1365 1366 1367 1368 1369 1370 1371 1372 1373
        'logisticDetail' : [
                {
                    'status' : '南京市 派送中',
                    'date' : '2015-12-03'
                }, {
                    'status' : '南京市 准备中',
                    'date' : '2015-12-03'
                }
            ]
1374 1375
    }
1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403

### 频道选择页
    {
        'background' : 'http://img11.static.yhbimg.com/yhb-img01/2015/12/14/03/0189f7499bcb98cbeb4d18d61275606716.png?imageView/2/w/640/h/800',
        'searchUrl' : 'http://search.dev.yohobuy.com',
        'channelList' : [
                {
                    'href' : '/boys',
                    'title' : '男生',
                    'entitle' : 'BOYS',
                }, {
                    'href' : '/girls',
                    'title' : ' 女生',
                    'entitle' : 'GIRLS',
                }, {
                    'href' : '/kids',
                    'title' : '潮童',
                    'entitle' : KIDS'',
                }, {
                    'href' : '/lifestyle',
                    'title' : '创意生活',
                    'entitle' : 'LIFESTYLE',
                }
            ],
        'showYohood' : true/false,
        'yohoodHref' : '/yohood'
    }