forked from wangqifan/calc
更新实例搜索功能,调整CPU核心数和内存容量的最小值为0,以支持更灵活的资源配置。
This commit is contained in:
parent
a31ae8c6dd
commit
b1d50572df
@ -15,7 +15,7 @@
|
||||
<el-form-item label="CPU 核心数">
|
||||
<el-input-number
|
||||
v-model="form.cpu_cores"
|
||||
:min="1"
|
||||
:min="0"
|
||||
:max="64"
|
||||
:step="1"
|
||||
placeholder="所需CPU核心数"
|
||||
@ -28,7 +28,7 @@
|
||||
<el-form-item label="内存(GB)">
|
||||
<el-input-number
|
||||
v-model="form.memory_gb"
|
||||
:min="0.5"
|
||||
:min="0"
|
||||
:max="256"
|
||||
:step="0.5"
|
||||
placeholder="所需内存容量(GB)"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user