|
@@ -1,12 +1,13 @@
|
|
|
<template>
|
|
|
<div
|
|
|
v-if="store.currentTask"
|
|
|
- :style="{ display: store.markBoardCollapse ? 'none' : 'block' }"
|
|
|
+ :style="{ display: store.MarkBoardTrackCollapse ? 'none' : 'block' }"
|
|
|
style="
|
|
|
max-width: 250px;
|
|
|
min-width: 250px;
|
|
|
border: 1px solid grey;
|
|
|
padding-left: 6px;
|
|
|
+ padding-left: 6px;
|
|
|
"
|
|
|
>
|
|
|
<div>
|
|
@@ -20,7 +21,7 @@
|
|
|
|
|
|
<div
|
|
|
v-if="store.currentTask && store.currentTask.questionList"
|
|
|
- class="flex gap-1 flex-wrap"
|
|
|
+ class="flex gap-1 flex-wrap justify-between"
|
|
|
>
|
|
|
<template
|
|
|
v-for="(question, index) in store.currentTask?.questionList"
|
|
@@ -65,7 +66,7 @@ import { computed, defineComponent, onMounted, onUnmounted, watch } from "vue";
|
|
|
import { findCurrentTaskMarkResult, store } from "./store";
|
|
|
|
|
|
export default defineComponent({
|
|
|
- name: "MarkBoard",
|
|
|
+ name: "MarkBoardTrack",
|
|
|
emits: ["submit"],
|
|
|
setup(props, { emit }) {
|
|
|
const markResult = findCurrentTaskMarkResult();
|