|
@@ -7,8 +7,8 @@
|
|
|
<a-descriptions-item label="姓名" :span="4">
|
|
|
{{ info.name }}
|
|
|
</a-descriptions-item>
|
|
|
- <a-descriptions-item label="座位号" :span="6">
|
|
|
- {{ info.seatNumber }}
|
|
|
+ <a-descriptions-item label="卷袋号" :span="6">
|
|
|
+ {{ info.packageCode }}
|
|
|
</a-descriptions-item>
|
|
|
<a-descriptions-item label="考点" :span="4">
|
|
|
{{ info.examSite }}
|
|
@@ -72,7 +72,11 @@
|
|
|
v-ele-click-outside-directive="hideEditQuestion"
|
|
|
@keyup.enter="onSaveQuesion"
|
|
|
>
|
|
|
- <a-input v-model:value="curQuestion" style="width: 64px"></a-input>
|
|
|
+ <a-input
|
|
|
+ v-model:value="curQuestion"
|
|
|
+ style="width: 64px"
|
|
|
+ @change="toUpperCase"
|
|
|
+ ></a-input>
|
|
|
<a-button class="ant-simple m-l-8px" type="link" @click="onSaveQuesion"
|
|
|
>保存(Enter)</a-button
|
|
|
>
|
|
@@ -129,6 +133,10 @@ const questionList = ref([] as string[]);
|
|
|
const curQuestion = ref("");
|
|
|
const curQuestionIndex = ref(-1);
|
|
|
|
|
|
+const toUpperCase = () => {
|
|
|
+ curQuestion.value = curQuestion.value.toUpperCase();
|
|
|
+};
|
|
|
+
|
|
|
function onExamStatusChange() {
|
|
|
emit("examStatusChange", examStatus.value);
|
|
|
}
|