|
@@ -115,6 +115,7 @@ export default {
|
|
|
components: {MxQuestionReadonly, LeftTreeSide, CorrectQuestionDialog, MxCondition},
|
|
|
data() {
|
|
|
return {
|
|
|
+ extendCollection: true,
|
|
|
queryParams: null,
|
|
|
queryOutput: null,
|
|
|
requireFields: [],
|
|
@@ -189,7 +190,7 @@ export default {
|
|
|
},
|
|
|
resetQueryParams(force = false) {
|
|
|
if (!this.queryParams || force) {
|
|
|
- const model = {}
|
|
|
+ const model = { extendCollection: this.extendCollection }
|
|
|
model.exeBranch = this.queryParams?.exeBranch || consts.enum.questionBranches.chapter.value
|
|
|
this.invisibleFields = []
|
|
|
switch (model.exeBranch) {
|