修复热区移动bug

master
paulGao 2022-09-07 15:17:34 +08:00
parent 3639804d1b
commit b99db4c673
2 changed files with 50 additions and 15 deletions

View File

@ -91,19 +91,54 @@ export default {
this.zones = this.zonesInit.concat(); this.zones = this.zonesInit.concat();
}, },
methods: { methods: {
addHotzone() { async addHotzone() {
let perInfo = { let perInfo = {
topPer: 0.15, topPer: 0.15,
leftPer: 0.4, leftPer: 0.3,
widthPer: 0.2, widthPer: 0.2,
heightPer: 0.05, heightPer: 0.2,
img: "", img: "",
link: "", link: "",
type: "", type: "",
title: "", title: "",
}; };
let images = await this.getImageSize(this.image);
if (images) {
if (images.height >= 1000) {
perInfo.heightPer = this.convertNumberToDecimal(images.height) / (images.height / 1000);
} else {
perInfo.heightPer = this.convertNumberToDecimal(images.height);
}
perInfo.widthPer = this.convertNumberToDecimal(images.width) / 2;
}
this.addItem(perInfo); this.addItem(perInfo);
}, },
convertNumberToDecimal(num) {
if (num >= 10000) {
return num / 100000;
} else if (num >= 1000) {
return num / 10000;
} else if (num >= 100) {
return num / 1000;
} else if (num >= 10) {
return num / 100;
}
},
getImageSize(url) {
return new Promise(function (resolve, reject) {
let image = new Image();
image.onload = function () {
resolve({
width: image.width,
height: image.height,
});
};
image.onerror = function () {
reject(new Error("error"));
};
image.src = url;
});
},
editZone(index) { editZone(index) {
this.$refs[`zone${index}`][0].showModalFn(index); this.$refs[`zone${index}`][0].showModalFn(index);
}, },
@ -111,8 +146,8 @@ export default {
this.$refs[`zone${index}`][0].delItem(index); this.$refs[`zone${index}`][0].delItem(index);
}, },
showZoneText(zone) { showZoneText(zone) {
switch(zone.type) { switch (zone.type) {
case 'goods': case "goods":
return `商品:${zone.goodsName}`; return `商品:${zone.goodsName}`;
case "category": case "category":
return `分类:${zone.name}`; return `分类:${zone.name}`;
@ -122,10 +157,10 @@ export default {
return `文章:${zone.title}`; return `文章:${zone.title}`;
case "marketing": case "marketing":
return `促销活动商品:${zone.goodsName}`; return `促销活动商品:${zone.goodsName}`;
case "other": case "other":
return `${zone.title}`; return `${zone.title}`;
default: default:
return '请选择跳转链接'; return "请选择跳转链接";
} }
}, },
changeInfo(res) { changeInfo(res) {

View File

@ -137,10 +137,8 @@ export default {
this.zoneWidth = this.getZoneStyle(val.widthPer); this.zoneWidth = this.getZoneStyle(val.widthPer);
this.zoneHeight = this.getZoneStyle(val.heightPer); this.zoneHeight = this.getZoneStyle(val.heightPer);
this.tooSmall = val.widthPer < 0.01 && val.heightPer < 0.01; this.tooSmall = val.widthPer < 0.01 && val.heightPer < 0.01;
this.zoneForm = { this.zoneForm.link = val.link;
...val, this.settingZone(val);
...this.zoneForm,
};
}, },
handlehideZone(isHide = true) { handlehideZone(isHide = true) {
if (this.hideZone === isHide) { if (this.hideZone === isHide) {
@ -161,7 +159,6 @@ export default {
showModalFn(index) { showModalFn(index) {
this.showModal = true; this.showModal = true;
this.currentIndex = index; this.currentIndex = index;
console.log(this.zoneForm);
}, },
// //
handleSelectImg() { handleSelectImg() {
@ -182,7 +179,11 @@ export default {
// //
selectedLink(val) { selectedLink(val) {
this.zoneForm.link = this.$options.filters.formatLinkType(val); this.zoneForm.link = this.$options.filters.formatLinkType(val);
this.zoneForm.type = val.___type; this.settingZone(val);
this.changeInfo(this.zoneForm);
},
settingZone(val) {
this.zoneForm.type = val.___type || val.type;
this.zoneForm.title = val.title; this.zoneForm.title = val.title;
switch (val.___type) { switch (val.___type) {
case "goods": case "goods":
@ -211,7 +212,6 @@ export default {
default: default:
break; break;
} }
this.changeInfo(this.zoneForm);
}, },
saveZone() {}, saveZone() {},
cancelZone() { cancelZone() {