1234567891011121314151617181920212223242526272829303132 |
- const UIEvents = {
- Road: "road",
- Tag: "tag", //这个是标注,暂时这样
- Img: "backgroundImage",
- MeasureLine: "measure",
- };
- // export const Furnitures = {
- // TV: UIEvents.TV, //电视
- // CombinationSofa: UIEvents.CombinationSofa, //组合沙发
- // SingleSofa: UIEvents.SingleSofa, //单人沙发
- // TeaTable: UIEvents.TeaTable, //茶几
- // Carpet: UIEvents.Carpet, //地毯
- // Plant: UIEvents.Plant, //植物
- // DiningTable: UIEvents.DiningTable, //餐桌
- // DoubleBed: UIEvents.DoubleBed, //双人床
- // SingleBed: UIEvents.SingleBed, //单人床
- // Wardrobe: UIEvents.Wardrobe, //衣柜
- // Dresser: UIEvents.Dresser, //梳妆台
- // BedsideCupboard: UIEvents.BedsideCupboard, //床头柜
- // Pillow: UIEvents.Pillow, //抱枕
- // GasStove: UIEvents.GasStove, //燃气灶
- // Cupboard: UIEvents.Cupboard, //橱柜
- // Bathtub: UIEvents.Bathtub, //浴缸
- // Closestool: UIEvents.Closestool, //马桶
- // Washstand: UIEvents.Washstand, //洗漱台
- // Desk: UIEvents.Desk, //书桌
- // BalconyChair: UIEvents.BalconyChair, //阳台椅
- // Elevator: UIEvents.Elevator, //电梯
- // };
- export default UIEvents;
|