From 6e1b0a06843124417175ce3b2e687cc96ecffa10 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 9 Jun 2023 14:29:30 +0800 Subject: [PATCH] bug --- .../oms/apps/AppSystemAccountOms/AppSystemAccountOms.vue | 1 + .../oms/apps/AppWechatStatistics/AppWechatStatistics.vue | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/project/oms/apps/AppSystemAccountOms/AppSystemAccountOms.vue b/project/oms/apps/AppSystemAccountOms/AppSystemAccountOms.vue index 09785592..e8fce718 100644 --- a/project/oms/apps/AppSystemAccountOms/AppSystemAccountOms.vue +++ b/project/oms/apps/AppSystemAccountOms/AppSystemAccountOms.vue @@ -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"} ] diff --git a/project/oms/apps/AppWechatStatistics/AppWechatStatistics.vue b/project/oms/apps/AppWechatStatistics/AppWechatStatistics.vue index 2618f1ba..ecf7a965 100644 --- a/project/oms/apps/AppWechatStatistics/AppWechatStatistics.vue +++ b/project/oms/apps/AppWechatStatistics/AppWechatStatistics.vue @@ -49,7 +49,7 @@
已结算金额(元) -

{{ info['已结算金额'] ? (info['已结算金额'] / 100).toFixed(2) : 0 }}

+

{{ info['已结算金额'] || 0 }}

@@ -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: {