This commit is contained in:
yanran200730
2023-06-09 17:44:27 +08:00
parent bcbdb81ad1
commit 38d79cc0e2

View File

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