fix: 🐛 修改 商家端楼层装中 intro 和 mobileIntro 可能存在转义符导致json出错问题

This commit is contained in:
学习很差啦
2022-11-23 14:44:46 +08:00
parent 69c2c4c5c2
commit 4d347df505

View File

@@ -215,6 +215,10 @@ export default {
},
// 回调选择的链接
selectedLink(val) {
// 需删除图片中 intro 和 mobileIntro 可能存在转义符导致json出错问题
delete val.selected;
delete val.intro;
delete val.mobileIntro;
this.selectedLinks.url = val;
},
// 回调的商品信息
@@ -232,6 +236,7 @@ export default {
...item,
};
});
this.res.options.list[0].listWay.push(...data);
this.linkType = "";
},