custom-data.js 3.07 KB
/**
 * tips:
 * tag:{
 *  tag-1  top-left  top:-20 left:-20
 *  tag-2  top-right  top:-20 left:+20
 *  tag-2  bottom-left  top:+20 left:-20
 *  tag-4  bottom-right  top:+20 left:+20
 * }
 */

let mapFix = {
  "top-left": {
    fixLeft: 20 - 208,
    fixTop: 20 - 334,
  },
  "top-right": {
    fixLeft: 20,
    fixTop: 20 - 334,
  },
  "bottom-left": {
    fixLeft: 20 - 208,
    fixTop: 20,
  },
  "bottom-right": {
    fixLeft: 20,
    fixTop: 20,
  },
}

let productMap = {
  // 场景1

  "P000000000000000000000000000008": {
    name: "丸美纯色之恋光透精华液30ml",
    tag: 2,
    sence: 1,
    point: {
      left: 210,
      top: 300,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },

  "P000000000000000000000000000010": {
    name: "丸美巧克力青春丝滑毛孔隐形精华露35ml",
    tag: 5,
    sence: 1,
    point: {
      left: 460,
      top: 180,
    },
    tips: {
      type: "bottom-left",
      point: mapFix["bottom-left"],
    }
  },

  "P000000000000000000000000000009": {
    name: "丸美雪绒花纯净保湿深润霜50g",
    tag: 10,
    sence: 1,
    point: {
      left: 450,
      top: 520,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },


  // 场景2
  "P000000000000000000000000000007": {
    name: "丸美巧克力青春丝滑洁面啫喱120g",
    tag: 4,
    sence: 2,
    point: {
      left: 300,
      top: 300,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },


  "P000000000000000000000000000004": {
    name: "丸美巧克力青春丝滑水190ml",
    tag: 6,
    sence: 2,
    point: {
      left: 500,
      top: 300,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },




  // 场景3
  "P000000000000000000000000000001": {
    name: "丸美弹力蛋白眼精华素10g+10g",
    tag: 3,
    sence: 3,
    point: {
      left: 210,
      top: 300,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },

  "P000000000000000000000000000002": {
    name: "丸美白色之恋纯白淡黑眼霜20g",
    tag: 1,
    sence: 3,
    point: {
      left: 380,
      top: 180,
    },
    tips: {
      type: "bottom-right",
      point: mapFix["bottom-right"],
    }
  },


  "P000000000000000000000000000003": {
    name: "丸美巧克力青春丝滑眼乳霜25g",
    tag: 7,
    sence: 3,
    point: {
      left: 540,
      top: 440,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },


  // 场景4

  "P000000000000000000000000000006": {
    name: "丸美雪绒花纯净保湿咕嘟咕嘟菁华露80ml",
    tag: 8,
    sence: 4,
    point: {
      left: 300,
      top: 300,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },


  "P000000000000000000000000000005": {
    name: "丸美雪绒花纯净保湿洁面乳120g",
    tag: 9,
    sence: 4,
    point: {
      left: 500,
      top: 300,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },

}


module.exports = {
  productMap: productMap
}