This commit is contained in:
liuye
2023-06-09 17:55:17 +08:00

View File

@@ -37,7 +37,7 @@
</div>
<div class="statistics-top__item">
<span>曝光率</span>
<h2 style="color: #22AA99;">{{ info['曝光'] || 0 }}</h2>
<h2 style="color: #22AA99;">{{ ((info['曝光'] || 0) * 100).toFixed(2) + '%' || 0 }}</h2>
</div>
<div class="statistics-top__item">
<span>点击量</span>
@@ -181,6 +181,10 @@
dictName: v.mpName
}
})
if (res.data.length) {
this.search.appId = res.data[0].appId
}
}
})
},