统计-英语2区
This commit is contained in:
@@ -106,6 +106,22 @@
|
|||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column align="center" label="英语2区真实消耗" width="">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<el-button
|
||||||
|
@click="
|
||||||
|
detailsTitle = '英语区2金币明细';
|
||||||
|
edi(scope.row, 16);
|
||||||
|
"
|
||||||
|
type="text"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
{{ formattedNumber(scope.row.en2Diamond) }}
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="totalRemainDiamond"
|
prop="totalRemainDiamond"
|
||||||
align="center"
|
align="center"
|
||||||
@@ -115,6 +131,7 @@
|
|||||||
{{ formattedNumber(scope.row.totalRemainDiamond) }}
|
{{ formattedNumber(scope.row.totalRemainDiamond) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="arRemainDiamond"
|
prop="arRemainDiamond"
|
||||||
align="center"
|
align="center"
|
||||||
@@ -143,6 +160,11 @@
|
|||||||
{{ formattedNumber(scope.row.trRemainDiamond) }}
|
{{ formattedNumber(scope.row.trRemainDiamond) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column prop="en2RemainDiamond" align="center" label="英语2区库存" >
|
||||||
|
<template v-slot="scope">
|
||||||
|
{{ formattedNumber(scope.row.en2RemainDiamond) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<!-- 分页 -->
|
<!-- 分页 -->
|
||||||
@@ -300,6 +322,8 @@ export default {
|
|||||||
? res.zhDomainDetail
|
? res.zhDomainDetail
|
||||||
: type == 8
|
: type == 8
|
||||||
? res.trDomainDetail
|
? res.trDomainDetail
|
||||||
|
: type == 16
|
||||||
|
? res.en2DomainDetail
|
||||||
: `"[""]"`;
|
: `"[""]"`;
|
||||||
|
|
||||||
this.tableDataIn = JSON.parse(jsonArr);
|
this.tableDataIn = JSON.parse(jsonArr);
|
||||||
|
@@ -69,6 +69,20 @@
|
|||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column align="center" label="英语2区总新增" width="">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<el-button
|
||||||
|
@click="
|
||||||
|
detailsTitle = '英语2区总新增' + scope.row.date;
|
||||||
|
edi(scope.row.en2NewCountDetail, false);
|
||||||
|
"
|
||||||
|
type="text"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
{{ scope.row.en2NewCount }}
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="totalActiveCount"
|
prop="totalActiveCount"
|
||||||
@@ -132,6 +146,20 @@
|
|||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column align="center" label="英语2区活跃度" width="">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<el-button
|
||||||
|
@click="
|
||||||
|
detailsTitle = '英语2区活跃度' + scope.row.date;
|
||||||
|
edi(scope.row.en2ActiveCountDetail, true);
|
||||||
|
"
|
||||||
|
type="text"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
{{ scope.row.en2ActiveCount }}
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<!-- 分页 -->
|
<!-- 分页 -->
|
||||||
|
@@ -67,6 +67,20 @@
|
|||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column align="center" label="英语2区新注册(完善资料)" width="">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<el-button
|
||||||
|
@click="
|
||||||
|
detailsTitle = '英语2区注册明细' + scope.row.date;
|
||||||
|
edi(scope.row.en2CountDetail, 1);
|
||||||
|
"
|
||||||
|
type="text"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
{{ scope.row.en2Count }}
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<!-- 分页 -->
|
<!-- 分页 -->
|
||||||
|
@@ -78,6 +78,20 @@
|
|||||||
</el-button>
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column align="center" label="英语2区总活跃度" width="">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<el-button
|
||||||
|
@click="
|
||||||
|
detailsTitle = '英语2区总活跃度' + scope.row.date;
|
||||||
|
edi(scope.row.en2CountDetail, 16);
|
||||||
|
"
|
||||||
|
type="text"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
{{ scope.row.en2Count }}
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<!-- 分页 -->
|
<!-- 分页 -->
|
||||||
|
Reference in New Issue
Block a user