custom-data.js 3 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
  "P000000000000000000000000000002": {
    name: "丸美白色之恋纯白淡黑眼霜20g",
    tag: 1,
    sence: 1,
    point: {
      left: 111,
      top: 258,
    },
    tips: {
      type: "top-right",
      point: mapFix["top-right"],
    }
  },

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

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

  // 场景2

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

  "P000000000000000000000000000007": {
    name: "丸美巧克力青春丝滑洁面啫喱120g",
    tag: 4,
    sence: 2,
    point: {
      left: 0,
      top: 0,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },
  "P000000000000000000000000000010": {
    name: "丸美巧克力青春丝滑毛孔隐形精华露35ml",
    tag: 5,
    sence: 2,
    point: {
      left: 0,
      top: 0,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },
  "P000000000000000000000000000004": {
    name: "丸美巧克力青春丝滑水190ml",
    tag: 6,
    sence: 2,
    point: {
      left: 0,
      top: 0,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },

  "P000000000000000000000000000006": {
    name: "丸美雪绒花纯净保湿咕嘟咕嘟菁华露80ml",
    tag: 8,
    sence: 3,
    point: {
      left: 0,
      top: 0,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },
  "P000000000000000000000000000005": {
    name: "丸美雪绒花纯净保湿洁面乳120g",
    tag: 9,
    sence: 3,
    point: {
      left: 0,
      top: 0,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },
  "P000000000000000000000000000009": {
    name: "丸美雪绒花纯净保湿深润霜50g",
    tag: 10,
    sence: 3,
    point: {
      left: 0,
      top: 0,
    },
    tips: {
      type: "top-left",
      point: mapFix["top-left"],
    }
  },

}

module.exports = {
  productMap: productMap
}