|
@@ -241,7 +241,7 @@
|
|
<el-tag
|
|
<el-tag
|
|
style="margin-left:5px;margin-top:5px;"
|
|
style="margin-left:5px;margin-top:5px;"
|
|
v-for="tag in selectedExam"
|
|
v-for="tag in selectedExam"
|
|
- :closable="true"
|
|
|
|
|
|
+ :closable="false"
|
|
:close-transition="false"
|
|
:close-transition="false"
|
|
@close="examTagClose(tag)"
|
|
@close="examTagClose(tag)"
|
|
type="info"
|
|
type="info"
|
|
@@ -257,7 +257,7 @@
|
|
<el-tag
|
|
<el-tag
|
|
style="margin-left:5px;margin-top:5px;"
|
|
style="margin-left:5px;margin-top:5px;"
|
|
v-for="tag in selectedMark"
|
|
v-for="tag in selectedMark"
|
|
- :closable="true"
|
|
|
|
|
|
+ :closable="false"
|
|
:close-transition="false"
|
|
:close-transition="false"
|
|
@close="markTagClose(tag)"
|
|
@close="markTagClose(tag)"
|
|
type="info"
|
|
type="info"
|
|
@@ -363,6 +363,7 @@
|
|
@size-change="handleExamSizeChange"
|
|
@size-change="handleExamSizeChange"
|
|
:current-page="examCurrentPage"
|
|
:current-page="examCurrentPage"
|
|
:page-size="examPageSize"
|
|
:page-size="examPageSize"
|
|
|
|
+ :page-sizes="[10]"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
:total="examTotal"
|
|
:total="examTotal"
|
|
></el-pagination>
|
|
></el-pagination>
|
|
@@ -458,6 +459,7 @@
|
|
@size-change="handleMarkSizeChange"
|
|
@size-change="handleMarkSizeChange"
|
|
:current-page="markCurrentPage"
|
|
:current-page="markCurrentPage"
|
|
:page-size="markPageSize"
|
|
:page-size="markPageSize"
|
|
|
|
+ :page-sizes="[10]"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
:total="markTotal"
|
|
:total="markTotal"
|
|
></el-pagination>
|
|
></el-pagination>
|
|
@@ -744,8 +746,11 @@ export default {
|
|
this.noticeForm = {};
|
|
this.noticeForm = {};
|
|
},
|
|
},
|
|
editNoticeDialog(row) {
|
|
editNoticeDialog(row) {
|
|
|
|
+ debugger;
|
|
this.operateType = "edit";
|
|
this.operateType = "edit";
|
|
this.noticeForm = Object.assign({}, row);
|
|
this.noticeForm = Object.assign({}, row);
|
|
|
|
+ this.selectedExam = [];
|
|
|
|
+ this.selectedMark = [];
|
|
if (row.publishObject && row.publishObject.length > 0) {
|
|
if (row.publishObject && row.publishObject.length > 0) {
|
|
if (row.ruleType == "STUDENTS_OF_EXAM") {
|
|
if (row.ruleType == "STUDENTS_OF_EXAM") {
|
|
this.selectedExam = row.publishObject;
|
|
this.selectedExam = row.publishObject;
|