|
@@ -146,7 +146,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
<div class="tableButton">
|
|
|
<div @click="lookDetail(scope.row.id)">案例详情</div>
|
|
|
- <div @click="openScore(scope.row, 1)">评分修改</div>
|
|
|
+ <div @click="openScore(scope.row, 1)">立即评分</div>
|
|
|
<!-- <div @click="openScore(scope.row, 2)">推荐</div> -->
|
|
|
</div>
|
|
|
</template>
|
|
@@ -335,6 +335,7 @@ export default {
|
|
|
sumScore: 0,
|
|
|
},
|
|
|
],
|
|
|
+ reCid: "",
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
@@ -365,11 +366,11 @@ export default {
|
|
|
},
|
|
|
handleCurrentChange(val) {
|
|
|
this.page = val;
|
|
|
- this.getAnliList();
|
|
|
+ this.getAnliList(this.reCid);
|
|
|
},
|
|
|
search() {
|
|
|
this.page = 1;
|
|
|
- this.getAnliList();
|
|
|
+ this.getAnliList(this.reCid);
|
|
|
},
|
|
|
goTo(path) {
|
|
|
this.$router.push(path);
|
|
@@ -441,7 +442,7 @@ export default {
|
|
|
this.courseTypeId[this.CourseType[0][i].id] = "";
|
|
|
}
|
|
|
this.anliBox = "";
|
|
|
- this.getAnliList();
|
|
|
+ this.getAnliList(this.reCid);
|
|
|
},
|
|
|
getAnliList(rc) {
|
|
|
this.isLoading = true;
|
|
@@ -651,6 +652,7 @@ export default {
|
|
|
.then((res) => {
|
|
|
if (res.data[0].length > 0) {
|
|
|
var reCid = res.data[0][0].aBox;
|
|
|
+ this.reCid = reCid;
|
|
|
this.selectType(reCid);
|
|
|
} else {
|
|
|
this.isNoTableData = true;
|