bug
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
</div>
|
||||
<div class="statistics-top__item">
|
||||
<span>已结算金额(元)</span>
|
||||
<h2 style="color: #22AA99;">{{ info['已结算金额'] ? (info['已结算金额'] / 100).toFixed(2) : 0 }}</h2>
|
||||
<h2 style="color: #22AA99;">{{ info['已结算金额'] || 0 }}</h2>
|
||||
</div>
|
||||
</div>
|
||||
<ai-card title="每日收益明细">
|
||||
@@ -101,6 +101,7 @@
|
||||
wechatList: [],
|
||||
colConfigs: [
|
||||
{ prop: 'ymd', label: '日期' },
|
||||
{ prop: 'adSlot', label: '广告位类型', align: 'center', format: v => this.dict.getLabel('ad_slot', v) },
|
||||
{ prop: 'reqSuccCount', label: '拉取量', align: 'center' },
|
||||
{ prop: 'exposureCount', label: '曝光量', align: 'center' },
|
||||
{ prop: 'exposureRate', label: '曝光率', align: 'center', format: v => (v * 100).toFixed(2) + '%' },
|
||||
@@ -124,7 +125,9 @@
|
||||
|
||||
created () {
|
||||
this.getInfo()
|
||||
this.getWechatList()
|
||||
this.dict.load('ad_slot').then(() => {
|
||||
this.getWechatList()
|
||||
})
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
Reference in New Issue
Block a user