widget-htm说明文档

72 阅读1分钟

// 公用字段
const metaLeaf = {
    // 图片
    "image":"",
    // 背景图片
    "backgroud-image":"",
    // 标题1
    "title-h1":"",
    // 标题2
    "title-h2":"",
    // 标题3
    "title-h3":"",
    // 按钮1
    "button1":"",
    // 按钮2
    "button2":"",
    // 按钮3
    "button3":"",
    "click-event":"",
    // 链接
    "link":"",
    // 角标
    "corner":{
        // 左上角
        "left-top": {
            ...metaLeaf
        },
        // 左下角
        "left-bottom": {
            ...metaLeaf
        },
        // 右上角
        "right-top": {
            ...metaLeaf
        },
        // 右下角
        "right-bottom": {
            ...metaLeaf
        }
    }
}

// 组件数据结构
{
    // wrap-info区域
    "wrap-info":{
        // 标题
        "title-area": {
            ...metaLeaf
        },
        // 更多按钮
        "more-icon-area": {
            ...metaLeaf
        },
        // 按钮1
        "button1-area": {
            ...metaLeaf
        },
        // 按钮2
        "button2-area": {
            ...metaLeaf
        },
        // 列表总数
        "total-list-number": 12,
        // 每页数量
        "display-list-number": 4
    },
    // list-area 区域
    "list-area":{
        // 产品
        "goods":{
            "goods-list-area":[
                {
                    // 产品信息
                    "goods-info":{
                        "image":"https://cdn.shopify.com/s/228ee81eec76.jpg?v=1629443305",
                        "title-h1":"Eco-Friendly Men 100% Cotton Solid",
                        "link":"",
                        "corner":{
                            "left-top": {
                                ...metaLeaf
                            },
                            "left-bottom": {
                                ...metaLeaf
                            },
                            "right-top": {
                               ...metaLeaf
                            },
                            "right-bottom": {
                               ...metaLeaf
                            }
                        }
                    },
                    // quick-view
                    "quick-view":{
                        ...metaLeaf
                    },
                    // 加购
                    "add-to-cart":{
                        ...metaLeaf
                    },
                    // 加收藏
                    "add-to-wishlist":{
                        ...metaLeaf
                    },
                    // 加喜爱
                    "add-to-favorite":{
                        ...metaLeaf
                    },
                    // buy now
                    "buy-right-now":{
                       ...metaLeaf
                    },
                    // 当前价格
                    "price-of-now":{
                        ...metaLeaf
                    },
                    // 原价
                    "price-of-origin":{
                        ...metaLeaf
                    },
                    // poa信息
                    "short-icon": [
                        {
                            ...metaLeaf
                        }
                    ],
                    // 销量
                    "total-sold": {
                        ...metaLeaf
                    },
                    // 评分
                    "score": {
                        ...metaLeaf
                    }
                }
            ]
        }
    },
    // direction-are区域
    "direction-area":{
        // 左按钮
        "left":{
            ...metaLeaf
        },
        // 右按钮
        "right":{
            ...metaLeaf
        },
        // 上按钮
        "top": {
            ...metaLeaf
        },
        // 下按钮
        "bottom": {
           ...metaLeaf
        }
    }
}