fix:限制输入最大值设置

This commit is contained in:
wyx
2023-03-08 11:38:13 +08:00
parent bd32f48399
commit 316add9911
7 changed files with 16 additions and 15 deletions

View File

@@ -118,7 +118,7 @@
<div class="select">
<a-input-number
:min="0"
:max="300"
:max="999999"
:precision="0"
style="width: 400px; height: 40px; border-radius: 8px"
v-model:value="formData.examinationDuration"
@@ -171,7 +171,7 @@
<span>允许重复考试</span>
<a-input-number
:min="-1"
:max="300"
:max="999999"
:precision="0"
style="
width: 100px;