fix: UE批量数最大值1000000

This commit is contained in:
TsMask
2024-01-22 19:56:26 +08:00
parent 4ac3e93167
commit 076d3a75a4
3 changed files with 12 additions and 12 deletions

View File

@@ -1749,8 +1749,8 @@ onMounted(() => {
v-model:value="modalState.BatchForm.num"
style="width: 100%"
:min="1"
:max="100"
placeholder="<=100"
:max="1000000"
placeholder="<=1000000"
></a-input-number>
</a-form-item>
</a-col>
@@ -2230,8 +2230,8 @@ onMounted(() => {
v-model:value="modalState.BatchDelForm.num"
style="width: 100%"
:min="1"
:max="100"
placeholder="<=100"
:max="1000000"
placeholder="<=1000000"
></a-input-number>
</a-form-item>
</a-col>