diff --git a/src/components/drawers/CommonTest.vue b/src/components/drawers/CommonTest.vue index 8bb43ba0..9c63c00f 100644 --- a/src/components/drawers/CommonTest.vue +++ b/src/components/drawers/CommonTest.vue @@ -68,14 +68,14 @@ 选择试卷: - +
-
+
{{ formData.examinationTestName }} @@ -327,7 +327,7 @@ const props = defineProps({ const visible = ref(false) const initValue = { examinationName: '', - examinationTestId: '', + examinationPaperId: '', examinationStartTime: '', examinationEndTime: '', examinationDuration: '', @@ -349,7 +349,7 @@ const innerRule = { message: '请输入考试名称', }, ], - examinationTestId: [ + examinationPaperId: [ { required: true, message: '请输入选择试卷', @@ -440,7 +440,7 @@ function openDrawer() { } const delTag = () => { - formData.value.examinationTestId = ''; + formData.value.examinationPaperId = ''; formData.value.examinationTestName = ''; }