提交 ff67d3ef authored 作者: huaxinzhu's avatar huaxinzhu

添加商品页面,离开页面时,增加销毁定时器方法;修复商品编辑时,商品编码字段不填,回显为0的bug

上级 d72a3ea8
...@@ -179,7 +179,7 @@ ...@@ -179,7 +179,7 @@
unit: res.data.unit, // 单位 unit: res.data.unit, // 单位
goods_brand: res.data.goods_brand, // 品牌 goods_brand: res.data.goods_brand, // 品牌
web_url: res.data.web_url, // 外部链接 web_url: res.data.web_url, // 外部链接
out_goods_id: res.data.out_goods_id, // 商品编码 out_goods_id: (res.data.out_goods_id == 0) ? '' : res.data.out_goods_id , // 商品编码
imgs: res.data.imgs // 商品图片 imgs: res.data.imgs // 商品图片
} }
this.goodsinfodata.categoryStr = res.data.category_first_name + '/' + res.data.category_first_name + '/' + res.data.category_three_name; this.goodsinfodata.categoryStr = res.data.category_first_name + '/' + res.data.category_first_name + '/' + res.data.category_three_name;
...@@ -717,7 +717,11 @@ ...@@ -717,7 +717,11 @@
} }
}, timer.times) }, timer.times)
}, },
} // methods end }, // methods end
destroyed() {
clearInterval(this.TIMER);
this.TIMER = null;
} // destroyed end
} }
</script> </script>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论