|
@@ -96,7 +96,12 @@
|
|
|
<div>{{ scope.row.trainRate }}%</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" prop="id" label="<60分钟">
|
|
|
+ <el-table-column align="center" prop="id" label="≤10分钟">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>{{ scope.row.train0 }}人</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" prop="id" label="10~60分钟">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ scope.row.train1 }}人</div>
|
|
|
</template></el-table-column
|
|
@@ -361,10 +366,11 @@ export default {
|
|
|
chartData() {
|
|
|
const temp = {
|
|
|
normalNum: "会员人数",
|
|
|
- train1: "<60分钟",
|
|
|
+ train0: "≤10分钟",
|
|
|
+ train1: "10~60分钟",
|
|
|
train2: "60-120分钟",
|
|
|
train3: "120-240分钟",
|
|
|
- train4: ">=240分钟",
|
|
|
+ train4: "≥240分钟",
|
|
|
avgTrainTime: "平均时长"
|
|
|
};
|
|
|
const values = this.tableList;
|
|
@@ -385,7 +391,8 @@ export default {
|
|
|
columns: [
|
|
|
"分部",
|
|
|
"会员人数",
|
|
|
- "<60分钟",
|
|
|
+ "≤10分钟",
|
|
|
+ "10~60分钟",
|
|
|
"60-120分钟",
|
|
|
"120-240分钟",
|
|
|
">=240分钟",
|