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