|
@@ -112,7 +112,7 @@
|
|
|
<div>{{ scope.row.train3 }}人</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" prop="id" label=">240分钟">
|
|
|
+ <el-table-column align="center" prop="id" label="≥240分钟">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ scope.row.train4 }}人</div>
|
|
|
</template>
|
|
@@ -350,7 +350,7 @@ export default {
|
|
|
train1: "<60分钟",
|
|
|
train2: "60-120分钟",
|
|
|
train3: "120-240分钟",
|
|
|
- train4: ">240分钟",
|
|
|
+ train4: ">=240分钟",
|
|
|
avgTrainTime: "平均时长"
|
|
|
};
|
|
|
const values = this.tableList;
|
|
@@ -374,7 +374,7 @@ export default {
|
|
|
"<60分钟",
|
|
|
"60-120分钟",
|
|
|
"120-240分钟",
|
|
|
- ">240分钟",
|
|
|
+ ">=240分钟",
|
|
|
"平均时长"
|
|
|
],
|
|
|
rows: Object.values(months)
|