|
@@ -135,7 +135,7 @@
|
|
|
:append-to-body="true"
|
|
|
width="25%"
|
|
|
height="80%"
|
|
|
- :before-close="handleClose"
|
|
|
+ :before-close="handleClose1"
|
|
|
class="dialog_diy1 customWidth"
|
|
|
>
|
|
|
<div class="people">
|
|
@@ -434,12 +434,13 @@ export default {
|
|
|
anliScoreList: [],
|
|
|
dialogVisibleAllScore: false,
|
|
|
allScoreSum: 0,
|
|
|
+ reCid: [],
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
|
handleCurrentChange(val) {
|
|
|
this.page = val;
|
|
|
- this.getAnliList();
|
|
|
+ this.getAnliList(this.reCid);
|
|
|
},
|
|
|
search() {
|
|
|
this.page = 1;
|
|
@@ -531,6 +532,9 @@ export default {
|
|
|
},
|
|
|
handleClose(done) {
|
|
|
done();
|
|
|
+ },
|
|
|
+ handleClose1(done) {
|
|
|
+
|
|
|
},
|
|
|
clear() {
|
|
|
for (var i = 0; i < this.CourseType[0].length; i++) {
|
|
@@ -664,6 +668,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;
|
|
@@ -1094,6 +1099,9 @@ export default {
|
|
|
.customWidth >>> .el-dialog {
|
|
|
min-width: 500px !important;
|
|
|
}
|
|
|
+.customWidth >>> .el-dialog__headerbtn {
|
|
|
+ display: none !important;
|
|
|
+}
|
|
|
.customWidth1 >>> .el-dialog {
|
|
|
min-width: 800px !important;
|
|
|
}
|