This commit is contained in:
parent
fa15ca9114
commit
12b16a874c
|
@ -438,7 +438,7 @@
|
||||||
<a-row>
|
<a-row>
|
||||||
<div style="width:100%; height:130px; background:#fff;">
|
<div style="width:100%; height:130px; background:#fff;">
|
||||||
<div style="display: flex; justify-content:space-between; padding-top:5px">
|
<div style="display: flex; justify-content:space-between; padding-top:5px">
|
||||||
<span class="tjfx-col-title"> 测验名称:{{ zyInfo.title }} </span>
|
<span class="tjfx-col-title">{{ zyInfo.title }} </span>
|
||||||
<span class="tjfx-col"> 测验时间:{{ dayjs(zyInfo.startTime).format('MM.DD HH:mm') }} ~ {{ dayjs(zyInfo.endTime).format('MM.DD HH:mm') }}</span>
|
<span class="tjfx-col"> 测验时间:{{ dayjs(zyInfo.startTime).format('MM.DD HH:mm') }} ~ {{ dayjs(zyInfo.endTime).format('MM.DD HH:mm') }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div style="display: flex; ">
|
<div style="display: flex; ">
|
||||||
|
@ -465,7 +465,7 @@
|
||||||
</template>
|
</template>
|
||||||
<template #extra v-if="zyInfo.atype == 6">
|
<template #extra v-if="zyInfo.atype == 6">
|
||||||
<span class="question-type" style="margin-left: 40px">单选题</span>
|
<span class="question-type" style="margin-left: 40px">单选题</span>
|
||||||
<span style="margin-left: 40px">题目分值: {{ item.wjScore }} 分</span>
|
<span style="margin-left: 40px">题目分值:<span class="answer-word"> {{ item.wjScore }}</span> 分</span>
|
||||||
</template>
|
</template>
|
||||||
<a-radio-group v-model:value="item.itemSelected" style="width:100%;" size="default" disabled>
|
<a-radio-group v-model:value="item.itemSelected" style="width:100%;" size="default" disabled>
|
||||||
<div style="width: 100%" v-for="(tmxx, index2) in item.wjxWjxxTmxxList" :key="index2">
|
<div style="width: 100%" v-for="(tmxx, index2) in item.wjxWjxxTmxxList" :key="index2">
|
||||||
|
@ -488,7 +488,7 @@
|
||||||
</template>
|
</template>
|
||||||
<template #extra v-if="zyInfo.atype == 6">
|
<template #extra v-if="zyInfo.atype == 6">
|
||||||
<span class="question-type" style="margin-left: 40px">多选题</span>
|
<span class="question-type" style="margin-left: 40px">多选题</span>
|
||||||
<span style="margin-left: 40px">题目分值: {{ item.wjScore }} 分</span>
|
<span style="margin-left: 40px">题目分值: <span class="answer-word">{{ item.wjScore }}</span> 分</span>
|
||||||
</template>
|
</template>
|
||||||
<a-checkbox-group v-model:value="item.itemSelected" style="width: 100%" size="default" disabled>
|
<a-checkbox-group v-model:value="item.itemSelected" style="width: 100%" size="default" disabled>
|
||||||
<a-row>
|
<a-row>
|
||||||
|
@ -516,7 +516,7 @@
|
||||||
</template>
|
</template>
|
||||||
<template #extra v-if="zyInfo.atype == 6">
|
<template #extra v-if="zyInfo.atype == 6">
|
||||||
<span class="question-type" style="margin-left: 40px">填空题</span>
|
<span class="question-type" style="margin-left: 40px">填空题</span>
|
||||||
<span style="margin-left: 40px">题目分值: {{ item.wjScore }} 分</span>
|
<span style="margin-left: 40px">题目分值:<span class="answer-word"> {{ item.wjScore }}</span> 分</span>
|
||||||
</template>
|
</template>
|
||||||
</a-card>
|
</a-card>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1791,4 +1791,8 @@ onMounted(() => {
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
border:1px solid #1ab394;
|
border:1px solid #1ab394;
|
||||||
}
|
}
|
||||||
|
.answer-word{
|
||||||
|
color: #ff8710;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue