|
@@ -10,7 +10,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <DistriTable
|
|
|
|
|
|
+ <DiscriminationDistriTable
|
|
:questions="
|
|
:questions="
|
|
props.questions.filter((q) => q.type === 'TYPE1' || !q.type)
|
|
props.questions.filter((q) => q.type === 'TYPE1' || !q.type)
|
|
"
|
|
"
|
|
@@ -25,7 +25,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <DistriTable
|
|
|
|
|
|
+ <DiscriminationDistriTable
|
|
:questions="
|
|
:questions="
|
|
props.questions.filter((q) => q.type === 'TYPE2' || !q.type)
|
|
props.questions.filter((q) => q.type === 'TYPE2' || !q.type)
|
|
"
|
|
"
|
|
@@ -40,7 +40,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <DistriTable
|
|
|
|
|
|
+ <DiscriminationDistriTable
|
|
:questions="
|
|
:questions="
|
|
props.questions.filter((q) => q.type === 'TYPE3' || !q.type)
|
|
props.questions.filter((q) => q.type === 'TYPE3' || !q.type)
|
|
"
|
|
"
|
|
@@ -55,7 +55,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <DistriTable
|
|
|
|
|
|
+ <DiscriminationDistriTable
|
|
:questions="
|
|
:questions="
|
|
props.questions.filter((q) => q.type === 'CONTENT1' || !q.type)
|
|
props.questions.filter((q) => q.type === 'CONTENT1' || !q.type)
|
|
"
|
|
"
|
|
@@ -70,7 +70,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <DistriTable
|
|
|
|
|
|
+ <DiscriminationDistriTable
|
|
:questions="
|
|
:questions="
|
|
props.questions.filter((q) => q.type === 'CONTENT2' || !q.type)
|
|
props.questions.filter((q) => q.type === 'CONTENT2' || !q.type)
|
|
"
|
|
"
|
|
@@ -85,7 +85,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <DistriTable
|
|
|
|
|
|
+ <DiscriminationDistriTable
|
|
:questions="
|
|
:questions="
|
|
props.questions.filter((q) => q.type === 'CONTENT3' || !q.type)
|
|
props.questions.filter((q) => q.type === 'CONTENT3' || !q.type)
|
|
"
|
|
"
|
|
@@ -100,7 +100,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <DistriTable
|
|
|
|
|
|
+ <DiscriminationDistriTable
|
|
:questions="
|
|
:questions="
|
|
props.questions.filter((q) => q.type === 'ABILITY1' || !q.type)
|
|
props.questions.filter((q) => q.type === 'ABILITY1' || !q.type)
|
|
"
|
|
"
|
|
@@ -115,7 +115,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <DistriTable
|
|
|
|
|
|
+ <DiscriminationDistriTable
|
|
:questions="
|
|
:questions="
|
|
props.questions.filter((q) => q.type === 'ABILITY2' || !q.type)
|
|
props.questions.filter((q) => q.type === 'ABILITY2' || !q.type)
|
|
"
|
|
"
|
|
@@ -130,7 +130,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <DistriTable
|
|
|
|
|
|
+ <DiscriminationDistriTable
|
|
:questions="
|
|
:questions="
|
|
props.questions.filter((q) => q.type === 'ABILITY3' || !q.type)
|
|
props.questions.filter((q) => q.type === 'ABILITY3' || !q.type)
|
|
"
|
|
"
|
|
@@ -164,7 +164,7 @@ import EventBus from "@/plugins/eventBus";
|
|
import { QuestionGroup } from "@/types";
|
|
import { QuestionGroup } from "@/types";
|
|
import { downloadFileURL } from "@/utils/utils";
|
|
import { downloadFileURL } from "@/utils/utils";
|
|
import { message } from "ant-design-vue";
|
|
import { message } from "ant-design-vue";
|
|
-import DistriTable from "./DistriTable.vue";
|
|
|
|
|
|
+import DiscriminationDistriTable from "./DiscriminationDistriTable.vue";
|
|
|
|
|
|
const props = defineProps<{ questions: QuestionGroup[]; projectId: number }>();
|
|
const props = defineProps<{ questions: QuestionGroup[]; projectId: number }>();
|
|
|
|
|