...
|
...
|
@@ -265,11 +265,11 @@ export default { |
|
|
productSknList.push(ele.dataset.option);
|
|
|
|
|
|
// 前后会有一个 <br /> 把这个BR去掉
|
|
|
if (ele.nextSibling.nodeName === 'BR') {
|
|
|
if (ele.nextSibling?.nodeName === 'BR') {
|
|
|
ele.nextSibling.remove();
|
|
|
}
|
|
|
|
|
|
if (ele.previousSibling.nodeName === 'BR') {
|
|
|
if (ele.previousSibling?.nodeName === 'BR') {
|
|
|
ele.previousSibling.remove();
|
|
|
}
|
|
|
});
|
...
|
...
|
|