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

@@ -1169,8 +1169,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>
@@ -1355,8 +1355,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>