|
@@ -10,7 +10,19 @@
|
10
|
10
|
<div class="dataInfoBox" v-loading="dataLoading">
|
11
|
11
|
<div class="dataInfoItem" v-for="(item,index) in dataInfoArrs" :key="index">
|
12
|
12
|
<div class="dataItemTitle">
|
13
|
|
- <img src="@/assets/img/icon/累计消耗@2x.png" style="height:14px" class="titleIcon" alt="">
|
|
13
|
+ <img src="@/assets/img/iconNew/首日roi@2x.png" v-if="item.prop == 'first_roi'" style="height:14px" class="titleIcon" alt="">
|
|
14
|
+ <img src="@/assets/img/iconNew/当天总消耗@2x.png" v-if="item.prop == 'cost'" style="height:14px" class="titleIcon" alt="">
|
|
15
|
+ <img src="@/assets/img/iconNew/企微关注@2x.png" v-if="item.prop == 'qw_fans'" style="height:14px" class="titleIcon" alt="">
|
|
16
|
+ <img src="@/assets/img/iconNew/企微成本@2x.png" v-if="item.prop == 'qw_fans_cost'" style="height:14px" class="titleIcon" alt="">
|
|
17
|
+ <img src="@/assets/img/iconNew/当日回收@2x.png" v-if="item.prop == 'first_pay_money'" style="height:14px" class="titleIcon" alt="">
|
|
18
|
+ <img src="@/assets/img/iconNew/累积充值金额@2x.png" v-if="item.prop == 'pay_money'" style="height:14px" class="titleIcon" alt="">
|
|
19
|
+ <img src="@/assets/img/iconNew/新增用户@2x.png" v-if="item.prop == 'of_fans'" style="height:14px" class="titleIcon" alt="">
|
|
20
|
+ <img src="@/assets/img/iconNew/回本率@2x.png" v-if="item.prop == 'income_rate'" style="height:14px" class="titleIcon" alt="">
|
|
21
|
+ <img src="@/assets/img/iconNew/充值人数@2x.png" v-if="item.prop == 'first_pay_ucnt'" style="height:14px" class="titleIcon" alt="">
|
|
22
|
+ <img src="@/assets/img/iconNew/总充值人数@2x.png" v-if="item.prop == 'pay_ucnt'" style="height:14px" class="titleIcon" alt="">
|
|
23
|
+ <img src="@/assets/img/iconNew/充值次数@2x.png" v-if="item.prop == 'first_pay_cnt'" style="height:14px" class="titleIcon" alt="">
|
|
24
|
+ <img src="@/assets/img/iconNew/总充值次数@2x.png" v-if="item.prop == 'pay_cnt'" style="height:14px" class="titleIcon" alt="">
|
|
25
|
+ <img src="@/assets/img/iconNew/企微成本@2x.png" v-if="item.prop == 'pay_ucnt_cost'" style="height:14px" class="titleIcon" alt="">
|
14
|
26
|
<span>{{item.label}}</span>
|
15
|
27
|
</div>
|
16
|
28
|
<div class="dataItem-data">{{dataInfo&&(dataInfo[item.prop]||dataInfo[item.prop]==0)?$formatNum(dataInfo[item.prop]):'-'}}</div>
|