|
@@ -38,24 +38,18 @@
|
|
|
:getDataWay="getDataWayA"
|
|
|
class="colorfulTable"
|
|
|
>
|
|
|
- <!-- <el-table-column
|
|
|
- label="90<总分<100"
|
|
|
- slot="levelA"
|
|
|
- align="center"
|
|
|
- >
|
|
|
- <template v-slot="scope">
|
|
|
- <div
|
|
|
- class=""
|
|
|
- style="background: red"
|
|
|
- v-if="scope.row.index === 1"
|
|
|
- >
|
|
|
- {{ scope.row.levelA }}
|
|
|
- </div>
|
|
|
- <div v-else style="background: blue">
|
|
|
- {{ scope.row.levelA }}
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column> -->
|
|
|
+ </tableList>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="tableBox tableBoxC">
|
|
|
+ <div class="title">算法测试评分细则</div>
|
|
|
+ <tableList :columns="columnsB" :getDataWay="getDataWayB">
|
|
|
+ </tableList>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="tableBox tableBoxD">
|
|
|
+ <div class="title">详情得分情况</div>
|
|
|
+ <tableList :columns="columnsC" :getDataWay="getDataWayC">
|
|
|
</tableList>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -156,6 +150,22 @@ export default {
|
|
|
],
|
|
|
param: {},
|
|
|
},
|
|
|
+ columnsB: [],
|
|
|
+ getDataWayB: {
|
|
|
+ //加载表格数据
|
|
|
+ dataType: "data",
|
|
|
+ type: "post",
|
|
|
+ data: [],
|
|
|
+ param: {},
|
|
|
+ },
|
|
|
+ columnsC: [],
|
|
|
+ getDataWayC: {
|
|
|
+ //加载表格数据
|
|
|
+ dataType: "data",
|
|
|
+ type: "post",
|
|
|
+ data: [],
|
|
|
+ param: {},
|
|
|
+ },
|
|
|
info: {},
|
|
|
};
|
|
|
},
|
|
@@ -179,6 +189,10 @@ export default {
|
|
|
if (res.code == 200 && res.info) {
|
|
|
this.info = res.info;
|
|
|
this.getDataWay.data = res.info.algorithmScoreList;
|
|
|
+ this.columnsB = res.info.subListScoreLiTitle;
|
|
|
+ this.getDataWayB.data = res.info.subListScoreLi;
|
|
|
+ this.columnsC = res.info.sceneScoreLiTitle;
|
|
|
+ this.getDataWayC.data = res.info.sceneScoreLi;
|
|
|
} else {
|
|
|
this.$message.error(res.message || "获取信息失败");
|
|
|
}
|
|
@@ -257,6 +271,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.tableBox {
|
|
|
+ padding: 60px 0;
|
|
|
.title {
|
|
|
padding-bottom: 20px;
|
|
|
font-size: 18px;
|
|
@@ -265,8 +280,10 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- .tableBoxA {
|
|
|
- padding: 60px 0 30px;
|
|
|
+ .tableBoxB,
|
|
|
+ .tableBoxC,
|
|
|
+ .tableBoxD {
|
|
|
+ padding: 0 0 60px;
|
|
|
}
|
|
|
|
|
|
.colorfulTable {
|