Skip to content

Commit

Permalink
fix:修复用户最大配额只有100G的限制
Browse files Browse the repository at this point in the history
  • Loading branch information
jamebal committed Sep 30, 2021
1 parent 40f1d92 commit c0c5593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/setting/sys/cusomerManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<el-input type="password" v-model="form.checkPass"/>
</el-form-item>
<el-form-item label="配额(GB):">
<el-input-number v-model="form.quota" controls-position="right" :min="1" :max="100"></el-input-number>
<el-input-number v-model="form.quota" controls-position="right" :min="1" :max="1073741824"></el-input-number>
</el-form-item>
</el-col>
</el-row>
Expand Down

0 comments on commit c0c5593

Please sign in to comment.