|
@@ -83,7 +83,7 @@
|
|
|
</commonFormVue>
|
|
|
<el-col :span="24">
|
|
|
<el-button
|
|
|
- @click="search"
|
|
|
+ @click="search('clickSelectBtn')"
|
|
|
size="small"
|
|
|
type="primary"
|
|
|
icon="el-icon-search"
|
|
@@ -118,7 +118,7 @@
|
|
|
<el-row>
|
|
|
<el-col v-show="currentPagePrivileges.PANEING_BATCHAUDIT">
|
|
|
<div class="block-seperator"></div>
|
|
|
- <span>批量操作:</span>
|
|
|
+ <span>操作:</span>
|
|
|
<el-dropdown class="button_left">
|
|
|
<el-button size="small" type="primary">
|
|
|
批量审核 <i class="el-icon-arrow-down el-icon--right"></i>
|
|
@@ -399,7 +399,7 @@ export default {
|
|
|
this.resetForm();
|
|
|
this.showAllCondition = false;
|
|
|
},
|
|
|
- search() {
|
|
|
+ search(type) {
|
|
|
if (!this.form.examId) {
|
|
|
this.$notify({
|
|
|
title: "警告",
|
|
@@ -409,6 +409,9 @@ export default {
|
|
|
});
|
|
|
return false;
|
|
|
}
|
|
|
+ if (type && type == "clickSelectBtn") {
|
|
|
+ this.form.pageNo = 1;
|
|
|
+ }
|
|
|
this.tableLoading = true;
|
|
|
var params = JSON.parse(JSON.stringify(this.form));
|
|
|
this.$http
|