Authored by TaoHuang

fix

... ... @@ -36,7 +36,6 @@ export default {
}
},
render(h) {
console.log(this.template);
if (this.template) {
const parent = this.parent || this.$parent;
const {
... ...
... ... @@ -263,6 +263,15 @@ export default {
richText.querySelectorAll('.yhproduct').forEach(ele => {
productSknList.push(ele.dataset.option);
// 前后会有一个 <br /> 把这个BR去掉
if (ele.nextSibling.nodeName === 'BR') {
ele.nextSibling.remove();
}
if (ele.previousSibling.nodeName === 'BR') {
ele.previousSibling.remove();
}
});
this.fetchProductBySknList({ productSknList, articleId: vm.data.articleId });
... ...
{
"name": "yoho-community-web",
"version": "6.9.11-beta31",
"version": "6.9.11-beta32",
"private": true,
"description": "A New Yohobuy Project With Express",
"repository": {
... ...