Skip to content

Commit

Permalink
fix(画布尺寸): 修改画布最大尺寸限制
Browse files Browse the repository at this point in the history
  • Loading branch information
nihaojob committed Nov 19, 2023
1 parent 009e690 commit 94687d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/setSize.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: 秦少卫
* @Date: 2022-09-03 19:16:55
* @LastEditors: 秦少卫
* @LastEditTime: 2023-07-24 23:13:24
* @LastEditTime: 2023-11-19 14:00:40
* @Description: 尺寸设置
-->

Expand Down Expand Up @@ -40,10 +40,10 @@

<Form :label-width="40" class="form-wrap" style="justify-content: flex-start">
<FormItem :label="$t('width')" prop="name" style="margin-right: 10px">
<InputNumber :min="1" :max="2000" v-model="modalData.width"></InputNumber>
<InputNumber :min="1" :max="5000" v-model="modalData.width"></InputNumber>
</FormItem>
<FormItem :label="$t('height')" prop="name">
<InputNumber :min="1" :max="2000" v-model="modalData.height"></InputNumber>
<InputNumber :min="1" :max="5000" v-model="modalData.height"></InputNumber>
</FormItem>
</Form>
</Modal>
Expand Down

0 comments on commit 94687d3

Please sign in to comment.