试卷和任务增加pagesize=999

This commit is contained in:
joylink_zhaoerwei 2024-03-04 09:13:31 +08:00
parent 22457f7f49
commit c60127798c
3 changed files with 4 additions and 4 deletions

View File

@ -62,7 +62,7 @@ export default {
}, },
methods:{ methods:{
doShow(row) { doShow(row) {
queryContestSeasonPaged().then((res) => { queryContestSeasonPaged({pageSize:999}).then((res) => {
this.seasonOptions = res.data.list; this.seasonOptions = res.data.list;
}); });
this.dialogVisible = true; this.dialogVisible = true;

View File

@ -85,7 +85,7 @@ export default {
doShow(type, data, isAdd) { doShow(type, data, isAdd) {
this.isAdd = isAdd; this.isAdd = isAdd;
if (type == 'module') { if (type == 'module') {
queryContextScorePaged().then((res) => { queryContextScorePaged({pageSize:999}).then((res) => {
this.bindRuleOptions = res.data.list; this.bindRuleOptions = res.data.list;
}); });
this.editType = 'module'; this.editType = 'module';

View File

@ -51,10 +51,10 @@ export default {
}, },
methods:{ methods:{
doShow(row) { doShow(row) {
queryContextScorePaged().then((res) => { queryContextScorePaged({pageSize:999}).then((res) => {
this.bindRuleOptions = res.data.list; this.bindRuleOptions = res.data.list;
}); });
queryContestSencePaged().then((res) => { queryContestSencePaged({pageSize:999}).then((res) => {
this.bindSceneOptions = res.data.list; this.bindSceneOptions = res.data.list;
}); });
this.dialogVisible = true; this.dialogVisible = true;