|
@@ -198,7 +198,9 @@
|
|
|
placeholder="下限"
|
|
|
></el-input>
|
|
|
</el-col>
|
|
|
- <el-col :span="2" style="text-align:center;color:#c0c4cc;">——</el-col>
|
|
|
+ <el-col :span="2" style="text-align: center; color: #c0c4cc"
|
|
|
+ >——</el-col
|
|
|
+ >
|
|
|
<el-col :span="9">
|
|
|
<el-input
|
|
|
size="small"
|
|
@@ -254,7 +256,8 @@ export default {
|
|
|
startLimit: "",
|
|
|
endLimit: "",
|
|
|
ORG_FIND_ALL: false, //查询所有机构
|
|
|
- examStageId: null
|
|
|
+ examStageId: null,
|
|
|
+ creator: null
|
|
|
},
|
|
|
getExamCondition: {
|
|
|
params: {
|
|
@@ -381,6 +384,7 @@ export default {
|
|
|
},
|
|
|
asyncExportData() {
|
|
|
this.form.rootOrgId = this.user.rootOrgId;
|
|
|
+ this.form.creator = this.user.userId;
|
|
|
this.$http
|
|
|
.get(this.exportUrl, {
|
|
|
params: {
|
|
@@ -396,6 +400,7 @@ export default {
|
|
|
},
|
|
|
_exportData() {
|
|
|
this.exportLoading = true;
|
|
|
+ this.form.creator = this.user.userId;
|
|
|
this.$http
|
|
|
.get(this.exportUrl, {
|
|
|
params: {
|
|
@@ -444,7 +449,9 @@ export default {
|
|
|
return p1 - p2;
|
|
|
}
|
|
|
},
|
|
|
- created() {}
|
|
|
+ created() {
|
|
|
+ this.form.creator = this.user.userId;
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|
|
|
<style scoped src="../style/common.css"></style>
|