fix:默认层数从1开始
This commit is contained in:
parent
484b692ec8
commit
f80e3f730c
|
|
@ -88,7 +88,7 @@
|
|||
<el-form-item label="开始层数">
|
||||
<el-input-number
|
||||
v-model="cell_start"
|
||||
:min="0"
|
||||
:min="1"
|
||||
class="width-100"
|
||||
@change="cellStartChanges"
|
||||
controls-position="right"
|
||||
|
|
@ -119,7 +119,7 @@
|
|||
<el-input-number
|
||||
style="width:90%"
|
||||
v-model="item.floor"
|
||||
:min="0"
|
||||
:min="1"
|
||||
class="width-100"
|
||||
placeholder="层数"
|
||||
controls-position="right"
|
||||
|
|
@ -227,7 +227,7 @@ export default {
|
|||
},
|
||||
cells:0,//层数
|
||||
count_cell:0,//每层数量
|
||||
cell_start:0,//开始层数
|
||||
cell_start:1,//开始层数
|
||||
codeBatch:"",
|
||||
options: [],
|
||||
cellsList:[],
|
||||
|
|
|
|||
Loading…
Reference in New Issue