|
@@ -94,7 +94,7 @@
|
|
|
:header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
|
|
|
:row-class-name="tableRowClassName"
|
|
|
>
|
|
|
- <el-table-column label="序号" min-width="10" align="center">
|
|
|
+ <el-table-column label="序号" min-width="5" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
{{ (page - 1) * 10 + scope.$index + 1 }}
|
|
@@ -103,7 +103,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
label="创建人"
|
|
|
- min-width="10"
|
|
|
+ min-width="5"
|
|
|
align="center"
|
|
|
v-if="tType == 0"
|
|
|
>
|
|
@@ -115,7 +115,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="项目案例" min-width="10" align="center">
|
|
|
+ <el-table-column label="项目案例" min-width="20" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
{{ scope.row.info.title ? scope.row.info.title : "暂无名称" }}
|
|
@@ -231,7 +231,7 @@
|
|
|
<div>{{ scope.row.scoreTime ? scope.row.scoreTime : "-" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="操作" min-width="20" v-if="tType == 2">
|
|
|
+ <el-table-column label="操作" min-width="20">
|
|
|
<template slot-scope="scope">
|
|
|
<div class="tableButton">
|
|
|
<div
|
|
@@ -255,6 +255,7 @@
|
|
|
</div>
|
|
|
<!-- <div @click="openScore(scope.row, 1)">立即评分</div> -->
|
|
|
<div
|
|
|
+ v-if="tType == 2"
|
|
|
@click="
|
|
|
goTo(
|
|
|
'/anliDetail?aid=' +
|
|
@@ -422,10 +423,18 @@
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
- userid: this.$route.query.userid,
|
|
|
- oid: this.$route.query.oid,
|
|
|
- org: this.$route.query.org,
|
|
|
- tType: this.$route.query.type,
|
|
|
+ userid: this.$route.query.userid
|
|
|
+ ? this.$route.query.userid
|
|
|
+ : this.$cookies.get("teacherInfo").userid,
|
|
|
+ oid: this.$route.query.oid
|
|
|
+ ? this.$route.query.oid
|
|
|
+ : this.$cookies.get("teacherInfo").oid,
|
|
|
+ org: this.$route.query.org
|
|
|
+ ? this.$route.query.org
|
|
|
+ : this.$cookies.get("teacherInfo").org,
|
|
|
+ tType: this.$route.query.type
|
|
|
+ ? this.$route.query.type
|
|
|
+ : this.$cookies.get("teacherInfo").type,
|
|
|
page: 1,
|
|
|
total: 0,
|
|
|
// anliType: "",
|
|
@@ -582,12 +591,11 @@ export default {
|
|
|
// typeE.push(this.CourseType[0][i].id);
|
|
|
typeE = [];
|
|
|
} else if (this.courseTypeId[this.CourseType[0][i].id] != "") {
|
|
|
- if (this.CourseType[0][i].name == "案例组别") {
|
|
|
+ typeE.push(this.CourseType[0][i].id);
|
|
|
+ if (this.CourseType[0][i].name == "类型") {
|
|
|
typea = this.courseTypeId[this.CourseType[0][i].id];
|
|
|
- } else if (this.CourseType[0][i].name == "年级") {
|
|
|
- typeb = this.courseTypeId[this.CourseType[0][i].id];
|
|
|
} else if (this.CourseType[0][i].name == "学科") {
|
|
|
- typec = this.courseTypeId[this.CourseType[0][i].id];
|
|
|
+ typeb = this.courseTypeId[this.CourseType[0][i].id];
|
|
|
}
|
|
|
this.courseTypeSon.push(this.courseTypeId[this.CourseType[0][i].id]);
|
|
|
}
|