This commit is contained in:
yanran200730
2023-06-09 14:29:30 +08:00
parent 5b90115b80
commit 6e1b0a0684
2 changed files with 6 additions and 2 deletions

View File

@@ -110,6 +110,7 @@ export default {
{label: "姓名", slot: "name"},
{label: "手机号", prop: "phone", align: 'center'},
{label: "所属单位", prop: "unitName", align: 'center'},
{label: "公众号", prop: "wxMpNames", align: 'center'},
{label: "角色", prop: "roleName", align: 'center'},
{slot: "options"}
]

View File

@@ -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.dict.load('ad_slot').then(() => {
this.getWechatList()
})
},
methods: {