diff --git a/manager/src/components/hotzone/components/Hotzone.vue b/manager/src/components/hotzone/components/Hotzone.vue index 6df13e4c..70ff9a8d 100644 --- a/manager/src/components/hotzone/components/Hotzone.vue +++ b/manager/src/components/hotzone/components/Hotzone.vue @@ -159,6 +159,8 @@ export default { return `促销活动商品:${zone.goodsName}`; case "other": return `${zone.title}`; + case "special": + return `专题:${zone.title}`; default: return "请选择跳转链接"; } diff --git a/manager/src/components/hotzone/components/Zone.vue b/manager/src/components/hotzone/components/Zone.vue index d9d2df9e..30629309 100644 --- a/manager/src/components/hotzone/components/Zone.vue +++ b/manager/src/components/hotzone/components/Zone.vue @@ -185,6 +185,12 @@ export default { settingZone(val) { this.zoneForm.type = val.___type || val.type; this.zoneForm.title = val.title; + if(val.pageType == "special"){ + this.zoneForm.id = val.id; + this.zoneForm.pageType = val.pageType + this.zoneForm.type = val.pageType + this.zoneForm.title = val.name + } switch (val.___type) { case "goods": this.zoneForm.id = val.id;