Commit 04af5cbb authored by Your Name's avatar Your Name

总播放量不显示问题

parent 481b980f
......@@ -78,7 +78,7 @@ export default {
if (res.data.resultCode == 200) {
let resData = res.data.data;
this.list = [...this.data].map((v) => {
v['num'] = resData[v['feild']];
v['num'] = resData[v['feild']] === null ? 0 : resData[v['feild']];
return v
});
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment